Package cz.zcu.fav.liks.ml.featuresel.selectors

Examples of cz.zcu.fav.liks.ml.featuresel.selectors.MutualInformation


      }

      if (selector == null) {
        filter = null;
      } else if (selector.equalsIgnoreCase("MI")) {
        filter = new MutualInformation();
      } else if (selector.equalsIgnoreCase("IG")) {
        filter = new InformationGain();
      } else if (selector.equalsIgnoreCase("CHI")) {
        filter = new ChiSquare();
      } else if (selector.equalsIgnoreCase("OR")) {
View Full Code Here


      print("RS(0,7)");
      cv.multiValidate(features, trainer, 10, data, new RelevancyScore(), 0.7);

      print("MI(0,6)");
      cv.multiValidate(features, trainer, 10, data, new MutualInformation(), 0.6);

      print("MI(0,7)");
      cv.multiValidate(features, trainer, 10, data, new MutualInformation(), 0.7);

      print("MI(0,8)");
      cv.multiValidate(features, trainer, 10, data, new MutualInformation(), 0.8);

      print("IG(0,6)");
      cv.multiValidate(features, trainer, 10, data, new InformationGain(), 0.6);

      print("IG(0,7)");
View Full Code Here

TOP

Related Classes of cz.zcu.fav.liks.ml.featuresel.selectors.MutualInformation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.