public ClassificationWithRankingMultiSizes(ClassificationMethod classifier,
                                            ClassificationFeatureRankingMethod ranker, double reductionFactor, int maxFeatures, Parameters classifierParam,
                                            Parameters rankerParam)
 {
     this.classifier      = classifier;
     this.ranker          = ranker;
     this.reductionFactor = reductionFactor;
     this.maxFeatures     = maxFeatures;
     this.classifierParam = classifierParam;
     this.rankerParam     = rankerParam;
 }
        public ClassificationWithRanking(ClassificationMethod classifier, ClassificationFeatureRankingMethod ranker,
			int nfeatures, Parameters classifierParam, Parameters rankerParam, bool groupWiseSelection, int[] groupWiseNfeatures)
        {
            this.classifier = classifier;
            this.ranker = ranker;
            this.nfeatures = nfeatures;
            this.classifierParam = classifierParam;
            this.rankerParam = rankerParam;
            this.groupWiseSelection = groupWiseSelection;
            this.groupWiseNfeatures = groupWiseNfeatures;
        }
Example #3
0
 public ClassificationWithRanking(ClassificationMethod classifier, ClassificationFeatureRankingMethod ranker,
                                  int nfeatures, Parameters classifierParam, Parameters rankerParam, bool groupWiseSelection, int[] groupWiseNfeatures)
 {
     this.classifier         = classifier;
     this.ranker             = ranker;
     this.nfeatures          = nfeatures;
     this.classifierParam    = classifierParam;
     this.rankerParam        = rankerParam;
     this.groupWiseSelection = groupWiseSelection;
     this.groupWiseNfeatures = groupWiseNfeatures;
 }
        public ClassificationWithRankingMultiSizes(ClassificationMethod classifier,
			ClassificationFeatureRankingMethod ranker, double reductionFactor, int maxFeatures, Parameters classifierParam,
			Parameters rankerParam)
        {
            this.classifier = classifier;
            this.ranker = ranker;
            this.reductionFactor = reductionFactor;
            this.maxFeatures = maxFeatures;
            this.classifierParam = classifierParam;
            this.rankerParam = rankerParam;
        }