Skip to content
This repository has been archived by the owner on Jul 24, 2020. It is now read-only.

Commit

Permalink
BLD: Prepare a new release
Browse files Browse the repository at this point in the history
This will be v.0.3.6
  • Loading branch information
Luis Pedro Coelho committed Dec 17, 2010
1 parent bdcc433 commit 6196a29
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 4 deletions.
3 changes: 2 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Version 0.3.5+
Version 0.3.6 2010-12-17 luispedro
* Unsupervised (1-class) kernel density modeling
* Fix for when SDA returns empty
* weights option to some learners
* stump learner
Expand Down
16 changes: 15 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,19 @@ There is a strong emphasis on speed and low memory usage. Therefore, most of
the performance sensitive code is in C++. This is behind Python-based
interfaces for convenience.

New in 0.3.5
------------
- Unsupervised (1-class) kernel density modeling
- Fix for when SDA returns empty
- weights option to some learners
- stump learner
- Adaboost (result of above changes)

New in 0.3.5
------------
- Fixes for 64 bit machines
- Functions in measures.py all have same interface now.

New in 0.3.4
------------
- Random forest learners
Expand All @@ -40,5 +53,6 @@ Features

License: MIT
Author: Luis Pedro Coelho (with code from LibSVM and scikits.learn)
Website: http://luispedro.org/software/milk
Website: `http://luispedro.org/software/milk
<http://luispedro.org/software/milk>`__
API Documentation: `http://packages.python.org/milk/ <http://packages.python.org/milk/>`_
26 changes: 25 additions & 1 deletion docs/source/readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ MILK: MACHINE LEARNING TOOLKIT
==============================
Machine Learning in Python
--------------------------

Milk is a machine learning toolkit in Python.

Its focus is on supervised classification with several classifiers available:
Expand All @@ -21,14 +22,37 @@ There is a strong emphasis on speed and low memory usage. Therefore, most of
the performance sensitive code is in C++. This is behind Python-based
interfaces for convenience.

New in 0.3.5
------------
- Unsupervised (1-class) kernel density modeling
- Fix for when SDA returns empty
- weights option to some learners
- stump learner
- Adaboost (result of above changes)

New in 0.3.5
------------
- Fixes for 64 bit machines
- Functions in measures.py all have same interface now.

New in 0.3.4
------------
- Random forest learners
- Decision trees sped up 20x
- Much faster gridsearch (finds optimum without computing all folds)

Features
--------
- Random forests
- Self organising maps
- SVMs. Using the libsvm solver with a pythonesque wrapper around it.
- Stepwise Discriminant Analysis for feature selection.
- Non-negative matrix factorisation
- K-means using as little memory as possible.
- Affinity propagation

License: MIT
Author: Luis Pedro Coelho (with code from LibSVM)
Author: Luis Pedro Coelho (with code from LibSVM and scikits.learn)
Website: `http://luispedro.org/software/milk
<http://luispedro.org/software/milk>`__
API Documentation: `http://packages.python.org/milk/ <http://packages.python.org/milk/>`_
2 changes: 1 addition & 1 deletion milk/milk_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.3.5'
__version__ = '0.3.6'

0 comments on commit 6196a29

Please sign in to comment.