gitextract_y8xnqj4p/ ├── .gitignore ├── classifier/ │ ├── LogisticRegression.py │ ├── NaiveBayesian.py │ ├── Perceptron.py │ └── __init__.py ├── data/ │ ├── 不带标签短信.txt │ └── 带标签短信.txt ├── judgeSpamMessage.py ├── model/ │ ├── Bayes_sklearn.pkl │ ├── LogisticRegression.pkl │ ├── Logistic_sklearn.pkl │ ├── NaiveBayesian.pkl │ ├── Perceptron.pkl │ ├── SVM_sklearn.pkl │ ├── __init__.py │ └── vsm.pkl ├── model_manage.py ├── readme.md ├── test.py ├── test_jieba.py ├── test_judge.py ├── test_judge2.py └── token_and_save_to_file.py