blob: 2c04c83b2c52f3b99dbc9d34e591f2d883881401 (
plain)
1
2
3
4
5
6
7
|
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.
Example invokation:
$ ./creg -x test_data/iris.trainfeat -y test_data/iris.trainresp --l2 100
|