Updated README, better deploy info in project.clj.

This commit is contained in:
Joshua Eckroth 2013-03-22 08:01:30 -04:00
parent ed3bf1d71d
commit 711e802d69
2 changed files with 7 additions and 3 deletions

View file

@ -16,16 +16,16 @@ git clone the project, then run:
### Installing from Clojars
[org.clojars.bmabey/clj-ml "0.2.4"]
[cc.artifice/clj-ml "0.3.0"]
### Installing from Maven
(add Clojars repository)
<dependency>
<groupId>clj-ml</groupId>
<groupId>cc.artifice</groupId>
<artifactId>clj-ml</artifactId>
<version>0.2.4</version>
<version>0.3.0</version>
</dependency>
## Supported algorithms
@ -35,6 +35,7 @@ git clone the project, then run:
* unsupervised discretize
* supervised nominal to binary
* unsupervised nominal to binary
* string to word vector
* Classifiers
* C4.5 (J4.8)

View file

@ -2,6 +2,9 @@
:description "Machine Learning library for Clojure built around Weka and friends"
:java-source-paths ["src/java"]
:warn-on-reflection true
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"}
:url "https://github.com/joshuaeckroth/clj-ml"
:dependencies [[org.clojure/clojure "1.4.0"]
[incanter/incanter-core "1.4.1"]
[incanter/incanter-charts "1.4.1"]