summaryrefslogtreecommitdiff
path: root/dtrain/test/logreg/log_reg.h
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2011-09-25 20:23:09 +0200
committerPatrick Simianer <p@simianer.de>2011-09-25 20:23:09 +0200
commit43e7ecdca09f4125346f64d45e44f440ac964421 (patch)
treea6f7bb33d1c2b2c55118286ef59ec37beba3dab6 /dtrain/test/logreg/log_reg.h
parent521e8c49ad529f17f63eca1726ba8e2f564ac290 (diff)
removed some quirks, less boost, prettier code, score_t
Diffstat (limited to 'dtrain/test/logreg/log_reg.h')
-rw-r--r--dtrain/test/logreg/log_reg.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/dtrain/test/logreg/log_reg.h b/dtrain/test/logreg/log_reg.h
deleted file mode 100644
index ecc560b8..00000000
--- a/dtrain/test/logreg/log_reg.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef _LOG_REG_H_
-#define _LOG_REG_H_
-
-#include <vector>
-#include "sparse_vector.h"
-#include "bin_class.h"
-
-struct LogisticRegression : public Objective {
- double ObjectiveAndGradient(const SparseVector<double>& x,
- const std::vector<TrainingInstance>& training_instances,
- SparseVector<double>* g) const;
-};
-
-#endif