tanh method

ValueMatrix tanh()

Implementation

ValueMatrix tanh() {
  return ValueMatrix(
      _data.map((row) => row.map((v) => v.tanh()).toList()).toList());
}