public RawSmartBot(MultiClassAlgorithmType algorithmType, int sampleSize = 100) : base(algorithmType, sampleSize)
 {
 }
Пример #2
0
 public TransformerSmartBot(MultiClassAlgorithmType algorithmType, int sampleSize = 100) : base(algorithmType, sampleSize)
 {
 }
Пример #3
0
 protected BaseSmartBot(MultiClassAlgorithmType algorithmType, int sampleSize)
 {
     this.MlContext      = new MLContext(seed: 0);
     this._algorithmType = algorithmType;
     this._sampleSize    = sampleSize;
 }