public RCRunnableConfiguration(double[][] w, double[][] B, double[][] I, double[] H0, Data[] dataSet,
     int hidenNodesNumber, ERCActivationFunctionType activationFunctionType)
     : base(hidenNodesNumber, activationFunctionType)
 {
     this.w = w;
     this.B = B;
     this.I = I;
     this.H0 = H0;
     DataSet = dataSet;
 }
Example #2
0
 public RCConfiguration(DataProvider prov, int seed, int hidenNodesNumber, double interconnectivity, int warmUpCicles, 
     double spectralRadious, ERCActivationFunctionType activationFunctionType)
     : base(hidenNodesNumber, activationFunctionType)
 {
     Prov = prov;
     Interconnectivity = interconnectivity;
     WarmUpCicles = warmUpCicles;
     Seed = seed;
     SpectralRadious = spectralRadious;
 }
Example #3
0
 public Configuration(int hiddenNodesNumber, ERCActivationFunctionType activationFunctionType)
 {
     HidenNodesNumber = hiddenNodesNumber;
     ActivationFunctionType = activationFunctionType;
 }