Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinkjt2000/haskell-id3-random-forest
Some Haskell machine learning that I wrote in college
https://github.com/kevinkjt2000/haskell-id3-random-forest
Last synced: 6 days ago
JSON representation
Some Haskell machine learning that I wrote in college
- Host: GitHub
- URL: https://github.com/kevinkjt2000/haskell-id3-random-forest
- Owner: kevinkjt2000
- License: mit
- Created: 2015-05-17T04:09:08.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-21T05:24:00.000Z (over 6 years ago)
- Last Synced: 2024-03-19T17:32:42.210Z (8 months ago)
- Language: Haskell
- Homepage:
- Size: 56.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
CSC 6230 - Machine Learning
Program 1 - Random Forest
Author - Kevin TindallThis project relies on Haskell. The simplest way of installing Haskell,
is downloading the Haskell Platform from https://www.haskell.org/platform/Once Haskell is installed, there are some extra libraries that must be installed.
The following command should download and install the necessary extra libraries:
cabal update && cabal install HTF pretty-tree random-shuffleThe Haskell compiler might say that htfpp could not be located.
This is because cabal does not add its bin directory to PATH by default.
Simply add the correct folder to your system's PATH.
Linux: ~/.cabal/bin
Mac OSX: ~/Library/Haskell/bin
Windows: %APPDATA%\cabal\binTo compile and run a normal build on Linux and Mac OSX:
cabal configure && cabal build
dist/build/random_forest/random_forestTo compile and run a normal build on Windows:
cabal configure && cabal build
dist\build\random_forest\random_forest.exeTo compile and run a test build:
cabal configure --enable-tests && cabal build && cabal test