Skip to content

Commit

Permalink
releases v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bmabey committed Apr 11, 2011
1 parent 7357a72 commit 38a3c94
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
12 changes: 11 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
# clj-ml History

## v0.0.5 - ????-??-??
## v0.1.0 - 2011-04-11

### New Features
* New filter wrappers added: `RemoveUseless` as `:remove-useless`, `Add` as `:add-attribute`
* New classifier wrappers added: `PaceRegression`, `RandomForest`, M5P Trees and boosted stumps (`LogitBoost`), `AdditiveRegression`, Gradient Boosted Decision Trees, `RotationForest`, `SPegasos`
* Increased the number of options that can be specified for classifiers.
* Adds `:clj-streamable` and `:clj-batch` filters which allow for custom
functions to be provided for filtering the dataset.
* More idiomatic way and using/applying filters that allows threading.
* Attribute names can now be specified in the filters and other accessor functions instead of requiring the columns index.
* New utility functions: `into-fast-vec, dataset-replace-attribute, dataset-class-values, dataset-nominal?, make-apply-filters, classifer-copy-and-train, keyword-name, headers-only, dataset-class-name, attribute-labels-as-strings, dataset-name`
* Speed improvement in `dataset-as-maps`

### Bug Fixes
* `is-dataset?` reports falses correctly now.
* A large ammount of type hinting was added to many areas where it was slowing down real use-cases.
* Loading and saving instances functions now work with streams (not just files or file names).
* `nil` values are allowed in datasets (represented as `NaN`s in weka)


## v0.0.4 - 2010-10-28

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ git clone the project, then run:

### Installing from Clojars

[org.clojars.bmabey/clj-ml "0.0.4"]
[org.clojars.bmabey/clj-ml "0.1.0"]

### Installing from Maven

Expand All @@ -25,7 +25,7 @@ git clone the project, then run:
<dependency>
<groupId>clj-ml</groupId>
<artifactId>clj-ml</artifactId>
<version>0.0.3-SNAPSHOT</version>
<version>0.1.0</version>
</dependency>

## Supported algorithms
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.leadtune/clj-ml "0.0.5-SNAPSHOT"
(defproject org.clojars.bmabey/clj-ml "0.1.0"
:description "Machine Learning library for Clojure built around Weka and friends"
:repositories {"leadtune-repo" "http://c0026236.cdn1.cloudfiles.rackspacecloud.com/repo"}
:java-source-path "src/java"
Expand Down

0 comments on commit 38a3c94

Please sign in to comment.