All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.joliciel.talismane.machineLearning.Solution Maven / Gradle / Ivy

There is a newer version: 6.1.8
Show newest version
package com.joliciel.talismane.machineLearning;

import java.io.Serializable;
import java.util.List;

public interface Solution extends Serializable {
  /**
   * This solution's total score.
   */
  public double getScore();

  /**
   * The solutions underlying this solution, in the case of several overlaid
   * levels of abstraction, e.g. a syntax parse depends on an underlying
   * pos-tagging solution, which itself depends on an underlying tokenising
   * solution.
   */
  public List getUnderlyingSolutions();

  /**
   * Get the scoring strategy for this solution.
   */
  @SuppressWarnings("rawtypes")
  public ScoringStrategy getScoringStrategy();

  public void setScoringStrategy(@SuppressWarnings("rawtypes") ScoringStrategy scoringStrategy);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy