summaryrefslogtreecommitdiff
path: root/creg/README
diff options
context:
space:
mode:
authorPatrick Simianer <simianer@cl.uni-heidelberg.de>2012-05-31 13:57:24 +0200
committerPatrick Simianer <simianer@cl.uni-heidelberg.de>2012-05-31 13:57:24 +0200
commitf1ba05780db1705493d9afb562332498b93d26f1 (patch)
treefb429a657ba97f33e8140742de9bc74d9fc88e75 /creg/README
parentaadabfdf37dfd451485277cb77fad02f77b361c6 (diff)
parent317d650f6cb1e24ac6f3be6f7bf9d4246a59e0e5 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'creg/README')
-rw-r--r--creg/README17
1 files changed, 0 insertions, 17 deletions
diff --git a/creg/README b/creg/README
deleted file mode 100644
index 28a71d11..00000000
--- a/creg/README
+++ /dev/null
@@ -1,17 +0,0 @@
-creg is a fast tool for training linear and logistic regression models with
-l_1 and l_2 regularization. Its data (feature and response) format is
-compatible with ARKRegression.
-
-EXAMPLES
-
-Logistic regression example (training only):
- $ ./creg -x test_data/iris.trainfeat -y test_data/iris.trainresp --l1 1.0 > weights.txt
-
-Logistic regression example (training and testing):
- $ ./creg -x test_data/iris.trainfeat -y test_data/iris.trainresp --l1 1.0 \
- -t test_data/iris.testfeat -s test_data/iris.testresp > weights.txt
-
-Linear regression example (training and testing):
- $ ./creg -n -x test_data/auto-mpg.trainfeat -y test_data/auto-mpg.trainresp --l2 1000 \
- -t test_data/auto-mpg.testfeat -s test_data/auto-mpg.testresp > weights.txt
-