summaryrefslogtreecommitdiff
path: root/dtrain/test/log_reg_dyer/bin_class.h
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2011-11-21 12:21:08 +0100
committerPatrick Simianer <p@simianer.de>2011-11-21 12:21:08 +0100
commit574e2336348e5d3960b3232209d01845b40e6ea8 (patch)
tree958921d46db445acf3506a8f5620429682a4362a /dtrain/test/log_reg_dyer/bin_class.h
parent868d01c156914faaf85335c86374cc8f47a61b96 (diff)
added pro stuff,clean up
Diffstat (limited to 'dtrain/test/log_reg_dyer/bin_class.h')
-rw-r--r--dtrain/test/log_reg_dyer/bin_class.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/dtrain/test/log_reg_dyer/bin_class.h b/dtrain/test/log_reg_dyer/bin_class.h
deleted file mode 100644
index 3466109a..00000000
--- a/dtrain/test/log_reg_dyer/bin_class.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef _BIN_CLASS_H_
-#define _BIN_CLASS_H_
-
-#include <vector>
-#include "sparse_vector.h"
-
-struct TrainingInstance {
- // TODO add other info? loss for MIRA-type updates?
- SparseVector<double> x_feature_map;
- bool y;
-};
-
-struct Objective {
- virtual ~Objective();
-
- // returns f(x) and f'(x)
- virtual double ObjectiveAndGradient(const SparseVector<double>& x,
- const std::vector<TrainingInstance>& training_instances,
- SparseVector<double>* g) const = 0;
-};
-
-#endif