├── .gitignore ├── LICENSE ├── README.md ├── configs ├── start_config_base_plan_5.json └── start_config_try_large_plan_4.json ├── glue_eval ├── no_trainer_glue_together_with_stat.sh ├── no_trainer_squad.sh ├── run_glue_together_with_stat.py ├── run_squad_no_trainer.py └── utils_qa.py ├── model_ex ├── __init__.py ├── bert_ex_v2.py ├── copy_weight_ex.py ├── grow_ops_v2.py └── utils_ex_v2.py ├── preprocess_bert_data.py ├── requirements.txt ├── run_grow_bert.py └── scripts ├── grow_bert_base.sh └── grow_bert_large.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/README.md -------------------------------------------------------------------------------- /configs/start_config_base_plan_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/configs/start_config_base_plan_5.json -------------------------------------------------------------------------------- /configs/start_config_try_large_plan_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/configs/start_config_try_large_plan_4.json -------------------------------------------------------------------------------- /glue_eval/no_trainer_glue_together_with_stat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/glue_eval/no_trainer_glue_together_with_stat.sh -------------------------------------------------------------------------------- /glue_eval/no_trainer_squad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/glue_eval/no_trainer_squad.sh -------------------------------------------------------------------------------- /glue_eval/run_glue_together_with_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/glue_eval/run_glue_together_with_stat.py -------------------------------------------------------------------------------- /glue_eval/run_squad_no_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/glue_eval/run_squad_no_trainer.py -------------------------------------------------------------------------------- /glue_eval/utils_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/glue_eval/utils_qa.py -------------------------------------------------------------------------------- /model_ex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_ex/bert_ex_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/model_ex/bert_ex_v2.py -------------------------------------------------------------------------------- /model_ex/copy_weight_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/model_ex/copy_weight_ex.py -------------------------------------------------------------------------------- /model_ex/grow_ops_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/model_ex/grow_ops_v2.py -------------------------------------------------------------------------------- /model_ex/utils_ex_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/model_ex/utils_ex_v2.py -------------------------------------------------------------------------------- /preprocess_bert_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/preprocess_bert_data.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_grow_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/run_grow_bert.py -------------------------------------------------------------------------------- /scripts/grow_bert_base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/scripts/grow_bert_base.sh -------------------------------------------------------------------------------- /scripts/grow_bert_large.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofe-ai/MSG/HEAD/scripts/grow_bert_large.sh --------------------------------------------------------------------------------