Inheritance: IDisposable
Exemplo n.º 1
0
        /* Constructor: TrainingData

            Copy constructor constructs a copy of the training data.
            Corresponds to the C API <fann_duplicate_train_data at http://libfann.github.io/fann/docs/files/fann_train-h.html#fann_duplicate_train_data> function.
        */
        public TrainingData(TrainingData data)
        {
            InternalData = new FannWrapperDouble.training_data(data.InternalData);
        }
Exemplo n.º 2
0
 /* Constructor: TrainingData
  *
  *  Copy constructor constructs a copy of the training data.
  *  Corresponds to the C API <fann_duplicate_train_data at http://libfann.github.io/fann/docs/files/fann_train-h.html#fann_duplicate_train_data> function.
  */
 public TrainingData(TrainingData data)
 {
     InternalData = new FannWrapperDouble.training_data(data.InternalData);
 }
Exemplo n.º 3
0
        /* Method: MergeTrainData

           Merges the data into the data contained in the <TrainingData>.

           This function appears in FANN >= 1.1.0.
         */
        public void MergeTrainData(TrainingData data)
        {
            InternalData.merge_train_data(data.InternalData);
        }
Exemplo n.º 4
0
 /* Method: MergeTrainData
  *
  * Merges the data into the data contained in the <TrainingData>.
  *
  * This function appears in FANN >= 1.1.0.
  */
 public void MergeTrainData(TrainingData data)
 {
     InternalData.merge_train_data(data.InternalData);
 }