fix minor erros in doc

This commit is contained in:
Antonio Garrote 2010-02-28 13:38:18 +01:00
parent f247274dec
commit 4b6e1b912b
2 changed files with 3 additions and 4 deletions

5
README
View file

@ -6,9 +6,8 @@ A machine learning library for Clojure built on top of Weka and friends
* I/O of data
Loading data from a CSV file:
REPL>(use 'clj-ml.io)
REPL>; Loading data from a CSV file:
REPL>(use 'clj-ml.io)
REPL>; Loading data from an ARFF file, XRFF and CSV are also supported
REPL>(def ds (load-instances :arff "file:///Applications/weka-3-6-2/data/iris.arff"))

View file

@ -1,5 +1,5 @@
(defproject clj-ml "0.0.3-SNAPSHOT"
:description "Machine Learning library for Clojure"
:description "Machine Learning library for Clojure built around Weka and friends"
:java-source-path "src/java"
:javac-fork "true"
:dependencies [[org.clojure/clojure "1.1.0"]