Reranker Framework (ReFr)
Reranking framework for structure prediction and discriminative language modeling
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
perceptron-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_PERCEPTRON_MODEL_PROTO_READER_H_
38 #define RERANKER_PERCEPTRON_MODEL_PROTO_READER_H_
39 
40 #include "../proto/model.pb.h"
41 #include "feature-vector-reader.H"
42 #include "perceptron-model.H"
43 #include "model-proto-reader.H"
44 
45 namespace reranker {
46 
47 using confusion_learning::ModelMessage;
48 
58  public:
61  PerceptronModelProtoReader() : smart_copy_(true) { }
64 
71  virtual void RegisterInitializers(Initializers &initializers) {
72  initializers.Add("smart_copy", &smart_copy_);
73  }
74 
81  virtual void Read(const ModelMessage &model_message, Model *model) const;
82 
89  virtual void ReadFeatures(istream& is,
90  Model *model,
91  bool skip_key,
92  const string& separator) const;
93  private:
95  bool smart_copy_;
96 };
97 
98 } // namespace reranker
99 
100 #endif
Provides the reranker::PerceptronModel reranker class.
Model is an interface for reranking models.
Definition: model.H:141
virtual void ReadFeatures(istream &is, Model *model, bool skip_key, const string &separator) const
De-serializes Features from an instance.
virtual void RegisterInitializers(Initializers &initializers)
Registers the smart_copy_ data member with the name "smart_copy".
virtual void Read(const ModelMessage &model_message, Model *model) const
De-serializes a PerceptronModel instance from a ModelMessage.
virtual ~PerceptronModelProtoReader()
Destroys this reader.
void Add(const string &name, T *member, bool required=false)
Definition: factory.H:225
De-serializer for reranker::FeatureVector instances from FeatureVecMessage instances.
A class to de-serialize a Model instance from a ModelMessage instance.
PerceptronModelProtoReader()
Constructs a new instance that can serialize Model instances to ModelMessage protocol buffer messages...
A class to construct a PerceptronModel from a ModelMessage instance.
Interface for de-serializer for reranker::Model instances from ModelMessage instances.
A class to de-serialize FeatureVector instances from FeatureVecMessage instances. ...
A container for all the member initializers for a particular Factory-constructible instance...
Definition: factory.H:203