Uses of Class
edu.columbia.cs.ref.model.Document

Packages that use Document
edu.columbia.cs.api   
edu.columbia.cs.cg.pattern.prdualrank   
edu.columbia.cs.cg.prdualrank   
edu.columbia.cs.cg.prdualrank.graph   
edu.columbia.cs.cg.prdualrank.graph.generator   
edu.columbia.cs.cg.prdualrank.inference   
edu.columbia.cs.cg.prdualrank.inference.quest   
edu.columbia.cs.cg.prdualrank.inference.quest.impl   
edu.columbia.cs.cg.prdualrank.model   
edu.columbia.cs.cg.prdualrank.pattern.extractor   
edu.columbia.cs.cg.prdualrank.pattern.extractor.impl   
edu.columbia.cs.cg.prdualrank.searchengine   
edu.columbia.cs.cg.prdualrank.searchengine.querygenerator   
edu.columbia.cs.cg.prdualrank.searchengine.querygenerator.impl   
edu.columbia.cs.ref.algorithm   
edu.columbia.cs.ref.model   
edu.columbia.cs.ref.model.entity   
edu.columbia.cs.ref.model.pattern   
edu.columbia.cs.ref.tool.document.splitter   
edu.columbia.cs.ref.tool.document.splitter.impl   
edu.columbia.cs.ref.tool.loader.document   
edu.columbia.cs.ref.tool.loader.document.impl   
edu.columbia.cs.ref.tool.loader.document.impl.ace2005   
edu.columbia.cs.ref.tool.tagger   
 

Uses of Document in edu.columbia.cs.api
 

Classes in edu.columbia.cs.api with type parameters of type Document
 class ClassifierBasedRelationshipExtractor<D extends Document>
          Implementation of the relationship extractor that uses a classifier to extract information from a document
 class OpenIEUnsupervisedRelationshipExtractor<D extends Document>
          Implementation of the relationship extractor that is based on the unsupervised learning of KnowItAll.
 class PatternBasedRelationshipExtractor<T extends Relationship,D extends Document>
          Implementation of the relationship extractor that uses patterns to extract information from a document
 

Methods in edu.columbia.cs.api with parameters of type Document
 java.util.List<Relationship> ClassifierBasedRelationshipExtractor.extractTuples(Document d)
          Implementation of the extract Tuples method that uses the classifier to extract tuples from the input document
 java.util.List<Relationship> OpenIEUnsupervisedRelationshipExtractor.extractTuples(Document doc)
          Implementation of the extractTuples method.
 

Uses of Document in edu.columbia.cs.cg.pattern.prdualrank
 

Classes in edu.columbia.cs.cg.pattern.prdualrank with type parameters of type Document
 class SearchPattern<T extends Document,D extends TokenizedDocument>
          The Class SearchPattern represents a pattern that can be used for Document Retrieval.
 

Methods in edu.columbia.cs.cg.pattern.prdualrank that return types with arguments of type Document
 java.util.List<Document> SearchPattern.findMatch(TokenizedDocument d)
           
 

Uses of Document in edu.columbia.cs.cg.prdualrank
 

Constructor parameters in edu.columbia.cs.cg.prdualrank with type arguments of type Document
PRDualRank(PatternExtractor<Document> spe, PatternExtractor<Relationship> epe, SearchEngine se, QueryGenerator<java.lang.String> qg, int k_seed, int minsupport, int k_nolabel, RankFunction<Pattern<Document,TokenizedDocument>> searchpatternRankFunction, RankFunction<Pattern<Relationship,TokenizedDocument>> extractpatternRankFunction, RankFunction<Relationship> tupleRankFunction, Tokenizer tokenizer, RelationshipType rType, TokenBasedAnalyzer myAnalyzer, QueryGenerator<org.apache.lucene.search.Query> forIndexQueryGenerator, QuestCalculator<Document,TokenizedDocument> searchPatternQuestCalculator, QuestCalculator<Relationship,TokenizedDocument> extractionPatternQuestCalculator)
          Instantiates a new pR dual rank.
PRDualRank(PatternExtractor<Document> spe, PatternExtractor<Relationship> epe, SearchEngine se, QueryGenerator<java.lang.String> qg, int k_seed, int minsupport, int k_nolabel, RankFunction<Pattern<Document,TokenizedDocument>> searchpatternRankFunction, RankFunction<Pattern<Relationship,TokenizedDocument>> extractpatternRankFunction, RankFunction<Relationship> tupleRankFunction, Tokenizer tokenizer, RelationshipType rType, TokenBasedAnalyzer myAnalyzer, QueryGenerator<org.apache.lucene.search.Query> forIndexQueryGenerator, QuestCalculator<Document,TokenizedDocument> searchPatternQuestCalculator, QuestCalculator<Relationship,TokenizedDocument> extractionPatternQuestCalculator)
          Instantiates a new pR dual rank.
PRDualRank(PatternExtractor<Document> spe, PatternExtractor<Relationship> epe, SearchEngine se, QueryGenerator<java.lang.String> qg, int k_seed, int minsupport, int k_nolabel, RankFunction<Pattern<Document,TokenizedDocument>> searchpatternRankFunction, RankFunction<Pattern<Relationship,TokenizedDocument>> extractpatternRankFunction, RankFunction<Relationship> tupleRankFunction, Tokenizer tokenizer, RelationshipType rType, TokenBasedAnalyzer myAnalyzer, QueryGenerator<org.apache.lucene.search.Query> forIndexQueryGenerator, QuestCalculator<Document,TokenizedDocument> searchPatternQuestCalculator, QuestCalculator<Relationship,TokenizedDocument> extractionPatternQuestCalculator)
          Instantiates a new pR dual rank.
 

Uses of Document in edu.columbia.cs.cg.prdualrank.graph
 

Classes in edu.columbia.cs.cg.prdualrank.graph with type parameters of type Document
 class PRDualRankGraph<T extends Matchable,D extends Document>
          This class is used for our implementation of: "Searching Patterns for Relation Extraction over the Web: Rediscovering the Pattern-Relation Duality" .
 

Uses of Document in edu.columbia.cs.cg.prdualrank.graph.generator
 

Classes in edu.columbia.cs.cg.prdualrank.graph.generator with type parameters of type Document
 class GraphGenerator<T extends Matchable,D extends Document>
          This class is used for our implementation of: "Searching Patterns for Relation Extraction over the Web: Rediscovering the Pattern-Relation Duality" .
 class SearchGraphGenerator<T extends Document,D extends TokenizedDocument>
          This class is used for our implementation of: "Searching Patterns for Relation Extraction over the Web: Rediscovering the Pattern-Relation Duality" .
 

Uses of Document in edu.columbia.cs.cg.prdualrank.inference
 

Classes in edu.columbia.cs.cg.prdualrank.inference with type parameters of type Document
 class InferencePRDualRank<T extends Matchable,D extends Document>
          This class is used for our implementation of: "Searching Patterns for Relation Extraction over the Web: Rediscovering the Pattern-Relation Duality" .
 

Uses of Document in edu.columbia.cs.cg.prdualrank.inference.quest
 

Classes in edu.columbia.cs.cg.prdualrank.inference.quest with type parameters of type Document
 interface QuestCalculator<T extends Matchable,D extends Document>
          This class is used for our implementation of: "Searching Patterns for Relation Extraction over the Web: Rediscovering the Pattern-Relation Duality" .
 

Uses of Document in edu.columbia.cs.cg.prdualrank.inference.quest.impl
 

Classes in edu.columbia.cs.cg.prdualrank.inference.quest.impl with type parameters of type Document
 class MapBasedQuestCalculator<T extends Matchable,D extends Document>
          This class is used for our implementation of: "Searching Patterns for Relation Extraction over the Web: Rediscovering the Pattern-Relation Duality" .
 class MatricesBasedQuestCalculator<T extends Matchable,D extends Document>
          This class is used for our implementation of: "Searching Patterns for Relation Extraction over the Web: Rediscovering the Pattern-Relation Duality" .
 

Uses of Document in edu.columbia.cs.cg.prdualrank.model
 

Classes in edu.columbia.cs.cg.prdualrank.model with type parameters of type Document
 class PRDualRankModel<S extends Matchable,E extends Matchable,D extends Document>
          This class is used for our implementation of: "Searching Patterns for Relation Extraction over the Web: Rediscovering the Pattern-Relation Duality" .
 

Uses of Document in edu.columbia.cs.cg.prdualrank.pattern.extractor
 

Classes in edu.columbia.cs.cg.prdualrank.pattern.extractor with type parameters of type Document
 class SearchPatternExtractor<T extends Document>
          This class is used for our implementation of: "Searching Patterns for Relation Extraction over the Web: Rediscovering the Pattern-Relation Duality" .
 

Methods in edu.columbia.cs.cg.prdualrank.pattern.extractor that return types with arguments of type Document
 java.util.Map<Pattern<Document,TokenizedDocument>,java.lang.Integer> SearchPatternExtractor.extractPatterns(TokenizedDocument document, Relationship relationship, java.util.List<Relationship> matchingRelationships)
           
 

Uses of Document in edu.columbia.cs.cg.prdualrank.pattern.extractor.impl
 

Classes in edu.columbia.cs.cg.prdualrank.pattern.extractor.impl with type parameters of type Document
 class DocumentSearchPatternExtractor<T extends Document>
          This class is used for our implementation of: "Searching Patterns for Relation Extraction over the Web: Rediscovering the Pattern-Relation Duality" .
 class WindowedSearchPatternExtractor<T extends Document>
          This class is used for our implementation of: "Searching Patterns for Relation Extraction over the Web: Rediscovering the Pattern-Relation Duality" .
 

Uses of Document in edu.columbia.cs.cg.prdualrank.searchengine
 

Methods in edu.columbia.cs.cg.prdualrank.searchengine that return types with arguments of type Document
 java.util.List<Document> SearchEngine.search(java.lang.String query, int k_seed)
          Issues query into the search engine and retrieves either k_seed or all the documents in the result set, whichever number is the lower.
 java.util.List<Document> WebBasedSearchEngine.search(java.lang.String query, int k_seed)
           
 

Uses of Document in edu.columbia.cs.cg.prdualrank.searchengine.querygenerator
 

Method parameters in edu.columbia.cs.cg.prdualrank.searchengine.querygenerator with type arguments of type Document
abstract  Q QueryGenerator.generateQuery(SearchPattern<Document,TokenizedDocument> pattern)
          Generate query based on a pattern that matches documents (i.e.
 

Uses of Document in edu.columbia.cs.cg.prdualrank.searchengine.querygenerator.impl
 

Method parameters in edu.columbia.cs.cg.prdualrank.searchengine.querygenerator.impl with type arguments of type Document
 org.apache.lucene.search.Query LuceneQueryGenerator.generateQuery(SearchPattern<Document,TokenizedDocument> pattern)
           
 java.lang.String ConcatQueryGenerator.generateQuery(SearchPattern<Document,TokenizedDocument> pattern)
           
 

Uses of Document in edu.columbia.cs.ref.algorithm
 

Methods in edu.columbia.cs.ref.algorithm with parameters of type Document
 java.util.Set<CandidateSentence> CandidatesGenerator.generateCandidates(Document doc, java.util.Set<RelationshipType> relationshipTypes)
          This is the method that is responsible for the generation of the candidates for a given document.
 

Uses of Document in edu.columbia.cs.ref.model
 

Subclasses of Document in edu.columbia.cs.ref.model
 class TokenizedDocument
          Particular type of Document that went through a tokenization process.
 

Constructors in edu.columbia.cs.ref.model with parameters of type Document
Sentence(Document d, int offset, int length)
          Instantiates a new sentence.
TokenizedDocument(Document d, Tokenizer tokenizer)
          Constructor of the Document
 

Uses of Document in edu.columbia.cs.ref.model.entity
 

Methods in edu.columbia.cs.ref.model.entity that return Document
 Document Entity.getDocument()
          Gets the document where the entity belongs.
 

Methods in edu.columbia.cs.ref.model.entity with parameters of type Document
 void Entity.setDocument(Document document)
          Sets the document where the entity belongs.
 

Constructors in edu.columbia.cs.ref.model.entity with parameters of type Document
Entity(java.lang.String id, java.lang.String entityType, int offset, int length, java.lang.String value, Document doc)
          Instantiates a new Entity.
 

Uses of Document in edu.columbia.cs.ref.model.pattern
 

Classes in edu.columbia.cs.ref.model.pattern with type parameters of type Document
 class Pattern<T extends Matchable,D extends Document>
          A Pattern represents any object that can be matched in a given document.
 

Uses of Document in edu.columbia.cs.ref.tool.document.splitter
 

Methods in edu.columbia.cs.ref.tool.document.splitter with parameters of type Document
 Sentence[] SentenceSplitter.split(Document d)
          Splits the input document into sentences
 

Uses of Document in edu.columbia.cs.ref.tool.document.splitter.impl
 

Methods in edu.columbia.cs.ref.tool.document.splitter.impl with parameters of type Document
 Sentence[] OpenNLPMESplitter.split(Document d)
           
 

Uses of Document in edu.columbia.cs.ref.tool.loader.document
 

Methods in edu.columbia.cs.ref.tool.loader.document that return types with arguments of type Document
abstract  java.util.Set<Document> DocumentLoader.load(java.io.File file)
          Method that loads a set of documents given a File that represents the directory of the collection
 

Uses of Document in edu.columbia.cs.ref.tool.loader.document.impl
 

Methods in edu.columbia.cs.ref.tool.loader.document.impl that return Document
 Document RawDocumentLoader.load(java.io.Reader reader)
           
 Document RawDocumentLoader.load(java.lang.String content)
           
 

Methods in edu.columbia.cs.ref.tool.loader.document.impl that return types with arguments of type Document
 java.util.Set<Document> RawDocumentLoader.load(java.io.File file)
           
 java.util.Set<Document> ACE2003Loader.load(java.io.File file)
          Method that loads a set of documents given a File that represents the directory of the collection
 java.util.Set<Document> SGMLLoader.load(java.io.File file)
          Method that loads a set of documents given a File that represents the directory of the collection
 java.util.Set<Document> AImedLoader.load(java.io.File file)
          Method that loads a set of documents given a File that represents the directory of the collection
 

Uses of Document in edu.columbia.cs.ref.tool.loader.document.impl.ace2005
 

Methods in edu.columbia.cs.ref.tool.loader.document.impl.ace2005 that return types with arguments of type Document
 java.util.Set<Document> ACE2005Loader.load(java.io.File file)
          Method that loads a set of documents given a File that represents the directory of the collection
 

Uses of Document in edu.columbia.cs.ref.tool.tagger
 

Methods in edu.columbia.cs.ref.tool.tagger with parameters of type Document
 void Tagger.enrich(Document d)
          This is the method that defines the behavior of the Tagger.