Reranker Framework (ReFr)
Reranking framework for structure prediction and discriminative language modeling
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
model-proto-reader.H
Go to the documentation of this file.
1 // Copyright 2012, Google Inc.
2 // All rights reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are
6 // met:
7 //
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above
11 // copyright notice, this list of conditions and the following disclaimer
12 // in the documentation and/or other materials provided with the
13 // distribution.
14 // * Neither the name of Google Inc. nor the names of its
15 // contributors may be used to endorse or promote products derived from
16 // this software without specific prior written permission.
17 //
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 // -----------------------------------------------------------------------------
30 //
31 //
36 
37 #ifndef RERANKER_MODEL_PROTO_READER_H_
38 #define RERANKER_MODEL_PROTO_READER_H_
39 
40 #include <iostream>
41 #include "../proto/model.pb.h"
42 #include "factory.H"
43 #include "model.H"
44 
45 namespace reranker {
46 
47 using confusion_learning::FeatureVecMessage;
48 using confusion_learning::ModelMessage;
49 
54  public:
59  virtual ~ModelProtoReader() { }
60 
67  virtual void Read(const ModelMessage &model_message, Model *model) const = 0;
68 
76  virtual void ReadFeatures(istream& is,
77  Model *model,
78  bool skip_key = false,
79  const string& separator = "\t") const = 0;
80 };
81 
86 #define REGISTER_NAMED_MODEL_PROTO_READER(TYPE,NAME) \
87  REGISTER_NAMED(TYPE,NAME,ModelProtoReader)
88 
93 #define REGISTER_MODEL_PROTO_READER(TYPE) \
94  REGISTER_NAMED_MODEL_PROTO_READER(TYPE,TYPE)
95 
96 
97 } // namespace reranker
98 
99 #endif
Model is an interface for reranking models.
Definition: model.H:141
ModelProtoReader()
Constructs a new instance that can de-serialize Model instances from ModelMessage protocol buffer mes...
virtual void Read(const ModelMessage &model_message, Model *model) const =0
De-serializes a Model instance from a ModelMessage.
A class to de-serialize a Model instance from a ModelMessage instance.
virtual ~ModelProtoReader()
Destroys this reader.
An interface to make it easier to implement Factory-constructible types by implementing both required...
Definition: factory.H:382
Provides a generic dynamic object factory.
virtual void ReadFeatures(istream &is, Model *model, bool skip_key=false, const string &separator="\t") const =0
De-serializes FeatureMessage instances from the specified input stream.
Reranker model interface.