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.
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.
Provides an implementation of linear regression using Stochastic Gradient Descent.
-
Uses of DenseMatrix in org.tribuo.classification.sgd.crf
Fields in org.tribuo.classification.sgd.crf declared as DenseMatrixModifier and TypeFieldDescriptionfinal DenseMatrixChainHelper.ChainCliqueValues.transitionValuesConstructors in org.tribuo.classification.sgd.crf with parameters of type DenseMatrixModifierConstructorDescriptionChainCliqueValues(DenseVector[] localValues, DenseMatrix transitionValues) -
Uses of DenseMatrix in org.tribuo.math
Methods in org.tribuo.math that return DenseMatrix -
Uses of DenseMatrix in org.tribuo.math.la
Methods in org.tribuo.math.la that return DenseMatrixModifier and TypeMethodDescriptionDenseMatrix.copy()Copies the matrix.static DenseMatrixDenseMatrix.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()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 TypeClassDescriptionclassA subclass ofDenseMatrixwhich 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) -
Uses of DenseMatrix in org.tribuo.regression.sgd.linear
Methods in org.tribuo.regression.sgd.linear that return DenseMatrix