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)>2013-01-14 22:32:22 +0400
committerJohn Langford <jl@nyclamp.(none)>2013-01-14 22:32:22 +0400
commitcce2673ffc1e63e7e79f8d083503c94a53114221 (patch)
tree9df0d1c8b25b46a5e10395952990191a6e3185a1 /vowpalwabbit/lda_core.h
parentcc9d17724bc595f4cdc1a5c7e4b75f04f5c75f75 (diff)
made save/load modular
Diffstat (limited to 'vowpalwabbit/lda_core.h')
-rw-r--r--vowpalwabbit/lda_core.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/vowpalwabbit/lda_core.h b/vowpalwabbit/lda_core.h
index e6e3371c..3b083143 100644
--- a/vowpalwabbit/lda_core.h
+++ b/vowpalwabbit/lda_core.h
@@ -6,7 +6,10 @@ license as described in the file LICENSE.
#ifndef LDA_CORE_H
#define LDA_CORE_H
+namespace LDA{
void drive_lda(void*);
+void save_load(void* in, io_buf& model_file, bool read, bool text);
void lda_parse_flags(vw&, std::vector<std::string>&, po::variables_map&);
+}
#endif