Esempio n. 1
0
 public void Init()
 {
     SetInput?.Invoke((int)numericUpDown_input.Value);
     SetTarget?.Invoke((int)numericUpDown_target.Value);
     SetLearningRate?.Invoke((double)numericUpDown_learningRate.Value);
     SetEpochs?.Invoke((int)numericUpDownEpochs.Value);
 }
Esempio n. 2
0
 public Server(Set max, Set min, Set setrefilled, SetInput SetNew, int port) : base(port)
 {
     SetHigh         = new Set(max);
     SetLow          = new Set(min);
     SetRefilled     = new Set(setrefilled);
     SetNewWaterFreq = new SetInput(SetNew);
 }