Uses of Class
edu.washington.cs.knowitall.nlp.ChunkedSentence

Packages that use ChunkedSentence
edu.washington.cs.knowitall.extractor   
edu.washington.cs.knowitall.extractor.conf.featureset   
edu.washington.cs.knowitall.nlp   
edu.washington.cs.knowitall.nlp.extraction   
 

Uses of ChunkedSentence in edu.washington.cs.knowitall.extractor
 

Fields in edu.washington.cs.knowitall.extractor with type parameters of type ChunkedSentence
protected  Extractor<ChunkedSentence,ChunkedExtraction> RelationFirstNpChunkExtractor.relExtr
           
 

Methods in edu.washington.cs.knowitall.extractor that return types with arguments of type ChunkedSentence
 Extractor<ChunkedSentence,ChunkedExtraction> RelationFirstNpChunkExtractor.getRelationExtractor()
           
 

Methods in edu.washington.cs.knowitall.extractor with parameters of type ChunkedSentence
protected  Collection<SpanExtraction> RegexGroupExtractor.extractCandidates(ChunkedSentence sent)
           
 Collection<ChunkedExtraction> RegexExtractor.extractCandidates(ChunkedSentence sentence)
           
protected  Collection<ChunkedBinaryExtraction> RelationFirstNpChunkExtractor.extractCandidates(ChunkedSentence source)
           
 

Method parameters in edu.washington.cs.knowitall.extractor with type arguments of type ChunkedSentence
 void RelationFirstNpChunkExtractor.setRelationExtractor(Extractor<ChunkedSentence,ChunkedExtraction> relExtr)
          Sets the relation extractor.
 

Uses of ChunkedSentence in edu.washington.cs.knowitall.extractor.conf.featureset
 

Methods in edu.washington.cs.knowitall.extractor.conf.featureset with parameters of type ChunkedSentence
protected  boolean ChunkFeature.testAtIndex(Integer index, ChunkedSentence sentence)
           
protected  boolean VerbTokenFeature.testAtIndex(Integer index, ChunkedSentence sentence)
           
protected abstract  boolean ExtractionFeature.testAtIndex(Integer index, ChunkedSentence sentence)
           
protected  boolean TokenFeature.testAtIndex(Integer index, ChunkedSentence sentence)
           
protected  boolean PosFeature.testAtIndex(Integer index, ChunkedSentence sentence)
           
 

Uses of ChunkedSentence in edu.washington.cs.knowitall.nlp
 

Fields in edu.washington.cs.knowitall.nlp declared as ChunkedSentence
 ChunkedSentence ChunkedSentenceToken.ChunkedSentence
           
 

Methods in edu.washington.cs.knowitall.nlp that return ChunkedSentence
 ChunkedSentence SentenceChunker.chunkSentence(String sent)
           
 ChunkedSentence OpenNlpSentenceChunker.chunkSentence(String sent)
           
 ChunkedSentence ChunkedSentence.clone()
          Returns a copy of this object.
protected  ChunkedSentence ChunkedSentenceIterator.computeNext()
           
 ChunkedSentence ChunkedSentence.getSubSequence(int start, int length)
          Returns a new ChunkedSentence object that starts at the given start index and has the given length.
 ChunkedSentence ChunkedSentence.getSubSequence(edu.washington.cs.knowitall.commonlib.Range range)
          Returns a new ChunkedSentence object that starts at the given range.
 ChunkedSentence OpenNlpChunkedSentenceParser.parseSentence(String sent)
          Converts sent into a ChunkedSentence object.
 

Methods in edu.washington.cs.knowitall.nlp that return types with arguments of type ChunkedSentence
 List<ChunkedSentence> ChunkedDocument.getSentences()
           
 Iterable<ChunkedSentence> ChunkedSentenceReader.getSentences()
           
 Iterator<ChunkedSentence> ChunkedDocument.iterator()
           
 Iterator<ChunkedSentence> PreChunkedSentenceReader.iterator()
           
 

Methods in edu.washington.cs.knowitall.nlp with parameters of type ChunkedSentence
static List<edu.washington.cs.knowitall.commonlib.Range> OrdinalUtils.getOrdinalRanges(ChunkedSentence sent)
           
static String[] OrdinalUtils.tagOrdinals(ChunkedSentence sent)
           
static List<ChunkedSentenceToken> ChunkedSentenceToken.tokenize(ChunkedSentence sentence)
           
static List<ChunkedSentenceToken> ChunkedSentenceToken.tokenize(ChunkedSentence sentence, edu.washington.cs.knowitall.commonlib.Range range)
           
 

Method parameters in edu.washington.cs.knowitall.nlp with type arguments of type ChunkedSentence
 void ChunkedSentenceIterator.addFilter(com.google.common.base.Predicate<ChunkedSentence> filter)
          If a chunked sentence is filtered, it will not be returned.
 void ChunkedSentenceReader.addFilter(com.google.common.base.Predicate<ChunkedSentence> filter)
          This filter is used for sentences AFTER they have been chunked.
 

Constructors in edu.washington.cs.knowitall.nlp with parameters of type ChunkedSentence
ChunkedSentence(ChunkedSentence sent)
          Constructs a new instance using the given tokens, POS tags, and NP chunk tags, each of which must have the same length.
ChunkedSentenceToken(ChunkedSentence ChunkedSentence, int index)
           
 

Constructor parameters in edu.washington.cs.knowitall.nlp with type arguments of type ChunkedSentence
ChunkedDocument(String id, Iterable<ChunkedSentence> sents)
          Constructs a new ChunkedDocument with the given identifier and sentences.
 

Uses of ChunkedSentence in edu.washington.cs.knowitall.nlp.extraction
 

Subclasses of ChunkedSentence in edu.washington.cs.knowitall.nlp.extraction
 class ChunkedArgumentExtraction
          A class representing a noun phrase argument of a relation.
 class ChunkedExtraction
          An extraction object that represents a contiguous subsequence of a ChunkedSentence object.
 

Methods in edu.washington.cs.knowitall.nlp.extraction that return ChunkedSentence
 ChunkedSentence ChunkedExtraction.getSentence()
           
 ChunkedSentence SpanExtraction.getSentence()
           
 

Constructors in edu.washington.cs.knowitall.nlp.extraction with parameters of type ChunkedSentence
ChunkedArgumentExtraction(ChunkedSentence sent, edu.washington.cs.knowitall.commonlib.Range range, ChunkedExtraction relation)
          Constructs a new NpChunkArgumentExtraction from sent for relation.
ChunkedArgumentExtraction(ChunkedSentence sent, edu.washington.cs.knowitall.commonlib.Range range, ChunkedExtraction relation, double confidence)
           
ChunkedArgumentExtraction(ChunkedSentence sent, edu.washington.cs.knowitall.commonlib.Range range, ChunkedExtraction relation, String string)
           
ChunkedExtraction(ChunkedSentence sent, edu.washington.cs.knowitall.commonlib.Range range)
          Constructs a new ChunkedExtraction object representing range in the sentence sent.
ChunkedExtraction(ChunkedSentence sent, edu.washington.cs.knowitall.commonlib.Range range, String string)
          Constructs a new NpChunkedExtraction object representing range in the sentence sent.
SpanExtraction(ChunkedSentence sent, List<edu.washington.cs.knowitall.commonlib.Range> fieldRanges)
          Constructs a new extraction from the given sentence, with fields defined by the given ranges.
SpanExtraction(ChunkedSentence sent, List<edu.washington.cs.knowitall.commonlib.Range> fieldRanges, List<String> fieldNames)
          Constructs a new extraction from the given sentence, with fields defined by the given ranges and names.
 



Copyright © 2010-2012 University of Washington CSE. All Rights Reserved.