Skip to content

Commit

Permalink
Changelog for version 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasHug committed May 3, 2017
1 parent 4862135 commit 645f67d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
18 changes: 15 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,30 @@
Current
=======

VERSION 1.0.3
=============

Date: 03/05/17

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

* Added FAQ in the doc
* Added the possibility to retrieve the k nearest neighbors of a user or an
item.
* Changed the dumping process a bit (see API changes). Plus, dumps can now be
loaded.
* Added possibility to get accuracy performances on the trainset
* Added possibility to build a testset from the ratings of a training set
* Added inner-to-raw id conversion in the Trainset class
* The r_ui parameter of the predict() method is now optional

Fixes
-----
* Fixed verbosity of the evaluate function
* Corrected prediction when only user (or only item) is unknown in SVD and NMF
algorithms. Thanks to kenoung.
algorithms. Thanks to kenoung!
* Corrected factor vectors initialization of SVD algorithms. Thanks to
adideshp.
adideshp!

API Changes
-----------
Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
from codecs import open
from os import path

# sum up:
# mktmpenv (Python version should not matter)
# pip install numpy cython pypandoc
# python setup.py sdist
# twine upload dist/blabla.tar.gz [-r testpypi]

try:
import numpy as np
except ImportError:
Expand All @@ -15,7 +21,7 @@
else:
USE_CYTHON = True

__version__ = '1.0.2'
__version__ = '1.0.3'

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

Expand Down

0 comments on commit 645f67d

Please sign in to comment.