Esempio n. 1
0
 public ItemKmerFrequencyRegressor(string name, int minSignificantCount, int smoothingAmount, int featuresToUse, int k)
 {
     regressor = new ItemFrequencyRegressor <Kmer <A> >(name, minSignificantCount, smoothingAmount, featuresToUse);
     this.k    = k;
 }