Uses of Class
at.tuwien.ifs.somtoolbox.layers.Layer.GridTopology

Packages that use Layer.GridTopology
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. 
 

Uses of Layer.GridTopology in at.tuwien.ifs.somtoolbox.input
 

Fields in at.tuwien.ifs.somtoolbox.input declared as Layer.GridTopology
protected  Layer.GridTopology AbstractSOMInputReader.gridTopology
           
 

Methods in at.tuwien.ifs.somtoolbox.input that return Layer.GridTopology
 Layer.GridTopology AbstractSOMInputReader.getGridTopology()
           
 Layer.GridTopology SOMInputReader.getGridTopology()
           
 

Uses of Layer.GridTopology in at.tuwien.ifs.somtoolbox.layers
 

Fields in at.tuwien.ifs.somtoolbox.layers declared as Layer.GridTopology
protected  Layer.GridTopology GrowingLayer.gridTopology
           
 

Methods in at.tuwien.ifs.somtoolbox.layers that return Layer.GridTopology
 Layer.GridTopology Layer.getGridTopology()
           
 Layer.GridTopology GrowingCellLayer.getGridTopology()
           
 Layer.GridTopology GrowingLayer.getGridTopology()
           
static Layer.GridTopology Layer.GridTopology.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Layer.GridTopology[] Layer.GridTopology.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in at.tuwien.ifs.somtoolbox.layers with parameters of type Layer.GridTopology
 void GrowingLayer.setGridTopology(Layer.GridTopology gridTopology)
           
 

Uses of Layer.GridTopology in at.tuwien.ifs.somtoolbox.output
 

Methods in at.tuwien.ifs.somtoolbox.output with parameters of type Layer.GridTopology
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.
 

Uses of Layer.GridTopology in at.tuwien.ifs.somtoolbox.properties
 

Fields in at.tuwien.ifs.somtoolbox.properties declared as Layer.GridTopology
private  Layer.GridTopology SOMProperties.gridTopology
           
 

Methods in at.tuwien.ifs.somtoolbox.properties that return Layer.GridTopology
 Layer.GridTopology SOMProperties.getGridTopology()