Exemple #1
0
 public DataForNeuralNetworkContext(IDataCollector collector,
                                    IfDataNotExist ifDataNotExist, string extrapolatorName)
 {
     IfDataNotExist = ifDataNotExist;
     Collector      = collector;
     Extrapolator   = new NeuralExtrapolation(extrapolatorName);
 }
Exemple #2
0
 public DataForNeuralNetworkContext(IDataCollector collector,
                                    IfDataNotExist ifDataNotExist, Func <Entity, double, double> converter)
 {
     IfDataNotExist = ifDataNotExist;
     Collector      = collector;
     Converter      = converter;
 }
Exemple #3
0
 public DataForNeuralNetworkContext(IDataCollector collector,
                                    IfDataNotExist ifDataNotExist, Func <Entity, double, double> converter, string extrapolatorName)
 {
     IfDataNotExist = ifDataNotExist;
     Collector      = collector;
     Converter      = converter;
     Extrapolator   = new NeuralExtrapolation(extrapolatorName);
 }
Exemple #4
0
 public DataForNeuralNetworkContext(IDataCollector collector,
                                    IfDataNotExist ifDataNotExist)
 {
     IfDataNotExist = ifDataNotExist;
     Collector      = collector;
 }