Skip to content

Commit

Permalink
Update Change log and setup.py for release 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasHug committed Jan 9, 2018
1 parent 8bc21cf commit 9e96cda
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@
VERSION 1.0.5 (latest, in development)
======================================
Latest version, in development
==============================

* A lot to do here!

VERSION 1.0.5
=============

Enhancements
------------

* Cross-validation tools have been entirely reworked. We can now rely on
powerful and flexible cross-validation iterators, inspired by scikit-learn's
API.
* the evaluate() method has been replaced by cross-validate which is parallel.
* the evaluate() method has been replaced by cross-validate which is parallel
and can return measures on trainset as well as computation times.
* GridSearch is now parallel, using joblib.
* GridSearch now allows to refit an algorithm on the whole dataset.
* default data directory can now be custom with env variable
SURPRISE_DATA_FOLDER
* the fit() (and train()) methods now return self, which allows one-liners like
algo.fit(trainset).test(testset)
* Algorithms using a random initialization (e.g. SVD, NMF, CoClustering) now
have a random_state parameter for seeding the RNG.
* The getting started guide has been rewritten

API Changes
-----------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
else:
USE_CYTHON = True

__version__ = 'latest'
__version__ = '1.0.5'

here = path.abspath(path.dirname(__file__))

Expand Down

0 comments on commit 9e96cda

Please sign in to comment.