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

epic.framework.LossAugmentation.scala Maven / Gradle / Ivy

There is a newer version: 0.4.4
Show newest version
package epic.framework

/**
 * A class that returns an augment that gives higher
 * scores to spans that are wrong. Used for training mostly.
 *
 * @author dlwh
 **/
trait LossAugmentation[Datum, Augment] extends (Datum=>Augment) {
  def lossAugmentation(datum: Datum):Augment

  def apply(datum: Datum): Augment = lossAugmentation(datum)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy