├── README.md ├── TC_model ├── fasttext │ ├── data │ │ ├── cnews.test.txt │ │ ├── cnews.vocab.txt │ │ └── test.txt │ ├── data_helper.py │ ├── fast_text.py │ ├── parameters.py │ ├── predict.py │ ├── train.py │ └── vocabs │ │ ├── index_to_label.json │ │ ├── index_to_word.json │ │ ├── label_to_index.json │ │ └── word_to_index.json └── images │ ├── bert_1.jpeg │ ├── bert_1.jpg │ ├── bert_2.jpeg │ ├── dpcnn.jpg │ ├── fasttext.jpg │ ├── han.jpg │ ├── han_2.jpg │ ├── rcnn.jpg │ ├── textcnn.jpg │ └── textrnn.jpg ├── TC_rest ├── Api │ └── utils │ │ └── LogUtils2.py ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── Text_Classification_TF ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py └── manage.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/README.md -------------------------------------------------------------------------------- /TC_model/fasttext/data/cnews.test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/fasttext/data/cnews.test.txt -------------------------------------------------------------------------------- /TC_model/fasttext/data/cnews.vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/fasttext/data/cnews.vocab.txt -------------------------------------------------------------------------------- /TC_model/fasttext/data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/fasttext/data/test.txt -------------------------------------------------------------------------------- /TC_model/fasttext/data_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/fasttext/data_helper.py -------------------------------------------------------------------------------- /TC_model/fasttext/fast_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/fasttext/fast_text.py -------------------------------------------------------------------------------- /TC_model/fasttext/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/fasttext/parameters.py -------------------------------------------------------------------------------- /TC_model/fasttext/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/fasttext/predict.py -------------------------------------------------------------------------------- /TC_model/fasttext/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/fasttext/train.py -------------------------------------------------------------------------------- /TC_model/fasttext/vocabs/index_to_label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/fasttext/vocabs/index_to_label.json -------------------------------------------------------------------------------- /TC_model/fasttext/vocabs/index_to_word.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/fasttext/vocabs/index_to_word.json -------------------------------------------------------------------------------- /TC_model/fasttext/vocabs/label_to_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/fasttext/vocabs/label_to_index.json -------------------------------------------------------------------------------- /TC_model/fasttext/vocabs/word_to_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/fasttext/vocabs/word_to_index.json -------------------------------------------------------------------------------- /TC_model/images/bert_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/images/bert_1.jpeg -------------------------------------------------------------------------------- /TC_model/images/bert_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/images/bert_1.jpg -------------------------------------------------------------------------------- /TC_model/images/bert_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/images/bert_2.jpeg -------------------------------------------------------------------------------- /TC_model/images/dpcnn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/images/dpcnn.jpg -------------------------------------------------------------------------------- /TC_model/images/fasttext.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/images/fasttext.jpg -------------------------------------------------------------------------------- /TC_model/images/han.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/images/han.jpg -------------------------------------------------------------------------------- /TC_model/images/han_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/images/han_2.jpg -------------------------------------------------------------------------------- /TC_model/images/rcnn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/images/rcnn.jpg -------------------------------------------------------------------------------- /TC_model/images/textcnn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/images/textcnn.jpg -------------------------------------------------------------------------------- /TC_model/images/textrnn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_model/images/textrnn.jpg -------------------------------------------------------------------------------- /TC_rest/Api/utils/LogUtils2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_rest/Api/utils/LogUtils2.py -------------------------------------------------------------------------------- /TC_rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TC_rest/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_rest/admin.py -------------------------------------------------------------------------------- /TC_rest/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_rest/apps.py -------------------------------------------------------------------------------- /TC_rest/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TC_rest/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_rest/models.py -------------------------------------------------------------------------------- /TC_rest/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/TC_rest/tests.py -------------------------------------------------------------------------------- /TC_rest/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Text_Classification_TF/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Text_Classification_TF/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/Text_Classification_TF/settings.py -------------------------------------------------------------------------------- /Text_Classification_TF/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/Text_Classification_TF/urls.py -------------------------------------------------------------------------------- /Text_Classification_TF/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/Text_Classification_TF/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesXu86/Text_Classification_TF/HEAD/manage.py --------------------------------------------------------------------------------