├── README.md ├── data ├── dev.tsv ├── test └── train.tsv ├── download_glue_data.py ├── modeling.py ├── optimization.py ├── run.sh ├── run_classifier_word.py └── tokenization_word.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPScott/bert-Chinese-classification-task/HEAD/README.md -------------------------------------------------------------------------------- /data/dev.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPScott/bert-Chinese-classification-task/HEAD/data/dev.tsv -------------------------------------------------------------------------------- /data/test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/train.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPScott/bert-Chinese-classification-task/HEAD/data/train.tsv -------------------------------------------------------------------------------- /download_glue_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPScott/bert-Chinese-classification-task/HEAD/download_glue_data.py -------------------------------------------------------------------------------- /modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPScott/bert-Chinese-classification-task/HEAD/modeling.py -------------------------------------------------------------------------------- /optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPScott/bert-Chinese-classification-task/HEAD/optimization.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPScott/bert-Chinese-classification-task/HEAD/run.sh -------------------------------------------------------------------------------- /run_classifier_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPScott/bert-Chinese-classification-task/HEAD/run_classifier_word.py -------------------------------------------------------------------------------- /tokenization_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPScott/bert-Chinese-classification-task/HEAD/tokenization_word.py --------------------------------------------------------------------------------