Example #1
0
 public RawSmartBot(MulticlassAlgorithmType algorithmType, int sampleSize = 100) : base(algorithmType, sampleSize)
 {
 }
Example #2
0
 protected BaseSmartBot(MulticlassAlgorithmType algorithmType, int sampleSize)
 {
     this.MlContext      = new MLContext(seed: 0);
     this._algorithmType = algorithmType;
     this._sampleSize    = sampleSize;
 }