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-06 02:52:57 +0400
committerJohn Langford <jl@nyclamp.(none)>2014-05-06 02:52:57 +0400
commitb0c103a779c3ab2d48f70864f3735e557bc07b0c (patch)
treedb85b0d85b5b26e8acb6862816c7f49745051164 /vowpalwabbit/searn_sequencetask.h
parent86f91f745d8016a90cab4d685fe9e89e7c9f4306 (diff)
recursive option traversal and discovery
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 5e1770a1..92621e68 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&);
+ void initialize(Searn::searn&, size_t&, 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&);
+ void initialize(Searn::searn&, size_t&, 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&);
+ void initialize(Searn::searn&, size_t&, 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&);
+ void initialize(Searn::searn&, size_t&, 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);