Skip to content
This repository has been archived by the owner on May 3, 2023. It is now read-only.

Commit

Permalink
version bump to 0.10.0
Browse files Browse the repository at this point in the history
update version history
update install instructions/pip
  • Loading branch information
internaut committed Aug 3, 2020
1 parent 00adcf3 commit fada4d5
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 33 deletions.
Binary file modified doc/source/data/news_articles_100.xlsx
Binary file not shown.
10 changes: 5 additions & 5 deletions doc/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,19 @@ the preferred package for topic modeling:
.. code-block:: text
# recommended installation without topic modeling
pip install -U 'tmtoolkit[recommended]'
pip install -U "tmtoolkit[recommended]"
# recommended installation with "lda" for topic modeling
pip install -U 'tmtoolkit[recommended,lda]'
pip install -U "tmtoolkit[recommended,lda]"
# recommended installation with "scikit-learn" for topic modeling
pip install -U 'tmtoolkit[recommended,sklearn]'
pip install -U "tmtoolkit[recommended,sklearn]"
# recommended installation with "gensim" for topic modeling
pip install -U 'tmtoolkit[recommended,gensim]'
pip install -U "tmtoolkit[recommended,gensim]"
# you may also select several topic modeling packages
pip install -U 'tmtoolkit[recommended,lda,sklearn,gensim]'
pip install -U "tmtoolkit[recommended,lda,sklearn,gensim]"
For the minimal installation, you can just do:

Expand Down
6 changes: 3 additions & 3 deletions doc/source/preprocessing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@
{
"data": {
"text/plain": [
"(139631948710816, 139633148876880)"
"(140426331677504, 140426727032000)"
]
},
"execution_count": 27,
Expand Down Expand Up @@ -1597,8 +1597,8 @@
" ['instructed', 'White', 'House', 'aides', 'to'],\n",
" ['The', 'White', 'House', 'is', 'simply'],\n",
" ['the', 'White', 'House', 'and', 'law']],\n",
" 'NewsArticles-99': [['of', 'the', 'house', ',', '\"']],\n",
" 'NewsArticles-3350': []}"
" 'NewsArticles-3350': [],\n",
" 'NewsArticles-99': [['of', 'the', 'house', ',', '\"']]}"
]
},
"execution_count": 46,
Expand Down
44 changes: 22 additions & 22 deletions doc/source/topic_modeling.ipynb

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion doc/source/version_history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Version history
===============


0.10.0 - 2020-07-31
0.10.0 - 2020-08-03
-------------------

This release marks a switch from NLTK to `SpaCy <https://spacy.io/>`_ for text preprocessing tasks. With this change,
Expand All @@ -19,6 +19,7 @@ Further changes:
* added ``ldamodel_top_word_topics`` and ``ldamodel_top_topic_docs`` functions
* added new filter functions and options for ``TMPreproc``
* made stemming function optional (only available when NLTK is installed)
* run DTM generation in parallel
* updated dependencies
* restructured tests

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from setuptools import setup, find_packages

__title__ = 'tmtoolkit'
__version__ = '0.10.0.rc1'
__version__ = '0.10.0'
__author__ = 'Markus Konrad'
__license__ = 'Apache License 2.0'

Expand Down
2 changes: 1 addition & 1 deletion tmtoolkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@


__title__ = 'tmtoolkit'
__version__ = '0.10.0.rc1'
__version__ = '0.10.0'
__author__ = 'Markus Konrad'
__license__ = 'Apache License 2.0'

0 comments on commit fada4d5

Please sign in to comment.