Package edu.isi.karma.cleaning.QuestionableRecord

Examples of edu.isi.karma.cleaning.QuestionableRecord.OutlierDetector


  public HashMap<String, HashMap<String, String[]>> testdata = new HashMap<String, HashMap<String, String[]>>();
  public int way = 7;
  public HashSet<String> dictionary = new HashSet<String>();

  public ExampleSelection() {
    this.out = new OutlierDetector();
  }
View Full Code Here


      HashMap<String, Vector<String[]>> examples) {
    // inite the class center vector

    if (way >= 6) {
      if (firsttime) {
        out = new OutlierDetector();
        out.buildDict(this.getOrgTarPair(exps));
        dictionary = out.dict;
      }
      out.buildMeanVector(examples, dictionary);
    }
View Full Code Here

TOP

Related Classes of edu.isi.karma.cleaning.QuestionableRecord.OutlierDetector

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.