00001 /*========================================================================== 00002 * Copyright (c) 2004 University of Massachusetts. All Rights Reserved. 00003 * 00004 * Use of the Lemur Toolkit for Language Modeling and Information Retrieval 00005 * is subject to the terms of the software license set forth in the LICENSE 00006 * file included with this software, and also available at 00007 * http://www.lemurproject.org/license.html 00008 * 00009 *========================================================================== 00010 */ 00011 00012 00013 // 00014 // Annotator 00015 // 00016 // 19 July 2004 -- tds 00017 // 00018 00019 #ifndef INDRI_ANNOTATOR_HPP 00020 #define INDRI_ANNOTATOR_HPP 00021 00022 #include <map> 00023 #include <vector> 00024 #include "indri/InferenceNetworkNode.hpp" 00025 #include "indri/BeliefNode.hpp" 00026 #include "indri/EvaluatorNode.hpp" 00027 #include "indri/Extent.hpp" 00028 00029 class Annotator : public EvaluatorNode { 00030 private: 00031 BeliefNode* _belief; 00032 EvaluatorNode::MResults _annotations; 00033 std::string _name; 00034 00035 public: 00036 Annotator( const std::string& name, BeliefNode* belief ); 00037 void add( InferenceNetworkNode* node, int documentID, int begin, int end ); 00038 void addMatches( greedy_vector<Extent>& extents, InferenceNetworkNode* node, int documentID, int begin, int end ); 00039 void evaluate( int documentID, int documentLength ); 00040 int nextCandidateDocument(); 00041 EvaluatorNode::MResults& getResults(); 00042 const std::string& getName() const; 00043 const EvaluatorNode::MResults& getResults() const; 00044 }; 00045 00046 #endif // INDRI_ANNOTATOR_HPP