mltool 0.1.0.1 → 0.1.0.2
raw patch · 2 files changed
+12/−12 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +10/−10
- mltool.cabal +2/−2
README.md view
@@ -3,7 +3,7 @@ [](https://travis-ci.org/Alexander-Ignatyev/mltool) [](https://coveralls.io/github/Alexander-Ignatyev/mltool) [](https://alexander-ignatyev.github.io/mltool-docs/doc/index.html)-[](https://hackage.haskell.org/package/mltool) +[](https://hackage.haskell.org/package/mltool) ### Supported Methods and Problems @@ -43,12 +43,12 @@ stack build -#### Run samples app+#### Run examples app Please run sample app from root dir (because paths to training data sets are hardcoded). ```bash-cd samples+cd examples stack build stack exec linreg # Linear Regression Sample App stack exec logreg # Logistic Regression (Classification) Sample App@@ -68,16 +68,16 @@ ### Examples -* Linear Regression: [source code](https://github.com/Alexander-Ignatyev/mltool/blob/master/samples/linear_regression/Main.hs);+* Linear Regression: [source code](https://github.com/Alexander-Ignatyev/mltool/blob/master/examples/linear_regression/Main.hs); -* Logistic Regression: [source code](https://github.com/Alexander-Ignatyev/mltool/blob/master/samples/logistic_regression/Main.hs);+* Logistic Regression: [source code](https://github.com/Alexander-Ignatyev/mltool/blob/master/examples/logistic_regression/Main.hs); -* Multiclass Logistic Regression: [source code](https://github.com/Alexander-Ignatyev/mltool/blob/master/samples/digits_classification/Main.hs);+* Multiclass Logistic Regression: [source code](https://github.com/Alexander-Ignatyev/mltool/blob/master/examples/digits_classification/Main.hs); -* Multiclass Logistic Regression with PCA: [source code](https://github.com/Alexander-Ignatyev/mltool/blob/master/samples/digits_classification_pca/Main.hs);+* Multiclass Logistic Regression with PCA: [source code](https://github.com/Alexander-Ignatyev/mltool/blob/master/examples/digits_classification_pca/Main.hs); -* Multiclass Support Vector Machine: [source code](https://github.com/Alexander-Ignatyev/mltool/blob/master/samples/digits_classification_svm/Main.hs);+* Multiclass Support Vector Machine: [source code](https://github.com/Alexander-Ignatyev/mltool/blob/master/examples/digits_classification_svm/Main.hs); -* Neural Networks: [source code](https://github.com/Alexander-Ignatyev/mltool/blob/master/samples/neural_networks/Main.hs);+* Neural Networks: [source code](https://github.com/Alexander-Ignatyev/mltool/blob/master/examples/neural_networks/Main.hs); -* K-Means: [source code](https://github.com/Alexander-Ignatyev/mltool/blob/master/samples/kmeans/Main.hs).+* K-Means: [source code](https://github.com/Alexander-Ignatyev/mltool/blob/master/examples/kmeans/Main.hs).
mltool.cabal view
@@ -1,5 +1,5 @@ name: mltool-version: 0.1.0.1+version: 0.1.0.2 synopsis: Machine Learning Toolbox description: Haskell Machine Learning Toolkit@@ -12,7 +12,7 @@ license-file: LICENSE author: Alexander Ignatyev maintainer: ignatyev.alexander@gmail.com-copyright: Alexander Ignatyev+copyright: (c) 2016-2017 Alexander Ignatyev category: math build-type: Simple extra-source-files: README.md