├── README.MD ├── cutdata.py ├── data ├── data.txt └── trained.txt ├── model └── classify.model ├── test.py └── train.py /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountainguan/fastText_learning/HEAD/README.MD -------------------------------------------------------------------------------- /cutdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountainguan/fastText_learning/HEAD/cutdata.py -------------------------------------------------------------------------------- /data/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountainguan/fastText_learning/HEAD/data/data.txt -------------------------------------------------------------------------------- /data/trained.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountainguan/fastText_learning/HEAD/data/trained.txt -------------------------------------------------------------------------------- /model/classify.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountainguan/fastText_learning/HEAD/model/classify.model -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountainguan/fastText_learning/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountainguan/fastText_learning/HEAD/train.py --------------------------------------------------------------------------------