Package com.ipeirotis.gal.algorithms

Examples of com.ipeirotis.gal.algorithms.DawidSkene


    return super.execute(ctx);
  }

  public void reportConfusionMatrix(ReportingContext ctx, ReportTarget reportTarget) {

    DawidSkene ds = ctx.getDawidSkene();
    DawidSkeneDecorator decorator = new DawidSkeneDecorator(ds);

    String type = "Estimated";

    for (ClassificationMethod estimatedClasMethod : Datum.ClassificationMethod.values()) {
View Full Code Here


  }

  public void execute() {
    setCategories(loadCategories(ctx.getCategoriesFile()));

    setDawidSkene(new DawidSkene(getCategories()));
   
    if (getDs().fixedPriors() == true)
      println("Using fixed priors.");
    else
      println("Using data-inferred priors.");
View Full Code Here

TOP

Related Classes of com.ipeirotis.gal.algorithms.DawidSkene

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.