Uses of Interface
edu.illinois.cs.cogcomp.lbj.coref.decoders.SolutionDecoder

Packages that use SolutionDecoder
edu.illinois.cs.cogcomp.lbj.coref.decoders   
 

Uses of SolutionDecoder in edu.illinois.cs.cogcomp.lbj.coref.decoders
 

Subinterfaces of SolutionDecoder in edu.illinois.cs.cogcomp.lbj.coref.decoders
 interface KeyDecoder<ST extends Solution>
          Interface for decoders that extract the gold (true) values, or keys, from a document.
 

Classes in edu.illinois.cs.cogcomp.lbj.coref.decoders that implement SolutionDecoder
 class BestLinkDecoder
          Translates classification decisions to a collection of coreference equivalence classes in the form of a ChainSolution via the decode method according to the best link decoding algorithm.
 class BIODecoder
          Translates a BIO classifier's decisions into a ChunkSolution.
 class ChainSolutionDecoder<ST extends ChainSolution<CT>,CT,ET>
          Base class for decoding decisions into chain solutions.
 class ChunkDecoder
          A decoder that translates a document to a ChunkSolution.
 class CorefDecoder
          Translates coreference decisions to a ChainSolution via the decode method.
 class CorefKeyDecoder
          A decoder that extracts the true entities of a document and encodes them in a ChainSolution.
 class DecoderWithOptions<ST extends Solution>
          Abstract class for decoding some set of predictions into an arbitrary solution type.
 class ExtendHeadsDecoder
          A decoder for determining the extents of the mentions, given their heads as chunks.
 class KeyChainDecoder<CT>
          Decodes a document into a ChainSolution.
 class MentionDecoder
          A decoder that translates a document into a MentionSolution.
 class ScoredCorefDecoder
          Base class for decoders which depend on a score from a learned classifier.