Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Langford <jl@nyclamp.(none)>2014-05-05 17:04:23 +0400
committerJohn Langford <jl@nyclamp.(none)>2014-05-05 17:04:23 +0400
commit86f91f745d8016a90cab4d685fe9e89e7c9f4306 (patch)
tree5f2015f37eea8735bf11a356ed7d86e0630cb055 /vowpalwabbit/searn_sequencetask.h
parent4b431bf74f7d7c1233deb0546b8ac18ad18666ce (diff)
removed vm_file
Diffstat (limited to 'vowpalwabbit/searn_sequencetask.h')
-rw-r--r--vowpalwabbit/searn_sequencetask.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/vowpalwabbit/searn_sequencetask.h b/vowpalwabbit/searn_sequencetask.h
index e7a8a703..5e1770a1 100644
--- a/vowpalwabbit/searn_sequencetask.h
+++ b/vowpalwabbit/searn_sequencetask.h
@@ -9,28 +9,28 @@ license as described in the file LICENSE.
#include "searn.h"
namespace SequenceTask {
- void initialize(Searn::searn&, size_t&, std::vector<std::string>&, po::variables_map&, po::variables_map&);
+ void initialize(Searn::searn&, size_t&, std::vector<std::string>&, po::variables_map&);
void finish(Searn::searn&);
void structured_predict(Searn::searn&, vector<example*>);
extern Searn::searn_task task;
}
namespace ArgmaxTask {
- void initialize(Searn::searn&, size_t&, std::vector<std::string>&, po::variables_map&, po::variables_map&);
+ void initialize(Searn::searn&, size_t&, std::vector<std::string>&, po::variables_map&);
void finish(Searn::searn&);
void structured_predict(Searn::searn&, vector<example*>);
extern Searn::searn_task task;
}
namespace SequenceSpanTask {
- void initialize(Searn::searn&, size_t&, std::vector<std::string>&, po::variables_map&, po::variables_map&);
+ void initialize(Searn::searn&, size_t&, std::vector<std::string>&, po::variables_map&);
void finish(Searn::searn&);
void structured_predict(Searn::searn&, vector<example*>);
extern Searn::searn_task task;
}
namespace SequenceTask_DemoLDF {
- void initialize(Searn::searn&, size_t&, std::vector<std::string>&, po::variables_map&, po::variables_map&);
+ void initialize(Searn::searn&, size_t&, std::vector<std::string>&, po::variables_map&);
void finish(Searn::searn&);
void structured_predict(Searn::searn&, vector<example*>);
void update_example_indicies(bool audit, example* ec, uint32_t mult_amount, uint32_t plus_amount);