Пример #1
0
 /// <summary>
 /// Construct a basic network with the specified logic.
 /// </summary>
 /// <param name="logic">The logic to use with this network.</param>
 public BasicNetwork(INeuralLogic logic)
 {
     this.structure = new NeuralStructure(this);
     this.logic     = logic;
 }
Пример #2
0
 /// <summary>
 /// Construct an empty neural network.
 /// </summary>
 ///
 public BasicNetwork()
 {
     _structure = new NeuralStructure(this);
 }
Пример #3
0
 /// <summary>
 /// Construct an empty neural network.
 /// </summary>
 public BasicNetwork()
 {
     this.structure = new NeuralStructure(this);
     this.logic     = new SimpleRecurrentLogic();
 }