├── LICENSE ├── README.md ├── THUCNews ├── data │ ├── class.txt │ ├── dev.txt │ ├── embedding_SougouNews.npz │ ├── embedding_Tencent.npz │ ├── test.txt │ ├── train.txt │ └── vocab.pkl └── saved_dict │ └── model.ckpt ├── models ├── DPCNN.py ├── FastText.py ├── TextCNN.py ├── TextRCNN.py ├── TextRNN.py ├── TextRNN_Att.py └── Transformer.py ├── run.py ├── train_eval.py ├── utils.py └── utils_fasttext.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/README.md -------------------------------------------------------------------------------- /THUCNews/data/class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/THUCNews/data/class.txt -------------------------------------------------------------------------------- /THUCNews/data/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/THUCNews/data/dev.txt -------------------------------------------------------------------------------- /THUCNews/data/embedding_SougouNews.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/THUCNews/data/embedding_SougouNews.npz -------------------------------------------------------------------------------- /THUCNews/data/embedding_Tencent.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/THUCNews/data/embedding_Tencent.npz -------------------------------------------------------------------------------- /THUCNews/data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/THUCNews/data/test.txt -------------------------------------------------------------------------------- /THUCNews/data/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/THUCNews/data/train.txt -------------------------------------------------------------------------------- /THUCNews/data/vocab.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/THUCNews/data/vocab.pkl -------------------------------------------------------------------------------- /THUCNews/saved_dict/model.ckpt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/DPCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/models/DPCNN.py -------------------------------------------------------------------------------- /models/FastText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/models/FastText.py -------------------------------------------------------------------------------- /models/TextCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/models/TextCNN.py -------------------------------------------------------------------------------- /models/TextRCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/models/TextRCNN.py -------------------------------------------------------------------------------- /models/TextRNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/models/TextRNN.py -------------------------------------------------------------------------------- /models/TextRNN_Att.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/models/TextRNN_Att.py -------------------------------------------------------------------------------- /models/Transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/models/Transformer.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/run.py -------------------------------------------------------------------------------- /train_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/train_eval.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/utils.py -------------------------------------------------------------------------------- /utils_fasttext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649453932/Chinese-Text-Classification-Pytorch/HEAD/utils_fasttext.py --------------------------------------------------------------------------------