├── 04-text-classification ├── CNN_BiLSTM_Concat_model.py ├── CNN_GRU_model.py ├── CNN_model.py ├── LSTM_model.py ├── TextCNNBN.py ├── TextCNN_model.py ├── TextInception_model.py ├── __init__.py ├── data │ ├── bad_cut_jieba.txt │ ├── good_cut_jieba.txt │ └── mid_cut_jieba.txt └── data_preprocess.py └── README.md /04-text-classification/CNN_BiLSTM_Concat_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrChenzf/text-classification-pytorch/HEAD/04-text-classification/CNN_BiLSTM_Concat_model.py -------------------------------------------------------------------------------- /04-text-classification/CNN_GRU_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrChenzf/text-classification-pytorch/HEAD/04-text-classification/CNN_GRU_model.py -------------------------------------------------------------------------------- /04-text-classification/CNN_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrChenzf/text-classification-pytorch/HEAD/04-text-classification/CNN_model.py -------------------------------------------------------------------------------- /04-text-classification/LSTM_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrChenzf/text-classification-pytorch/HEAD/04-text-classification/LSTM_model.py -------------------------------------------------------------------------------- /04-text-classification/TextCNNBN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrChenzf/text-classification-pytorch/HEAD/04-text-classification/TextCNNBN.py -------------------------------------------------------------------------------- /04-text-classification/TextCNN_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrChenzf/text-classification-pytorch/HEAD/04-text-classification/TextCNN_model.py -------------------------------------------------------------------------------- /04-text-classification/TextInception_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrChenzf/text-classification-pytorch/HEAD/04-text-classification/TextInception_model.py -------------------------------------------------------------------------------- /04-text-classification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04-text-classification/data/bad_cut_jieba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrChenzf/text-classification-pytorch/HEAD/04-text-classification/data/bad_cut_jieba.txt -------------------------------------------------------------------------------- /04-text-classification/data/good_cut_jieba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrChenzf/text-classification-pytorch/HEAD/04-text-classification/data/good_cut_jieba.txt -------------------------------------------------------------------------------- /04-text-classification/data/mid_cut_jieba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrChenzf/text-classification-pytorch/HEAD/04-text-classification/data/mid_cut_jieba.txt -------------------------------------------------------------------------------- /04-text-classification/data_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrChenzf/text-classification-pytorch/HEAD/04-text-classification/data_preprocess.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrChenzf/text-classification-pytorch/HEAD/README.md --------------------------------------------------------------------------------