Uses of Interface
edu.illinois.cs.cogcomp.lbj.coref.exampleExtractors.CExampleExtractor

Packages that use CExampleExtractor
edu.illinois.cs.cogcomp.lbj.coref.exampleExtractors   
edu.illinois.cs.cogcomp.lbj.coref.parsers   
 

Uses of CExampleExtractor in edu.illinois.cs.cogcomp.lbj.coref.exampleExtractors
 

Classes in edu.illinois.cs.cogcomp.lbj.coref.exampleExtractors that implement CExampleExtractor
 class CExampleExtractorBasic
          Extracts coreference examples from a document from all ordered pairs of mentions of a document such that any filters accept them.
 class CExExClosestPosAllNeg
          Generates examples of coreference in the following way: For each mention, create a positive example with the nearest preceding coreferential mention, and create negative examples with each preceding non-coreferential mention.
 class CExExtractorUntilTrue
          FIXME: This code should inherit from an onlineCExample class
 

Uses of CExampleExtractor in edu.illinois.cs.cogcomp.lbj.coref.parsers
 

Fields in edu.illinois.cs.cogcomp.lbj.coref.parsers declared as CExampleExtractor
private  CExampleExtractor CoParser.m_cExExtractor
           
 

Constructors in edu.illinois.cs.cogcomp.lbj.coref.parsers with parameters of type CExampleExtractor
CoParser(DocLoader loader, CExampleExtractor extractor)
          Constructs a Parser that extracts coreference examples from a corpus, with documents loaded by a specified document loader and coreference examples extracted from each document using the specified example extractor.
CoParser(java.lang.String fileListFN, CExampleExtractor extractor)
          Constructs a Parser that extracts coreference examples from a corpus loaded using the default document loader as specified by DocLoader.getDefaultLoader(java.lang.String), and examples extracted using the specified example extractor.