Examples of DawidSkene


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

Examples of com.ipeirotis.gal.algorithms.DawidSkene

  }

  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

Examples of com.ipeirotis.gal.scripts.DawidSkene

        Set<Category> categories = new HashSet<Category>();
        Category relevant = new Category("1");
        Category irrelevant = new Category("0");
        categories.add(relevant);
        categories.add(irrelevant);
        DawidSkene ds = new DawidSkene(categories);

        ds.addMisclassificationCost(new MisclassificationCost(relevant.getName(), relevant.getName(), 0.0));
        ds.addMisclassificationCost(new MisclassificationCost(irrelevant.getName(), irrelevant.getName(), 0.0));
        ds.addMisclassificationCost(new MisclassificationCost(relevant.getName(), irrelevant.getName(), 1.0));
        ds.addMisclassificationCost(new MisclassificationCost(irrelevant.getName(), relevant.getName(), 1.0));

        for (Vote vote : votes ) {
           if (vote.sequence <= threshold ) {
              AssignedLabel l = new AssignedLabel( vote.worker, vote.unit, vote.label);
              ds.addAssignedLabel(l);
            }
        }

        ds.estimate( 20 );
       
        return ds.getMajorityVote();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.