diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/classifier.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/classifier.py b/bin/classifier.py index 044c6ca..1e27758 100755 --- a/bin/classifier.py +++ b/bin/classifier.py @@ -6,6 +6,9 @@ from sklearn.feature_extraction.text import CountVectorizer from sklearn.preprocessing import StandardScaler from sklearn.externals import joblib import cgi, cgitb +import warnings + +warnings.simplefilter("ignore", UserWarning) #----------------------------------------------\ # Parse the web-form information to variables \ |