Skip to content

Commit 0a18996

Browse files
committed
Merge branch 'evaluation-successes' of https://github.com/blakeandrewwood/rasa_nlu into pr/1559
2 parents ee56e0f + 89588d3 commit 0a18996

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Changed
2828
- replaced ``yaml`` with ``ruamel.yaml``
2929
- updated spacy version to 2.0.18
3030
- updated TensorFlow version to 1.12.0
31+
- updated scikit-learn version to 0.20.2
3132

3233
Removed
3334
-------
@@ -46,6 +47,7 @@ Fixed
4647
- Updated CORS support for the server.
4748
Added the ``Access-Control-Allow-Headers`` and ``Content-Type`` headers for nlu server
4849
- parsing of emojis which are sent within jsons
50+
- Bad input shape error from ``sklearn_intent_classifier`` when using ``scikit-learn==0.20.2``
4951

5052
[0.13.8] - 2018-11-21
5153
^^^^^^^^^^^^^^^^^^^^^

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@
4444

4545
extras_requires = {
4646
'test': tests_requires,
47-
'spacy': ["scikit-learn<0.20",
47+
'spacy': ["scikit-learn~=0.20.2",
4848
"sklearn-crfsuite~=0.3.6",
4949
"scipy~=1.1",
5050
"spacy<=2.0.18,>2.0",
5151
],
52-
'tensorflow': ["scikit-learn<0.20",
52+
'tensorflow': ["scikit-learn~=0.20.2",
5353
"sklearn-crfsuite~=0.3.6",
5454
"scipy~=1.1",
5555
"tensorflow~=1.12"

0 commit comments

Comments
 (0)