├── .gitignore ├── README.md ├── data ├── processor.py └── study_baidu.webscraper └── model ├── bert ├── bert │ ├── __init__.py │ ├── modeling.py │ ├── optimization.py │ ├── run_classifier.py │ ├── run_pretraining.py │ ├── tf_metrics.py │ └── tokenization.py ├── data_processor.py ├── evaluate_test.py ├── pretrained_model │ └── chinese_L-12_H-768_A-12 │ │ ├── bert_config.json │ │ └── vocab.txt ├── run.sh └── run_classifier.py ├── fasttext.py ├── gcn ├── build_graph.py ├── data │ └── stopwords.txt ├── generate_datafile.py ├── inits.py ├── layers.py ├── metrics.py ├── models.py ├── run.sh ├── train.py └── utils.py ├── metrics.py └── textcnn ├── data_helper.py ├── run.sh ├── test.py ├── text_cnn.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/README.md -------------------------------------------------------------------------------- /data/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/data/processor.py -------------------------------------------------------------------------------- /data/study_baidu.webscraper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/data/study_baidu.webscraper -------------------------------------------------------------------------------- /model/bert/bert/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/bert/bert/__init__.py -------------------------------------------------------------------------------- /model/bert/bert/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/bert/bert/modeling.py -------------------------------------------------------------------------------- /model/bert/bert/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/bert/bert/optimization.py -------------------------------------------------------------------------------- /model/bert/bert/run_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/bert/bert/run_classifier.py -------------------------------------------------------------------------------- /model/bert/bert/run_pretraining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/bert/bert/run_pretraining.py -------------------------------------------------------------------------------- /model/bert/bert/tf_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/bert/bert/tf_metrics.py -------------------------------------------------------------------------------- /model/bert/bert/tokenization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/bert/bert/tokenization.py -------------------------------------------------------------------------------- /model/bert/data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/bert/data_processor.py -------------------------------------------------------------------------------- /model/bert/evaluate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/bert/evaluate_test.py -------------------------------------------------------------------------------- /model/bert/pretrained_model/chinese_L-12_H-768_A-12/bert_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/bert/pretrained_model/chinese_L-12_H-768_A-12/bert_config.json -------------------------------------------------------------------------------- /model/bert/pretrained_model/chinese_L-12_H-768_A-12/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/bert/pretrained_model/chinese_L-12_H-768_A-12/vocab.txt -------------------------------------------------------------------------------- /model/bert/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/bert/run.sh -------------------------------------------------------------------------------- /model/bert/run_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/bert/run_classifier.py -------------------------------------------------------------------------------- /model/fasttext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/fasttext.py -------------------------------------------------------------------------------- /model/gcn/build_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/gcn/build_graph.py -------------------------------------------------------------------------------- /model/gcn/data/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/gcn/data/stopwords.txt -------------------------------------------------------------------------------- /model/gcn/generate_datafile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/gcn/generate_datafile.py -------------------------------------------------------------------------------- /model/gcn/inits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/gcn/inits.py -------------------------------------------------------------------------------- /model/gcn/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/gcn/layers.py -------------------------------------------------------------------------------- /model/gcn/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/gcn/metrics.py -------------------------------------------------------------------------------- /model/gcn/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/gcn/models.py -------------------------------------------------------------------------------- /model/gcn/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/gcn/run.sh -------------------------------------------------------------------------------- /model/gcn/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/gcn/train.py -------------------------------------------------------------------------------- /model/gcn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/gcn/utils.py -------------------------------------------------------------------------------- /model/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/metrics.py -------------------------------------------------------------------------------- /model/textcnn/data_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/textcnn/data_helper.py -------------------------------------------------------------------------------- /model/textcnn/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/textcnn/run.sh -------------------------------------------------------------------------------- /model/textcnn/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/textcnn/test.py -------------------------------------------------------------------------------- /model/textcnn/text_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/textcnn/text_cnn.py -------------------------------------------------------------------------------- /model/textcnn/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouchangX-AI/Multi-label_text_classification/HEAD/model/textcnn/train.py --------------------------------------------------------------------------------