Modifier and Type | Method and Description |
---|---|
ValueConf |
SparseMatrixWriter.getValueConf() |
ValueConf |
SparseMatrixRow.getValueConf() |
ValueConf |
SparseMatrix.getValueConf() |
ValueConf |
DenseMatrixWriter.getValueConf() |
ValueConf |
DenseMatrixRow.getValueConf() |
ValueConf |
DenseMatrix.getValueConf() |
Modifier and Type | Method and Description |
---|---|
boolean |
ValueConf.almostEquals(ValueConf vconf) |
static void |
DenseMatrixWriter.write(File file,
Iterator<DenseMatrixRow> rows,
ValueConf vconf) |
static void |
SparseMatrixWriter.write(File file,
Iterator<SparseMatrixRow> rows,
ValueConf vconf) |
Constructor and Description |
---|
DenseMatrixRow(ValueConf vconf,
int[] colIds,
ByteBuffer buffer)
Wrap an existing byte buffer that contains a row.
|
DenseMatrixRow(ValueConf vconf,
int rowIndex,
int[] colIds,
float[] colVals) |
DenseMatrixRow(ValueConf vconf,
int rowIndex,
LinkedHashMap<Integer,Float> row) |
DenseMatrixWriter(File path,
ValueConf conf) |
SparseMatrixRow(ValueConf vconf,
ByteBuffer buffer)
Wrap an existing byte buffer that contains a row.
|
SparseMatrixRow(ValueConf vconf,
int rowIndex,
int[] colIds,
float[] colVals) |
SparseMatrixRow(ValueConf vconf,
int rowIndex,
int[] colIds,
short[] colVals) |
SparseMatrixRow(ValueConf vconf,
int rowIndex,
LinkedHashMap<Integer,Float> row) |
SparseMatrixRow(ValueConf vconf,
int rowIndex,
gnu.trove.map.TIntFloatMap row) |
SparseMatrixWriter(File path,
ValueConf conf) |
Copyright © 2015. All rights reserved.