Uses of Class
edu.washington.cs.knowitall.nlp.extraction.ChunkedBinaryExtraction

Packages that use ChunkedBinaryExtraction
edu.washington.cs.knowitall.argumentidentifier   
edu.washington.cs.knowitall.extractor   
edu.washington.cs.knowitall.extractor.conf   
edu.washington.cs.knowitall.extractor.conf.featureset   
edu.washington.cs.knowitall.extractor.mapper   
edu.washington.cs.knowitall.nlp.extraction   
edu.washington.cs.knowitall.normalization   
 

Uses of ChunkedBinaryExtraction in edu.washington.cs.knowitall.argumentidentifier
 

Methods in edu.washington.cs.knowitall.argumentidentifier with parameters of type ChunkedBinaryExtraction
 int ArgLearnerFeatureSet.arg1Length(ChunkedBinaryExtraction extr)
           
 boolean ArgLearnerFeatureSet.correctArg1End(ChunkedBinaryExtraction extr)
           
 double ArgLearnerFeatureSet.featurize(String featureName, ChunkedBinaryExtraction extr)
           
 double ConfidenceMetric.getConf(ChunkedBinaryExtraction extr)
           
 boolean ArgLearnerFeatureSet.npBeforeArg2(ChunkedBinaryExtraction extr, boolean train)
           
 boolean ArgLearnerFeatureSet.ppAfterArg2(ChunkedBinaryExtraction extr)
           
 boolean ArgLearnerFeatureSet.ppBeforeArg1(ChunkedBinaryExtraction extr)
           
 boolean ArgLearnerFeatureSet.predStartsWithNP(ChunkedBinaryExtraction extr)
           
 boolean ArgLearnerFeatureSet.toBeforePred(ChunkedBinaryExtraction extr)
           
 boolean ArgLearnerFeatureSet.toInPred(ChunkedBinaryExtraction extr, boolean train)
           
 int ArgLearnerFeatureSet.wordsTillEnd(ChunkedBinaryExtraction extr)
           
 int ArgLearnerFeatureSet.wordsTillStart(ChunkedBinaryExtraction extr)
           
 

Constructor parameters in edu.washington.cs.knowitall.argumentidentifier with type arguments of type ChunkedBinaryExtraction
ConfidenceMetric(LogisticRegression<ChunkedBinaryExtraction> logreg)
           
 

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

Methods in edu.washington.cs.knowitall.extractor that return types with arguments of type ChunkedBinaryExtraction
protected  Collection<ChunkedBinaryExtraction> RelationFirstNpChunkExtractor.extractCandidates(ChunkedSentence source)
           
 Iterable<ChunkedBinaryExtraction> ReVerbRelationExtractor.extractFromHtml(String html)
          Extracts from the given html using the default sentence reader returned by DefaultObjects#.getDefaultSentenceReaderHtml(java.io.Reader).
 Iterable<ChunkedBinaryExtraction> ReVerbRelationExtractor.extractFromString(String text)
          Extracts from the given text using the default sentence reader returned by DefaultObjects.getDefaultSentenceReader(java.io.Reader).
 

Uses of ChunkedBinaryExtraction in edu.washington.cs.knowitall.extractor.conf
 

Subclasses of ChunkedBinaryExtraction in edu.washington.cs.knowitall.extractor.conf
 class LabeledBinaryExtraction
          Extends the ChunkedBinaryExtraction class to have a binary label.
 

Methods in edu.washington.cs.knowitall.extractor.conf that return types with arguments of type ChunkedBinaryExtraction
 Map<String,com.google.common.base.Predicate<ChunkedBinaryExtraction>> NestedFeatures.getFeatureMap()
           
 Map<String,com.google.common.base.Predicate<ChunkedBinaryExtraction>> HypotheticalFeatures.getFeatureMap()
           
 BooleanFeatureSet<ChunkedBinaryExtraction> ReVerbFeatures.getFeatureSet()
           
 com.google.common.base.Predicate<ChunkedBinaryExtraction> ReVerbFeatures.relIsOneVerb()
           
 

Methods in edu.washington.cs.knowitall.extractor.conf with parameters of type ChunkedBinaryExtraction
 double ReVerbOpenNlpConfFunction.getConf(ChunkedBinaryExtraction extr)
           
 double ConfidenceFunction.getConf(ChunkedBinaryExtraction extr)
           
 double ReVerbIndependentConfFunction.getConf(ChunkedBinaryExtraction extr)
           
 

Constructors in edu.washington.cs.knowitall.extractor.conf with parameters of type ChunkedBinaryExtraction
LabeledBinaryExtraction(ChunkedBinaryExtraction extr, int label)
          Constructs a new LabeledBinaryExtraction with the given label.
 

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

Methods in edu.washington.cs.knowitall.extractor.conf.featureset with parameters of type ChunkedBinaryExtraction
 boolean ExtractionFeature.apply(ChunkedBinaryExtraction cbe)
           
protected abstract  edu.washington.cs.knowitall.commonlib.Range ChunkFeature.rangeToExamine(ChunkedBinaryExtraction cbe)
           
protected abstract  edu.washington.cs.knowitall.commonlib.Range VerbTokenFeature.rangeToExamine(ChunkedBinaryExtraction cbe)
           
protected abstract  edu.washington.cs.knowitall.commonlib.Range ExtractionFeature.rangeToExamine(ChunkedBinaryExtraction cbe)
           
protected abstract  edu.washington.cs.knowitall.commonlib.Range TokenFeature.rangeToExamine(ChunkedBinaryExtraction cbe)
           
protected abstract  edu.washington.cs.knowitall.commonlib.Range PosFeature.rangeToExamine(ChunkedBinaryExtraction cbe)
          Given a ChunkedBinaryExtraction, I need the implementation to tell me at which indices to test my predicate.
 

Uses of ChunkedBinaryExtraction in edu.washington.cs.knowitall.extractor.mapper
 

Methods in edu.washington.cs.knowitall.extractor.mapper with parameters of type ChunkedBinaryExtraction
 boolean ChunkedBinaryExtractionWordCountFilter.doFilter(ChunkedBinaryExtraction extraction)
           
 boolean ChunkedBinaryExtractionStringLengthFilter.doFilter(ChunkedBinaryExtraction extraction)
           
 

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

Methods in edu.washington.cs.knowitall.nlp.extraction that return types with arguments of type ChunkedBinaryExtraction
static Collection<ChunkedBinaryExtraction> ChunkedBinaryExtraction.productOfArgs(ChunkedExtraction rel, Iterable<? extends ChunkedArgumentExtraction> arg1s, Iterable<? extends ChunkedArgumentExtraction> arg2s)
          Given a collection of arg1s, a collection of arg2s, and a relation, returns all (arg1, rel, arg2) extractions, where arg1 and arg2 range over the given collections.
static Collection<ChunkedBinaryExtraction> ChunkedBinaryExtraction.productOfArgs(ChunkedExtraction rel, Iterable<? extends ChunkedArgumentExtraction> arg1s, Iterable<? extends ChunkedArgumentExtraction> arg2s, boolean allowUnaryRelations)
          Given a collection of arg1s, a collection of arg2s, and a relation, returns all (arg1, rel, arg2) extractions, where arg1 and arg2 range over the given collections.
 

Uses of ChunkedBinaryExtraction in edu.washington.cs.knowitall.normalization
 

Subclasses of ChunkedBinaryExtraction in edu.washington.cs.knowitall.normalization
 class NormalizedBinaryExtraction
          Represents a ChunkedBinaryExtraction that has normalized versions of arg1, rel, arg2.
 

Methods in edu.washington.cs.knowitall.normalization with parameters of type ChunkedBinaryExtraction
 NormalizedBinaryExtraction BinaryExtractionNormalizer.normalize(ChunkedBinaryExtraction extr)
          Normalizes the given extraction
 

Constructors in edu.washington.cs.knowitall.normalization with parameters of type ChunkedBinaryExtraction
NormalizedBinaryExtraction(ChunkedBinaryExtraction extr, NormalizedField arg1Norm, NormalizedField relNorm, NormalizedField arg2Norm)
          Constructs a new normalized extraction from the given source extraction and its normalized fields.
 



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