Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed to work with newer version of scikit-learn #219

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ def finalize_options(self):
install_requires=[
"lxml>=2.3.3",
"regex>=1",
"numpy",
"scipy",
"scikit-learn==0.16.1", # pickled versions of classifier, else rebuild
"numpy>=1.20.1",
"scikit-learn==0.24.1",
"scipy==1.6.2",
'chardet>=1.0.1',
'cchardet>=0.3.5',
'cssselect',
Expand Down
Binary file modified talon/signature/data/classifier
Binary file not shown.
2 changes: 1 addition & 1 deletion talon/signature/learning/classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
from __future__ import absolute_import

from numpy import genfromtxt
from sklearn.externals import joblib
from sklearn.svm import LinearSVC
import joblib


def init():
Expand Down