Skip to content

Commit

Permalink
Merge branch 'release-0.8.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
piskvorky committed Sep 18, 2013
2 parents b6f020a + 9211df2 commit 578a174
Show file tree
Hide file tree
Showing 204 changed files with 2,655 additions and 19,165 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,6 @@ gensim.egg-info
.*.sw[op]
data
*.bak
/build/
/dist/

18 changes: 18 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
Changes
=======

0.8.7

* initial version of word2vec, a neural network deep learning algo
* make distributed gensim compatible with the new Pyro
* allow merging dictionaries (by Florent Chandelier)
* new design for the gensim website!
* speed up handling of corner cases when returning top-n most similar
* make Random Projections compatible with new scipy (andrewjOc360, PR #110)
* allow "light" (faster) word lemmatization (by Karsten Jeschkies)
* save/load directly from bzip2 files (by Luis Pedro Coelho, PR #101)
* Blei corpus now tries harder to find its vocabulary file (by Luis Pedro Coelho, PR #100)
* sparse vector elements can now be a list (was: only a 2-tuple)
* simple_preprocess now optionally de-accents letters (ř/š/ú etc.)
* better serialization of numpy corpora
* print_topics() returns the topics, in addition to printing/logging
* fixes for more robust Windows multiprocessing
* lots of small fixes, data checks and documentation updates

0.8.6

* added HashDictionary (by Homer Strong)
Expand Down
5 changes: 3 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ gensim -- Python Framework for Topic Modelling
==============================================



Gensim is a Python library for *topic modelling*, *document indexing* and *similarity retrieval* with large corpora.
Target audience is the *natural language processing* (NLP) and *information retrieval* (IR) community.

Expand Down Expand Up @@ -33,6 +32,8 @@ Installation
This software depends on `NumPy and Scipy <http://www.scipy.org/Download>`_, two Python packages for scientific computing.
You must have them installed prior to installing `gensim`.

It is also recommended you install a fast BLAS library prior to installing NumPy. This is optional, but using an optimized BLAS such as `ATLAS <http://math-atlas.sourceforge.net/>`_ or `OpenBLAS <http://xianyi.github.io/OpenBLAS/>`_ is known to improve performance by as much as an order of magnitude.

The simple way to install `gensim` is::

sudo easy_install gensim
Expand Down Expand Up @@ -60,4 +61,4 @@ It is also included in the source distribution package.

Gensim is open source software, and has been released under the
`GNU LGPL license <http://www.gnu.org/licenses/lgpl.html>`_.
Copyright (c) 2009-2012 Radim Rehurek
Copyright (c) 2009-2013 Radim Rehurek
87 changes: 0 additions & 87 deletions docs/_sources/about.txt

This file was deleted.

36 changes: 0 additions & 36 deletions docs/_sources/apiref.txt

This file was deleted.

80 changes: 0 additions & 80 deletions docs/_sources/changes_080.txt

This file was deleted.

8 changes: 0 additions & 8 deletions docs/_sources/corpora/bleicorpus.txt

This file was deleted.

8 changes: 0 additions & 8 deletions docs/_sources/corpora/corpora.txt

This file was deleted.

8 changes: 0 additions & 8 deletions docs/_sources/corpora/dictionary.txt

This file was deleted.

8 changes: 0 additions & 8 deletions docs/_sources/corpora/dmlcorpus.txt

This file was deleted.

12 changes: 0 additions & 12 deletions docs/_sources/corpora/indexedcorpus.txt

This file was deleted.

8 changes: 0 additions & 8 deletions docs/_sources/corpora/lowcorpus.txt

This file was deleted.

8 changes: 0 additions & 8 deletions docs/_sources/corpora/mmcorpus.txt

This file was deleted.

8 changes: 0 additions & 8 deletions docs/_sources/corpora/svmlightcorpus.txt

This file was deleted.

8 changes: 0 additions & 8 deletions docs/_sources/corpora/textcorpus.txt

This file was deleted.

8 changes: 0 additions & 8 deletions docs/_sources/corpora/ucicorpus.txt

This file was deleted.

8 changes: 0 additions & 8 deletions docs/_sources/corpora/wikicorpus.txt

This file was deleted.

Loading

0 comments on commit 578a174

Please sign in to comment.