Package | Description |
---|---|
org.tribuo.classification.sgd.crf |
Provides an implementation of a linear chain CRF trained using Stochastic Gradient Descent.
|
org.tribuo.math |
Contains the implementation of Tribuo's math library, it's gradient descent optimisers, kernels and a set of
math related utils.
|
org.tribuo.math.la |
Provides a linear algebra system used for numerical operations in Tribuo.
|
org.tribuo.math.optimisers.util |
Provides some utility tensors for use in gradient optimisers.
|
org.tribuo.regression.sgd.linear |
Provides an implementation of linear regression using Stochastic Gradient Descent.
|
Modifier and Type | Field and Description |
---|---|
DenseMatrix |
ChainHelper.ChainCliqueValues.transitionValues |
Constructor and Description |
---|
ChainCliqueValues(DenseVector[] localValues,
DenseMatrix transitionValues) |
Modifier and Type | Method and Description |
---|---|
DenseMatrix |
LinearParameters.getWeightMatrix()
Returns the weight matrix.
|
Modifier and Type | Method and Description |
---|---|
DenseMatrix |
DenseMatrix.copy()
Copies the matrix.
|
static DenseMatrix |
DenseMatrix.createDenseMatrix(double[][] values)
Defensively copies the values before construction.
|
DenseMatrix |
DenseSparseMatrix.matrixMultiply(Matrix other) |
DenseMatrix |
DenseMatrix.matrixMultiply(Matrix other) |
DenseMatrix |
DenseSparseMatrix.matrixMultiply(Matrix other,
boolean transposeThis,
boolean transposeOther) |
DenseMatrix |
DenseMatrix.matrixMultiply(Matrix other,
boolean transposeThis,
boolean transposeOther) |
DenseMatrix |
DenseMatrix.transpose() |
Constructor and Description |
---|
DenseMatrix(DenseMatrix other) |
Modifier and Type | Class and Description |
---|---|
class |
ShrinkingMatrix
A subclass of
DenseMatrix which shrinks the value every time a new value is added. |
Modifier and Type | Method and Description |
---|---|
DenseMatrix |
ShrinkingMatrix.convertToDense() |
Constructor and Description |
---|
ShrinkingMatrix(DenseMatrix v,
double baseRate,
boolean scaleShrinking) |
ShrinkingMatrix(DenseMatrix v,
double baseRate,
double lambda) |
Modifier and Type | Method and Description |
---|---|
DenseMatrix |
LinearSGDModel.getWeightsCopy() |
Copyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.