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

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


      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")) {
        filter = new OddsRatio();
      } else if (selector.equalsIgnoreCase("RS")) {
View Full Code Here


      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)");
      cv.multiValidate(features, trainer, 10, data, new InformationGain(), 0.7);

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

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

      print("OR(0,9)");
      cv.multiValidate(features, trainer, 10, data, new OddsRatio(), 0.9);

    } catch (SQLException e) {
View Full Code Here

TOP

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

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.