Uses of Class
org.tribuo.math.la.DenseMatrix
Packages that use DenseMatrix
Package
Description
Provides an implementation of a linear chain CRF trained using Stochastic Gradient Descent.
Provides the base classes for models trained with stochastic gradient descent.
Contains the implementation of Tribuo's math library, it's gradient descent optimisers, kernels and a set of
math related utils.
Provides a linear algebra system used for numerical operations in Tribuo.
Provides some utility tensors for use in gradient optimisers.
-
Uses of DenseMatrix in org.tribuo.classification.sgd.crf
Fields in org.tribuo.classification.sgd.crf declared as DenseMatrixModifier and TypeFieldDescriptionfinal DenseMatrix
ChainHelper.ChainCliqueValues.transitionValues
-
Uses of DenseMatrix in org.tribuo.common.sgd
Methods in org.tribuo.common.sgd that return DenseMatrixModifier and TypeMethodDescriptionAbstractLinearSGDModel.getWeightsCopy()
Returns a copy of the weights. -
Uses of DenseMatrix in org.tribuo.math
Methods in org.tribuo.math that return DenseMatrixConstructors in org.tribuo.math with parameters of type DenseMatrixModifierConstructorDescriptionLinearParameters
(DenseMatrix weightMatrix) Constructs a LinearParameters wrapped around a weight matrix. -
Uses of DenseMatrix in org.tribuo.math.la
Methods in org.tribuo.math.la that return DenseMatrixModifier and TypeMethodDescriptionDenseMatrix.copy()
Copies the matrix.static DenseMatrix
DenseMatrix.createDenseMatrix
(double[][] values) Defensively copies the values before construction.DenseMatrix.matrixMultiply
(Matrix other) DenseMatrix.matrixMultiply
(Matrix other, boolean transposeThis, boolean transposeOther) DenseSparseMatrix.matrixMultiply
(Matrix other) DenseSparseMatrix.matrixMultiply
(Matrix other, boolean transposeThis, boolean transposeOther) DenseMatrix.transpose()
Returns a transposed copy of this matrix.Constructors in org.tribuo.math.la with parameters of type DenseMatrix -
Uses of DenseMatrix in org.tribuo.math.optimisers.util
Subclasses of DenseMatrix in org.tribuo.math.optimisers.utilModifier and TypeClassDescriptionclass
A subclass ofDenseMatrix
which shrinks the value every time a new value is added.Methods in org.tribuo.math.optimisers.util that return DenseMatrixConstructors in org.tribuo.math.optimisers.util with parameters of type DenseMatrixModifierConstructorDescriptionShrinkingMatrix
(DenseMatrix v, double baseRate, boolean scaleShrinking) ShrinkingMatrix
(DenseMatrix v, double baseRate, double lambda)