├── .gitignore ├── LICENSE ├── config.py ├── load_data.py ├── model.py ├── models ├── attention.py ├── char_cnn.py ├── cnn.py ├── fast.py ├── text_att_bi_gru.py ├── text_att_bi_lstm.py ├── text_bi_gru.py ├── text_bi_lstm.py ├── text_gru.py └── text_lstm.py ├── predict.py ├── readme.md ├── requirements.txt ├── run.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/LICENSE -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/config.py -------------------------------------------------------------------------------- /load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/load_data.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/model.py -------------------------------------------------------------------------------- /models/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/models/attention.py -------------------------------------------------------------------------------- /models/char_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/models/char_cnn.py -------------------------------------------------------------------------------- /models/cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/models/cnn.py -------------------------------------------------------------------------------- /models/fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/models/fast.py -------------------------------------------------------------------------------- /models/text_att_bi_gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/models/text_att_bi_gru.py -------------------------------------------------------------------------------- /models/text_att_bi_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/models/text_att_bi_lstm.py -------------------------------------------------------------------------------- /models/text_bi_gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/models/text_bi_gru.py -------------------------------------------------------------------------------- /models/text_bi_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/models/text_bi_lstm.py -------------------------------------------------------------------------------- /models/text_gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/models/text_gru.py -------------------------------------------------------------------------------- /models/text_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/models/text_lstm.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/predict.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/run.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gezimonkey/Keras_Multi_Label_TextClassfication/HEAD/train.py --------------------------------------------------------------------------------