ValueMatrix class

Constructors

ValueMatrix(List<List<Value>> _data)
ValueMatrix.zeros(int rows, int cols)
factory

Properties

cols int
final
hashCode int
The hash code for this object.
no setterinherited
rows int
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

at(int row, int col) Value
flatten() List<Value>
multiply(ValueMatrix other) ValueMatrix
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
relu() ValueMatrix
sigmoid() ValueMatrix
tanh() ValueMatrix
toString() String
A string representation of this object.
override
transpose() ValueMatrix

Operators

operator *(dynamic other) ValueMatrix
operator +(dynamic other) ValueMatrix
operator ==(Object other) bool
The equality operator.
inherited