summaryrefslogtreecommitdiff
path: root/dtrain/test/log_reg_dyer/log_reg.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
commita0a109329c942ddc956205cc66ccac872fb8f222 (patch)
tree2788f8f14afb951bcb80538947459d676cc298bc /dtrain/test/log_reg_dyer/log_reg.h
parent1ce8f44fe74cb6fb9223c4a2a4050019fed3be49 (diff)
added pro stuff,clean up
Diffstat (limited to 'dtrain/test/log_reg_dyer/log_reg.h')
-rw-r--r--dtrain/test/log_reg_dyer/log_reg.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/dtrain/test/log_reg_dyer/log_reg.h b/dtrain/test/log_reg_dyer/log_reg.h
deleted file mode 100644
index ecc560b8..00000000
--- a/dtrain/test/log_reg_dyer/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