Package | Description |
---|---|
org.neuroph.core.data |
Provides data set related classes and manipulation methods.
|
org.neuroph.core.learning |
Provides base classes for neural network learning algorithms.
|
Modifier and Type | Method and Description |
---|---|
DataSetRow |
DataSet.get(int index) |
DataSetRow |
DataSet.getRowAt(int idx)
Returns training row at specified index position
|
DataSetRow |
BufferedDataSet.next()
Returns next data set row.
|
DataSetRow |
DataSet.remove(int index) |
Modifier and Type | Method and Description |
---|---|
List<DataSetRow> |
DataSet.getItems() |
List<DataSetRow> |
DataSet.getRows()
Returns elements of this training set
|
Iterator<DataSetRow> |
DataSet.iterator()
Returns Iterator for iterating training elements collection
|
Iterator<DataSetRow> |
BufferedDataSet.iterator()
Returns iterator for buffered data set
|
Modifier and Type | Method and Description |
---|---|
DataSet |
DataSet.add(DataSetRow row)
Adds new row row to this data set
|
void |
DataSet.add(int index,
DataSetRow row) |
Modifier and Type | Method and Description |
---|---|
protected void |
UnsupervisedLearning.learnPattern(DataSetRow trainingElement)
Trains network with the pattern from the specified training element
|
protected void |
SupervisedLearning.learnPattern(DataSetRow trainingElement)
Trains network with the input and desired output pattern from the specified training element
|
Copyright © 2019 Neuroph Project. All rights reserved.