summaryrefslogtreecommitdiff
path: root/dtrain/test/logreg/log_reg.h
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2011-09-24 23:46:49 +0200
committerPatrick Simianer <p@simianer.de>2011-09-24 23:46:49 +0200
commit5e1ab3481551607f1c2a10027049044cd41f78ab (patch)
treeb89cc3587f2e5d34f14f4b977f8a0909f62fe8e1 /dtrain/test/logreg/log_reg.h
parent5584f300821e20369c25343222cd0e8faa393523 (diff)
cleaning up
Diffstat (limited to 'dtrain/test/logreg/log_reg.h')
-rw-r--r--dtrain/test/logreg/log_reg.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/dtrain/test/logreg/log_reg.h b/dtrain/test/logreg/log_reg.h
new file mode 100644
index 00000000..ecc560b8
--- /dev/null
+++ b/dtrain/test/logreg/log_reg.h
@@ -0,0 +1,14 @@
+#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