Example #1
0
 public NeuralNetConfig(NeuralNetConfig copy)
 {
     HiddenLayerCount                   = copy.HiddenLayerCount;
     HiddenLayerNeuronCount             = copy.HiddenLayerNeuronCount;
     InputLabels                        = copy.InputLabels.ToList().ToArray();
     OutputLabels                       = copy.OutputLabels.ToList().ToArray();
     ActivationFunction                 = copy.ActivationFunction;
     PreActivationNormalizationFunction = copy.PreActivationNormalizationFunction;
 }
Example #2
0
 public static NeuralNet From(NeuralNetConfig config)
 {
     return(new NeuralNet(config));
 }
Example #3
0
 public NeuralNet(NeuralNetConfig config)
 {
     _config = new NeuralNetConfig(config);
 }