packages feed

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 view
@@ -3,7 +3,7 @@ [![Build Status](https://travis-ci.org/Alexander-Ignatyev/mltool.svg?branch=master)](https://travis-ci.org/Alexander-Ignatyev/mltool) [![Coverage Status](https://coveralls.io/repos/github/Alexander-Ignatyev/mltool/badge.svg)](https://coveralls.io/github/Alexander-Ignatyev/mltool) [![Documentation](https://img.shields.io/badge/mltool-documentation-blue.svg)](https://alexander-ignatyev.github.io/mltool-docs/doc/index.html)-[![Hackage](https://img.shields.io/hackage/v/mltool.svg)](https://hackage.haskell.org/package/mltool) +[![Hackage](https://img.shields.io/hackage/v/mltool.svg)](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