Package | Description |
---|---|
at.tuwien.ifs.somtoolbox.input |
Provides classes responsible for reading trained network models from file or some other location.
|
at.tuwien.ifs.somtoolbox.layers |
Provides the basic classes constituting SOM-based neural networks.
|
at.tuwien.ifs.somtoolbox.output |
Provides classes to write trained SOMs to files for future re-use.
|
at.tuwien.ifs.somtoolbox.properties |
Provides classes that handle reading network-specific properties for the training and properties specific to the state of applications.
|
Modifier and Type | Field and Description |
---|---|
protected Layer.GridLayout |
AbstractSOMInputReader.gridLayout |
Modifier and Type | Method and Description |
---|---|
Layer.GridLayout |
SOMInputReader.getGridLayout() |
Layer.GridLayout |
AbstractSOMInputReader.getGridLayout() |
Modifier and Type | Field and Description |
---|---|
protected Layer.GridLayout |
GrowingLayer.gridLayout |
Modifier and Type | Method and Description |
---|---|
Layer.GridLayout |
Layer.getGridLayout() |
Layer.GridLayout |
GrowingLayer.getGridLayout() |
Layer.GridLayout |
GrowingCellLayer.getGridLayout() |
static Layer.GridLayout |
Layer.GridLayout.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Layer.GridLayout[] |
Layer.GridLayout.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
GrowingLayer.setGridLayout(Layer.GridLayout gridLayout) |
Modifier and Type | Method and Description |
---|---|
private static BufferedWriter |
SOMLibMapOutputter.openAndWriteUnitFileHeader(String fDir,
String fName,
String id,
int xSize,
int ySize,
int zSize,
Layer.GridLayout gridLayout,
Layer.GridTopology gridTopology,
boolean gzipped) |
static void |
SOMLibMapOutputter.writeUnitDescriptionFile(int xdim,
int ydim,
Layer.GridLayout gridLayout,
Layer.GridTopology gridTopology,
String fDir,
String fName,
boolean gzipped)
Method to write a unit description file of an empty map.
|
static void |
SOMLibMapOutputter.writeUnitDescriptionFile(String[][][] labels,
Layer.GridLayout gridLayout,
Layer.GridTopology gridTopology,
String fDir,
String fName,
boolean gzipped) |
static void |
SOMLibMapOutputter.writeWeightVectorFile(double[][][][] weights,
Layer.GridLayout gridLayout,
Layer.GridTopology gridTopology,
String fDir,
String fName,
boolean gzipped)
Writes the Weight Vector File from given weight values, used e.g.
|
protected static BufferedWriter |
SOMLibMapOutputter.writeWeightVectorFileHeader(String fDir,
String fName,
boolean gzipped,
int xDim,
int yDim,
int zDim,
Layer.GridLayout gridLayout,
Layer.GridTopology gridTopology,
int vecDim,
String idString,
String... extraHeaders)
Writes the header part of the weight vector file.
|
Modifier and Type | Field and Description |
---|---|
private Layer.GridLayout |
SOMProperties.gridLayout |
Modifier and Type | Method and Description |
---|---|
Layer.GridLayout |
SOMProperties.getGridLayout() |