├── README.md ├── figures ├── loss_acc.png └── method.png ├── imp_and_fine_tune ├── LICENSE ├── LT_pretrain.py ├── glue_trans.py ├── glue_trans_few.py ├── hg_transformers │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── activations.cpython-36.pyc │ │ ├── benchmark_utils.cpython-36.pyc │ │ ├── configuration_albert.cpython-36.pyc │ │ ├── configuration_auto.cpython-36.pyc │ │ ├── configuration_bart.cpython-36.pyc │ │ ├── configuration_bert.cpython-36.pyc │ │ ├── configuration_camembert.cpython-36.pyc │ │ ├── configuration_ctrl.cpython-36.pyc │ │ ├── configuration_distilbert.cpython-36.pyc │ │ ├── configuration_electra.cpython-36.pyc │ │ ├── configuration_encoder_decoder.cpython-36.pyc │ │ ├── configuration_flaubert.cpython-36.pyc │ │ ├── configuration_gpt2.cpython-36.pyc │ │ ├── configuration_longformer.cpython-36.pyc │ │ ├── configuration_marian.cpython-36.pyc │ │ ├── configuration_mmbt.cpython-36.pyc │ │ ├── configuration_openai.cpython-36.pyc │ │ ├── configuration_reformer.cpython-36.pyc │ │ ├── configuration_roberta.cpython-36.pyc │ │ ├── configuration_t5.cpython-36.pyc │ │ ├── configuration_transfo_xl.cpython-36.pyc │ │ ├── configuration_utils.cpython-36.pyc │ │ ├── configuration_xlm.cpython-36.pyc │ │ ├── configuration_xlm_roberta.cpython-36.pyc │ │ ├── configuration_xlnet.cpython-36.pyc │ │ ├── file_utils.cpython-36.pyc │ │ ├── hf_argparser.cpython-36.pyc │ │ ├── mask_trainer_mlm.cpython-36.pyc │ │ ├── modelcard.cpython-36.pyc │ │ ├── modeling_albert.cpython-36.pyc │ │ ├── modeling_auto.cpython-36.pyc │ │ ├── modeling_bart.cpython-36.pyc │ │ ├── modeling_bert.cpython-36.pyc │ │ ├── modeling_camembert.cpython-36.pyc │ │ ├── modeling_ctrl.cpython-36.pyc │ │ ├── modeling_distilbert.cpython-36.pyc │ │ ├── modeling_electra.cpython-36.pyc │ │ ├── modeling_encoder_decoder.cpython-36.pyc │ │ ├── modeling_flaubert.cpython-36.pyc │ │ ├── modeling_gpt2.cpython-36.pyc │ │ ├── modeling_longformer.cpython-36.pyc │ │ ├── modeling_marian.cpython-36.pyc │ │ ├── modeling_mmbt.cpython-36.pyc │ │ ├── modeling_openai.cpython-36.pyc │ │ ├── modeling_reformer.cpython-36.pyc │ │ ├── modeling_roberta.cpython-36.pyc │ │ ├── modeling_t5.cpython-36.pyc │ │ ├── modeling_tf_pytorch_utils.cpython-36.pyc │ │ ├── modeling_transfo_xl.cpython-36.pyc │ │ ├── modeling_transfo_xl_utilities.cpython-36.pyc │ │ ├── modeling_utils.cpython-36.pyc │ │ ├── modeling_xlm.cpython-36.pyc │ │ ├── modeling_xlm_roberta.cpython-36.pyc │ │ ├── modeling_xlnet.cpython-36.pyc │ │ ├── optimization.cpython-36.pyc │ │ ├── pipelines.cpython-36.pyc │ │ ├── structured_mask_trainer_mlm.cpython-36.pyc │ │ ├── tokenization_albert.cpython-36.pyc │ │ ├── tokenization_auto.cpython-36.pyc │ │ ├── tokenization_bart.cpython-36.pyc │ │ ├── tokenization_bert.cpython-36.pyc │ │ ├── tokenization_bert_japanese.cpython-36.pyc │ │ ├── tokenization_camembert.cpython-36.pyc │ │ ├── tokenization_ctrl.cpython-36.pyc │ │ ├── tokenization_distilbert.cpython-36.pyc │ │ ├── tokenization_electra.cpython-36.pyc │ │ ├── tokenization_flaubert.cpython-36.pyc │ │ ├── tokenization_gpt2.cpython-36.pyc │ │ ├── tokenization_longformer.cpython-36.pyc │ │ ├── tokenization_marian.cpython-36.pyc │ │ ├── tokenization_openai.cpython-36.pyc │ │ ├── tokenization_reformer.cpython-36.pyc │ │ ├── tokenization_roberta.cpython-36.pyc │ │ ├── tokenization_t5.cpython-36.pyc │ │ ├── tokenization_transfo_xl.cpython-36.pyc │ │ ├── tokenization_utils.cpython-36.pyc │ │ ├── tokenization_xlm.cpython-36.pyc │ │ ├── tokenization_xlm_roberta.cpython-36.pyc │ │ ├── tokenization_xlnet.cpython-36.pyc │ │ ├── trainer.cpython-36.pyc │ │ ├── trainer_utils.cpython-36.pyc │ │ ├── training_args.cpython-36.pyc │ │ └── training_args_tf.cpython-36.pyc │ ├── activations.py │ ├── benchmark_utils.py │ ├── commands │ │ ├── __init__.py │ │ ├── convert.py │ │ ├── download.py │ │ ├── env.py │ │ ├── run.py │ │ ├── serving.py │ │ ├── train.py │ │ └── user.py │ ├── configuration_albert.py │ ├── configuration_auto.py │ ├── configuration_bart.py │ ├── configuration_bert.py │ ├── configuration_camembert.py │ ├── configuration_ctrl.py │ ├── configuration_distilbert.py │ ├── configuration_electra.py │ ├── configuration_encoder_decoder.py │ ├── configuration_flaubert.py │ ├── configuration_gpt2.py │ ├── configuration_longformer.py │ ├── configuration_marian.py │ ├── configuration_mmbt.py │ ├── configuration_openai.py │ ├── configuration_reformer.py │ ├── configuration_roberta.py │ ├── configuration_t5.py │ ├── configuration_transfo_xl.py │ ├── configuration_utils.py │ ├── configuration_xlm.py │ ├── configuration_xlm_roberta.py │ ├── configuration_xlnet.py │ ├── convert_albert_original_tf_checkpoint_to_pytorch.py │ ├── convert_bart_original_pytorch_checkpoint_to_pytorch.py │ ├── convert_bert_original_tf_checkpoint_to_pytorch.py │ ├── convert_bert_pytorch_checkpoint_to_original_tf.py │ ├── convert_dialogpt_original_pytorch_checkpoint_to_pytorch.py │ ├── convert_electra_original_tf_checkpoint_to_pytorch.py │ ├── convert_gpt2_original_tf_checkpoint_to_pytorch.py │ ├── convert_graph_to_onnx.py │ ├── convert_marian_to_pytorch.py │ ├── convert_openai_original_tf_checkpoint_to_pytorch.py │ ├── convert_pytorch_checkpoint_to_tf2.py │ ├── convert_reformer_trax_checkpoint_to_pytorch.py │ ├── convert_roberta_original_pytorch_checkpoint_to_pytorch.py │ ├── convert_t5_original_tf_checkpoint_to_pytorch.py │ ├── convert_transfo_xl_original_tf_checkpoint_to_pytorch.py │ ├── convert_xlm_original_pytorch_checkpoint_to_pytorch.py │ ├── convert_xlnet_original_tf_checkpoint_to_pytorch.py │ ├── data │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── data_collator.cpython-36.pyc │ │ ├── data_collator.py │ │ ├── datasets │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── glue.cpython-36.pyc │ │ │ │ └── language_modeling.cpython-36.pyc │ │ │ ├── glue.py │ │ │ └── language_modeling.py │ │ ├── metrics │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── squad_metrics.cpython-36.pyc │ │ │ └── squad_metrics.py │ │ └── processors │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── glue.cpython-36.pyc │ │ │ ├── squad.cpython-36.pyc │ │ │ ├── utils.cpython-36.pyc │ │ │ └── xnli.cpython-36.pyc │ │ │ ├── glue.py │ │ │ ├── squad.py │ │ │ ├── utils.py │ │ │ └── xnli.py │ ├── file_utils.py │ ├── hf_api.py │ ├── hf_argparser.py │ ├── mask_trainer_mlm.py │ ├── masking │ │ ├── __pycache__ │ │ │ ├── maskers.cpython-36.pyc │ │ │ └── sparsity_control.cpython-36.pyc │ │ ├── maskers.py │ │ └── sparsity_control.py │ ├── modelcard.py │ ├── modeling_albert.py │ ├── modeling_auto.py │ ├── modeling_bart.py │ ├── modeling_bert.py │ ├── modeling_camembert.py │ ├── modeling_ctrl.py │ ├── modeling_distilbert.py │ ├── modeling_electra.py │ ├── modeling_encoder_decoder.py │ ├── modeling_flaubert.py │ ├── modeling_gpt2.py │ ├── modeling_longformer.py │ ├── modeling_marian.py │ ├── modeling_mmbt.py │ ├── modeling_openai.py │ ├── modeling_reformer.py │ ├── modeling_roberta.py │ ├── modeling_t5.py │ ├── modeling_tf_albert.py │ ├── modeling_tf_auto.py │ ├── modeling_tf_bert.py │ ├── modeling_tf_camembert.py │ ├── modeling_tf_ctrl.py │ ├── modeling_tf_distilbert.py │ ├── modeling_tf_electra.py │ ├── modeling_tf_flaubert.py │ ├── modeling_tf_gpt2.py │ ├── modeling_tf_openai.py │ ├── modeling_tf_pytorch_utils.py │ ├── modeling_tf_roberta.py │ ├── modeling_tf_t5.py │ ├── modeling_tf_transfo_xl.py │ ├── modeling_tf_transfo_xl_utilities.py │ ├── modeling_tf_utils.py │ ├── modeling_tf_xlm.py │ ├── modeling_tf_xlm_roberta.py │ ├── modeling_tf_xlnet.py │ ├── modeling_transfo_xl.py │ ├── modeling_transfo_xl_utilities.py │ ├── modeling_utils.py │ ├── modeling_xlm.py │ ├── modeling_xlm_roberta.py │ ├── modeling_xlnet.py │ ├── optimization.py │ ├── optimization_tf.py │ ├── pipelines.py │ ├── structured_mask_trainer_mlm.py │ ├── tokenization_albert.py │ ├── tokenization_auto.py │ ├── tokenization_bart.py │ ├── tokenization_bert.py │ ├── tokenization_bert_japanese.py │ ├── tokenization_camembert.py │ ├── tokenization_ctrl.py │ ├── tokenization_distilbert.py │ ├── tokenization_electra.py │ ├── tokenization_flaubert.py │ ├── tokenization_gpt2.py │ ├── tokenization_longformer.py │ ├── tokenization_marian.py │ ├── tokenization_openai.py │ ├── tokenization_reformer.py │ ├── tokenization_roberta.py │ ├── tokenization_t5.py │ ├── tokenization_transfo_xl.py │ ├── tokenization_utils.py │ ├── tokenization_xlm.py │ ├── tokenization_xlm_roberta.py │ ├── tokenization_xlnet.py │ ├── trainer.py │ ├── trainer_tf.py │ ├── trainer_utils.py │ ├── training_args.py │ └── training_args_tf.py ├── oneshot.py ├── shell_scripts │ ├── imp │ │ ├── bert │ │ │ ├── prun_step1396 │ │ │ │ ├── pretrain_imp_seed1.sh │ │ │ │ ├── pretrain_imp_seed2.sh │ │ │ │ └── pretrain_imp_seed3.sh │ │ │ ├── prun_step200 │ │ │ │ ├── pretrain_imp_seed1.sh │ │ │ │ ├── pretrain_imp_seed2.sh │ │ │ │ └── pretrain_imp_seed3.sh │ │ │ ├── prun_step2792 │ │ │ │ ├── pretrain_imp_seed1.sh │ │ │ │ ├── pretrain_imp_seed2.sh │ │ │ │ └── pretrain_imp_seed3.sh │ │ │ ├── prun_step300 │ │ │ │ ├── pretrain_imp_seed1.sh │ │ │ │ ├── pretrain_imp_seed2.sh │ │ │ │ └── pretrain_imp_seed3.sh │ │ │ ├── prun_step500 │ │ │ │ ├── pretrain_imp_seed1.sh │ │ │ │ ├── pretrain_imp_seed2.sh │ │ │ │ └── pretrain_imp_seed3.sh │ │ │ └── prun_step900 │ │ │ │ ├── pretrain_imp_seed1.sh │ │ │ │ ├── pretrain_imp_seed2.sh │ │ │ │ └── pretrain_imp_seed3.sh │ │ └── roberta │ │ │ └── prun_step2792 │ │ │ ├── pretrain_imp_seed1.sh │ │ │ ├── pretrain_imp_seed2.sh │ │ │ └── pretrain_imp_seed3.sh │ ├── oneshot │ │ ├── bert_mag.sh │ │ ├── bert_rand.sh │ │ ├── roberta_mag.sh │ │ └── roberta_rand.sh │ ├── run_glue │ │ ├── few_shot │ │ │ ├── full_bert │ │ │ │ ├── cola │ │ │ │ │ ├── 1k.sh │ │ │ │ │ ├── 2k.sh │ │ │ │ │ └── 5k.sh │ │ │ │ ├── mnli │ │ │ │ │ ├── 100k.sh │ │ │ │ │ ├── 10k.sh │ │ │ │ │ ├── 1k.sh │ │ │ │ │ ├── 50k.sh │ │ │ │ │ └── 5k.sh │ │ │ │ ├── squad │ │ │ │ │ ├── 10k.sh │ │ │ │ │ ├── 1k.sh │ │ │ │ │ ├── 20k.sh │ │ │ │ │ ├── 40k.sh │ │ │ │ │ └── 5k.sh │ │ │ │ └── sst-2 │ │ │ │ │ ├── 10k.sh │ │ │ │ │ ├── 1k.sh │ │ │ │ │ ├── 30k.sh │ │ │ │ │ └── 5k.sh │ │ │ ├── imp_pretrain │ │ │ │ ├── cola │ │ │ │ │ ├── 1000.sh │ │ │ │ │ ├── 2000.sh │ │ │ │ │ └── 5000.sh │ │ │ │ ├── mnli │ │ │ │ │ ├── 100k_seed1.sh │ │ │ │ │ ├── 100k_seed2.sh │ │ │ │ │ ├── 100k_seed3.sh │ │ │ │ │ ├── 10k.sh │ │ │ │ │ ├── 1k.sh │ │ │ │ │ ├── 50k_seed1.sh │ │ │ │ │ ├── 50k_seed2.sh │ │ │ │ │ ├── 50k_seed3.sh │ │ │ │ │ └── 5k.sh │ │ │ │ ├── squad │ │ │ │ │ ├── 10k.sh │ │ │ │ │ ├── 1k.sh │ │ │ │ │ ├── 20k.sh │ │ │ │ │ ├── 40k_seed1.sh │ │ │ │ │ ├── 40k_seed2.sh │ │ │ │ │ ├── 40k_seed3.sh │ │ │ │ │ └── 5k.sh │ │ │ │ └── sst-2 │ │ │ │ │ ├── 1000.sh │ │ │ │ │ ├── 10000.sh │ │ │ │ │ ├── 30000.sh │ │ │ │ │ └── 5000.sh │ │ │ ├── oneshot │ │ │ │ ├── cola │ │ │ │ │ ├── 1k.sh │ │ │ │ │ ├── 2k.sh │ │ │ │ │ └── 5k.sh │ │ │ │ ├── mnli │ │ │ │ │ ├── 100k.sh │ │ │ │ │ ├── 10k.sh │ │ │ │ │ ├── 1k.sh │ │ │ │ │ ├── 50k.sh │ │ │ │ │ └── 5k.sh │ │ │ │ ├── squad │ │ │ │ │ ├── 10k.sh │ │ │ │ │ ├── 1k.sh │ │ │ │ │ ├── 20k.sh │ │ │ │ │ ├── 40k.sh │ │ │ │ │ └── 5k.sh │ │ │ │ └── sst-2 │ │ │ │ │ ├── 10k.sh │ │ │ │ │ ├── 1k.sh │ │ │ │ │ ├── 30k.sh │ │ │ │ │ └── 5k.sh │ │ │ ├── train_kd │ │ │ │ ├── cola │ │ │ │ │ ├── 1000.sh │ │ │ │ │ ├── 2000.sh │ │ │ │ │ ├── 4000.sh │ │ │ │ │ └── 5000.sh │ │ │ │ ├── mnli │ │ │ │ │ ├── 100k_seed1.sh │ │ │ │ │ ├── 100k_seed2.sh │ │ │ │ │ ├── 100k_seed3.sh │ │ │ │ │ ├── 10k.sh │ │ │ │ │ ├── 1k.sh │ │ │ │ │ ├── 50k_seed1.sh │ │ │ │ │ ├── 50k_seed2.sh │ │ │ │ │ ├── 50k_seed3.sh │ │ │ │ │ └── 5k.sh │ │ │ │ ├── squad │ │ │ │ │ ├── 10k.sh │ │ │ │ │ ├── 1k.sh │ │ │ │ │ ├── 20k.sh │ │ │ │ │ ├── 40k_seed1.sh │ │ │ │ │ ├── 40k_seed2.sh │ │ │ │ │ ├── 40k_seed3.sh │ │ │ │ │ └── 5k.sh │ │ │ │ └── sst-2 │ │ │ │ │ ├── 1000.sh │ │ │ │ │ ├── 10000.sh │ │ │ │ │ ├── 30000.sh │ │ │ │ │ └── 5000.sh │ │ │ └── train_mlm │ │ │ │ ├── cola │ │ │ │ ├── 1000.sh │ │ │ │ ├── 2000.sh │ │ │ │ ├── 4000.sh │ │ │ │ └── 5000.sh │ │ │ │ ├── mnli │ │ │ │ ├── 100k_seed1.sh │ │ │ │ ├── 100k_seed2.sh │ │ │ │ ├── 100k_seed3.sh │ │ │ │ ├── 10k.sh │ │ │ │ ├── 1k.sh │ │ │ │ ├── 50k_seed1.sh │ │ │ │ ├── 50k_seed2.sh │ │ │ │ ├── 50k_seed3.sh │ │ │ │ └── 5k.sh │ │ │ │ ├── squad │ │ │ │ ├── 10k.sh │ │ │ │ ├── 1k.sh │ │ │ │ ├── 20k.sh │ │ │ │ ├── 40k_seed1.sh │ │ │ │ ├── 40k_seed2.sh │ │ │ │ ├── 40k_seed3.sh │ │ │ │ └── 5k.sh │ │ │ │ └── sst-2 │ │ │ │ ├── 1000.sh │ │ │ │ ├── 10000.sh │ │ │ │ ├── 30000.sh │ │ │ │ └── 5000.sh │ │ ├── full_bert │ │ │ ├── cola.sh │ │ │ ├── mnli.sh │ │ │ ├── mrpc.sh │ │ │ ├── rte.sh │ │ │ ├── sst-2.sh │ │ │ └── sts-b.sh │ │ ├── full_roberta │ │ │ ├── cola.sh │ │ │ ├── mnli.sh │ │ │ ├── mrpc.sh │ │ │ ├── rte.sh │ │ │ ├── sst-2.sh │ │ │ └── sts-b.sh │ │ ├── imp_pretrain │ │ │ ├── bert │ │ │ │ ├── cola │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ ├── mnli │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ ├── mrpc │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ ├── rte │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ ├── sst-2 │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ ├── steps │ │ │ │ │ ├── cola │ │ │ │ │ │ ├── 0.6 │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ │ ├── 0.7 │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ │ └── 0.8 │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ ├── mnli │ │ │ │ │ │ ├── 0.6 │ │ │ │ │ │ │ ├── seed1 │ │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ │ │ ├── seed2 │ │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ │ │ └── seed3 │ │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ │ ├── 0.7 │ │ │ │ │ │ │ ├── seed1 │ │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ │ │ ├── seed2 │ │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ │ │ └── seed3 │ │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ │ ├── 0.8 │ │ │ │ │ │ │ ├── seed1 │ │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ │ │ ├── seed2 │ │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ │ │ └── seed3 │ │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ │ └── write_bash.py │ │ │ │ │ ├── sst-2 │ │ │ │ │ │ ├── 0.6 │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ │ ├── 0.7 │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ │ └── 0.8 │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ ├── sts-b │ │ │ │ │ │ ├── 0.6 │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ │ ├── 0.7 │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ │ └── 0.8 │ │ │ │ │ │ │ ├── step200.sh │ │ │ │ │ │ │ ├── step2792.sh │ │ │ │ │ │ │ ├── step300.sh │ │ │ │ │ │ │ ├── step500.sh │ │ │ │ │ │ │ └── step900.sh │ │ │ │ │ └── write_bash.py │ │ │ │ └── sts-b │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ └── roberta │ │ │ │ ├── cola │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ │ ├── mnli │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ │ ├── mrpc │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ │ ├── rte │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ │ ├── sst-2 │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ │ └── sts-b │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ ├── oneshot │ │ │ ├── bert │ │ │ │ ├── cola │ │ │ │ │ ├── 0.1.sh │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ ├── mnli │ │ │ │ │ ├── 0.1.sh │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ ├── mrpc │ │ │ │ │ ├── 0.1.sh │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ ├── rte │ │ │ │ │ ├── 0.1.sh │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ ├── sst-2 │ │ │ │ │ ├── 0.1.sh │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ └── sts-b │ │ │ │ │ ├── 0.1.sh │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ └── roberta │ │ │ │ ├── cola │ │ │ │ ├── 0.1.sh │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ │ ├── mnli │ │ │ │ ├── 0.1.sh │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ │ ├── mrpc │ │ │ │ ├── 0.1.sh │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ │ ├── rte │ │ │ │ ├── 0.1.sh │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ │ ├── sst-2 │ │ │ │ ├── 0.1.sh │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ │ └── sts-b │ │ │ │ ├── 0.1.sh │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ ├── rand │ │ │ ├── bert │ │ │ │ ├── cola │ │ │ │ │ ├── 0.1.sh │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ ├── mnli │ │ │ │ │ ├── 0.1.sh │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ ├── mrpc │ │ │ │ │ ├── 0.1.sh │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ ├── rte │ │ │ │ │ ├── 0.1.sh │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ ├── sst-2 │ │ │ │ │ ├── 0.1.sh │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ └── sts-b │ │ │ │ │ ├── 0.1.sh │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ └── roberta │ │ │ │ ├── cola │ │ │ │ ├── 0.1.sh │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ │ ├── mnli │ │ │ │ ├── 0.1.sh │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ │ ├── mrpc │ │ │ │ ├── 0.1.sh │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ │ ├── rte │ │ │ │ ├── 0.1.sh │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ │ ├── sst-2 │ │ │ │ ├── 0.1.sh │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ │ └── sts-b │ │ │ │ ├── 0.1.sh │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ ├── train_kd │ │ │ ├── main_result │ │ │ │ ├── bert │ │ │ │ │ ├── cola │ │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── mnli │ │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── mrpc │ │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── rte │ │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── sst-2 │ │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ │ └── 0.9.sh │ │ │ │ │ └── sts-b │ │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ │ └── 0.9.sh │ │ │ │ └── roberta │ │ │ │ │ ├── cola │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── mnli │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── mrpc │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── rte │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── sst-2 │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ │ └── sts-b │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ └── steps │ │ │ │ └── bert │ │ │ │ ├── cola │ │ │ │ ├── step1000.sh │ │ │ │ ├── step10000.sh │ │ │ │ ├── step2000.sh │ │ │ │ ├── step20000.sh │ │ │ │ ├── step25000.sh │ │ │ │ ├── step3000.sh │ │ │ │ └── step5000.sh │ │ │ │ ├── mnli │ │ │ │ ├── 0.5 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.6 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.7 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ └── 0.8 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── rand_mask_init │ │ │ │ ├── cola │ │ │ │ │ ├── step0.sh │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── mnli │ │ │ │ │ └── 0.7 │ │ │ │ │ │ ├── step0.sh │ │ │ │ │ │ ├── step1000.sh │ │ │ │ │ │ ├── step10000.sh │ │ │ │ │ │ ├── step2000.sh │ │ │ │ │ │ ├── step20000.sh │ │ │ │ │ │ ├── step25000.sh │ │ │ │ │ │ ├── step3000.sh │ │ │ │ │ │ └── step5000.sh │ │ │ │ ├── sst-2 │ │ │ │ │ ├── step0.sh │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ └── sts-b │ │ │ │ │ ├── step0.sh │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── sst-2 │ │ │ │ ├── step1000.sh │ │ │ │ ├── step10000.sh │ │ │ │ ├── step2000.sh │ │ │ │ ├── step20000.sh │ │ │ │ ├── step25000.sh │ │ │ │ ├── step3000.sh │ │ │ │ └── step5000.sh │ │ │ │ └── sts-b │ │ │ │ ├── step1000.sh │ │ │ │ ├── step10000.sh │ │ │ │ ├── step2000.sh │ │ │ │ ├── step20000.sh │ │ │ │ ├── step25000.sh │ │ │ │ ├── step3000.sh │ │ │ │ └── step5000.sh │ │ ├── train_mlm │ │ │ ├── main_result │ │ │ │ ├── bert │ │ │ │ │ ├── cola │ │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── mnli │ │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── mrpc │ │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── rte │ │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── sst-2 │ │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ │ └── 0.9.sh │ │ │ │ │ └── sts-b │ │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ │ └── 0.9.sh │ │ │ │ └── roberta │ │ │ │ │ ├── cola │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── mnli │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── mrpc │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── rte │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ │ ├── sst-2 │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ │ │ └── sts-b │ │ │ │ │ ├── 0.2.sh │ │ │ │ │ ├── 0.3.sh │ │ │ │ │ ├── 0.4.sh │ │ │ │ │ ├── 0.5.sh │ │ │ │ │ ├── 0.6.sh │ │ │ │ │ ├── 0.7.sh │ │ │ │ │ ├── 0.8.sh │ │ │ │ │ └── 0.9.sh │ │ │ └── steps │ │ │ │ └── bert │ │ │ │ ├── cola │ │ │ │ ├── 0.5 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.6 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.7 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ └── 0.8 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── mnli │ │ │ │ ├── 0.5 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.6 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.7 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ └── 0.8 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── rand_mask_init │ │ │ │ ├── cola │ │ │ │ │ └── 0.7 │ │ │ │ │ │ ├── step0.sh │ │ │ │ │ │ ├── step1000.sh │ │ │ │ │ │ ├── step10000.sh │ │ │ │ │ │ ├── step2000.sh │ │ │ │ │ │ ├── step20000.sh │ │ │ │ │ │ ├── step25000.sh │ │ │ │ │ │ ├── step3000.sh │ │ │ │ │ │ └── step5000.sh │ │ │ │ ├── mnli │ │ │ │ │ └── 0.7 │ │ │ │ │ │ ├── .step20000.sh.swp │ │ │ │ │ │ ├── step0.sh │ │ │ │ │ │ ├── step1000.sh │ │ │ │ │ │ ├── step10000.sh │ │ │ │ │ │ ├── step2000.sh │ │ │ │ │ │ ├── step20000.sh │ │ │ │ │ │ ├── step25000.sh │ │ │ │ │ │ ├── step3000.sh │ │ │ │ │ │ └── step5000.sh │ │ │ │ ├── sst-2 │ │ │ │ │ └── 0.7 │ │ │ │ │ │ ├── step0.sh │ │ │ │ │ │ ├── step1000.sh │ │ │ │ │ │ ├── step10000.sh │ │ │ │ │ │ ├── step2000.sh │ │ │ │ │ │ ├── step20000.sh │ │ │ │ │ │ ├── step25000.sh │ │ │ │ │ │ ├── step3000.sh │ │ │ │ │ │ └── step5000.sh │ │ │ │ └── sts-b │ │ │ │ │ └── 0.7 │ │ │ │ │ ├── step0.sh │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── sst-2 │ │ │ │ ├── 0.5 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.6 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.7 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ └── 0.8 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ └── sts-b │ │ │ │ ├── 0.5 │ │ │ │ ├── step1000.sh │ │ │ │ ├── step10000.sh │ │ │ │ ├── step2000.sh │ │ │ │ ├── step20000.sh │ │ │ │ ├── step25000.sh │ │ │ │ ├── step3000.sh │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.6 │ │ │ │ ├── step1000.sh │ │ │ │ ├── step10000.sh │ │ │ │ ├── step2000.sh │ │ │ │ ├── step20000.sh │ │ │ │ ├── step25000.sh │ │ │ │ ├── step3000.sh │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.7 │ │ │ │ ├── step1000.sh │ │ │ │ ├── step10000.sh │ │ │ │ ├── step2000.sh │ │ │ │ ├── step20000.sh │ │ │ │ ├── step25000.sh │ │ │ │ ├── step3000.sh │ │ │ │ └── step5000.sh │ │ │ │ └── 0.8 │ │ │ │ ├── step1000.sh │ │ │ │ ├── step10000.sh │ │ │ │ ├── step2000.sh │ │ │ │ ├── step20000.sh │ │ │ │ ├── step25000.sh │ │ │ │ ├── step3000.sh │ │ │ │ └── step5000.sh │ │ └── train_mlm_kd │ │ │ ├── bert │ │ │ ├── cola │ │ │ │ ├── 0.2.sh │ │ │ │ ├── 0.3.sh │ │ │ │ ├── 0.4.sh │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ ├── mnli │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ ├── mrpc │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ ├── rte │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ ├── sst-2 │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ └── sts-b │ │ │ │ ├── 0.5.sh │ │ │ │ ├── 0.6.sh │ │ │ │ ├── 0.7.sh │ │ │ │ ├── 0.8.sh │ │ │ │ └── 0.9.sh │ │ │ └── roberta │ │ │ ├── cola │ │ │ ├── 0.2.sh │ │ │ ├── 0.3.sh │ │ │ ├── 0.4.sh │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ └── 0.9.sh │ │ │ ├── mnli │ │ │ ├── 0.2.sh │ │ │ ├── 0.3.sh │ │ │ ├── 0.4.sh │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ └── 0.9.sh │ │ │ ├── mrpc │ │ │ ├── 0.2.sh │ │ │ ├── 0.3.sh │ │ │ ├── 0.4.sh │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ └── 0.9.sh │ │ │ ├── rte │ │ │ ├── 0.2.sh │ │ │ ├── 0.3.sh │ │ │ ├── 0.4.sh │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ └── 0.9.sh │ │ │ ├── sst-2 │ │ │ ├── 0.2.sh │ │ │ ├── 0.3.sh │ │ │ ├── 0.4.sh │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ └── 0.9.sh │ │ │ └── sts-b │ │ │ ├── 0.2.sh │ │ │ ├── 0.3.sh │ │ │ ├── 0.4.sh │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ └── 0.9.sh │ └── run_squad │ │ ├── full_bert │ │ └── squad.sh │ │ ├── full_roberta │ │ └── squad.sh │ │ ├── imp_pretrain │ │ ├── bert │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ ├── 0.9.sh │ │ │ └── steps │ │ │ │ ├── step200.sh │ │ │ │ ├── step2792.sh │ │ │ │ ├── step300.sh │ │ │ │ ├── step500.sh │ │ │ │ └── step900.sh │ │ └── roberta │ │ │ ├── 0.2.sh │ │ │ ├── 0.3.sh │ │ │ ├── 0.4.sh │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ └── 0.9.sh │ │ ├── oneshot │ │ ├── bert │ │ │ ├── 0.1.sh │ │ │ ├── 0.2.sh │ │ │ ├── 0.3.sh │ │ │ ├── 0.4.sh │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ └── 0.9.sh │ │ └── roberta │ │ │ ├── 0.1.sh │ │ │ ├── 0.2.sh │ │ │ ├── 0.3.sh │ │ │ ├── 0.4.sh │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ └── 0.9.sh │ │ ├── rand │ │ ├── bert │ │ │ ├── 0.1.sh │ │ │ ├── 0.2.sh │ │ │ ├── 0.3.sh │ │ │ ├── 0.4.sh │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ └── 0.9.sh │ │ └── roberta │ │ │ ├── 0.1.sh │ │ │ ├── 0.2.sh │ │ │ ├── 0.3.sh │ │ │ ├── 0.4.sh │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ └── 0.9.sh │ │ ├── train_kd │ │ ├── bert │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ ├── 0.9.sh │ │ │ └── steps │ │ │ │ ├── 0.5 │ │ │ │ ├── step1000.sh │ │ │ │ ├── step10000.sh │ │ │ │ ├── step2000.sh │ │ │ │ ├── step20000.sh │ │ │ │ ├── step25000.sh │ │ │ │ ├── step3000.sh │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.6 │ │ │ │ ├── step1000.sh │ │ │ │ ├── step10000.sh │ │ │ │ ├── step2000.sh │ │ │ │ ├── step20000.sh │ │ │ │ ├── step25000.sh │ │ │ │ ├── step3000.sh │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.7 │ │ │ │ ├── step1000.sh │ │ │ │ ├── step10000.sh │ │ │ │ ├── step2000.sh │ │ │ │ ├── step20000.sh │ │ │ │ ├── step25000.sh │ │ │ │ ├── step3000.sh │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.8 │ │ │ │ ├── step1000.sh │ │ │ │ ├── step10000.sh │ │ │ │ ├── step2000.sh │ │ │ │ ├── step20000.sh │ │ │ │ ├── step25000.sh │ │ │ │ ├── step3000.sh │ │ │ │ └── step5000.sh │ │ │ │ └── rand_mask_init │ │ │ │ └── 0.7 │ │ │ │ ├── step0.sh │ │ │ │ ├── step1000.sh │ │ │ │ ├── step10000.sh │ │ │ │ ├── step2000.sh │ │ │ │ ├── step20000.sh │ │ │ │ ├── step25000.sh │ │ │ │ ├── step3000.sh │ │ │ │ └── step5000.sh │ │ └── roberta │ │ │ ├── 0.2.sh │ │ │ ├── 0.3.sh │ │ │ ├── 0.4.sh │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ └── 0.9.sh │ │ ├── train_mlm │ │ ├── bert │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ ├── 0.9.sh │ │ │ └── steps │ │ │ │ ├── length512 │ │ │ │ ├── 0.5 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.6 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.7 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── 0.8 │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ └── rand_mask_init │ │ │ │ │ └── 0.7 │ │ │ │ │ ├── step0.sh │ │ │ │ │ ├── step1000.sh │ │ │ │ │ ├── step10000.sh │ │ │ │ │ ├── step2000.sh │ │ │ │ │ ├── step20000.sh │ │ │ │ │ ├── step25000.sh │ │ │ │ │ ├── step3000.sh │ │ │ │ │ └── step5000.sh │ │ │ │ ├── step1396.sh │ │ │ │ ├── step15356.sh │ │ │ │ ├── step2792.sh │ │ │ │ ├── step4188.sh │ │ │ │ └── step9772.sh │ │ └── roberta │ │ │ ├── 0.1.sh │ │ │ ├── 0.2.sh │ │ │ ├── 0.3.sh │ │ │ ├── 0.4.sh │ │ │ ├── 0.5.sh │ │ │ ├── 0.6.sh │ │ │ ├── 0.7.sh │ │ │ ├── 0.8.sh │ │ │ └── 0.9.sh │ │ └── train_mlm_kd │ │ ├── bert │ │ ├── 0.5.sh │ │ ├── 0.6.sh │ │ ├── 0.7.sh │ │ ├── 0.8.sh │ │ └── 0.9.sh │ │ └── roberta │ │ ├── 0.2.sh │ │ ├── 0.3.sh │ │ ├── 0.4.sh │ │ ├── 0.5.sh │ │ ├── 0.6.sh │ │ ├── 0.7.sh │ │ ├── 0.8.sh │ │ └── 0.9.sh ├── squad_trans.py └── squad_trans_few.py └── mask_training ├── compare_mask.py ├── eval_kd.py ├── eval_mlm.py ├── hg_transformers ├── __init__.py ├── __init__.pyc ├── activations.py ├── benchmark_utils.py ├── commands │ ├── __init__.py │ ├── convert.py │ ├── download.py │ ├── env.py │ ├── run.py │ ├── serving.py │ ├── train.py │ └── user.py ├── configuration_albert.py ├── configuration_auto.py ├── configuration_bart.py ├── configuration_bert.py ├── configuration_camembert.py ├── configuration_ctrl.py ├── configuration_distilbert.py ├── configuration_electra.py ├── configuration_encoder_decoder.py ├── configuration_flaubert.py ├── configuration_gpt2.py ├── configuration_longformer.py ├── configuration_marian.py ├── configuration_mmbt.py ├── configuration_openai.py ├── configuration_reformer.py ├── configuration_roberta.py ├── configuration_t5.py ├── configuration_transfo_xl.py ├── configuration_utils.py ├── configuration_xlm.py ├── configuration_xlm_roberta.py ├── configuration_xlnet.py ├── convert_albert_original_tf_checkpoint_to_pytorch.py ├── convert_bart_original_pytorch_checkpoint_to_pytorch.py ├── convert_bert_original_tf_checkpoint_to_pytorch.py ├── convert_bert_pytorch_checkpoint_to_original_tf.py ├── convert_dialogpt_original_pytorch_checkpoint_to_pytorch.py ├── convert_electra_original_tf_checkpoint_to_pytorch.py ├── convert_gpt2_original_tf_checkpoint_to_pytorch.py ├── convert_graph_to_onnx.py ├── convert_marian_to_pytorch.py ├── convert_openai_original_tf_checkpoint_to_pytorch.py ├── convert_pytorch_checkpoint_to_tf2.py ├── convert_reformer_trax_checkpoint_to_pytorch.py ├── convert_roberta_original_pytorch_checkpoint_to_pytorch.py ├── convert_t5_original_tf_checkpoint_to_pytorch.py ├── convert_transfo_xl_original_tf_checkpoint_to_pytorch.py ├── convert_xlm_original_pytorch_checkpoint_to_pytorch.py ├── convert_xlnet_original_tf_checkpoint_to_pytorch.py ├── data │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── data_collator.cpython-36.pyc │ ├── data_collator.py │ ├── datasets │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── glue.cpython-36.pyc │ │ │ └── language_modeling.cpython-36.pyc │ │ ├── glue.py │ │ └── language_modeling.py │ ├── metrics │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ │ └── squad_metrics.py │ └── processors │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── glue.cpython-36.pyc │ │ ├── squad.cpython-36.pyc │ │ ├── utils.cpython-36.pyc │ │ └── xnli.cpython-36.pyc │ │ ├── glue.py │ │ ├── squad.py │ │ ├── utils.py │ │ └── xnli.py ├── file_utils.py ├── hf_api.py ├── hf_argparser.py ├── mask_trainer_mlm.py ├── masking │ ├── __pycache__ │ │ ├── maskers.cpython-36.pyc │ │ └── sparsity_control.cpython-36.pyc │ ├── maskers.py │ └── sparsity_control.py ├── modelcard.py ├── modeling_albert.py ├── modeling_auto.py ├── modeling_bart.py ├── modeling_bert.py ├── modeling_camembert.py ├── modeling_ctrl.py ├── modeling_distilbert.py ├── modeling_electra.py ├── modeling_encoder_decoder.py ├── modeling_flaubert.py ├── modeling_gpt2.py ├── modeling_longformer.py ├── modeling_marian.py ├── modeling_mmbt.py ├── modeling_openai.py ├── modeling_reformer.py ├── modeling_roberta.py ├── modeling_t5.py ├── modeling_tf_albert.py ├── modeling_tf_auto.py ├── modeling_tf_bert.py ├── modeling_tf_camembert.py ├── modeling_tf_ctrl.py ├── modeling_tf_distilbert.py ├── modeling_tf_electra.py ├── modeling_tf_flaubert.py ├── modeling_tf_gpt2.py ├── modeling_tf_openai.py ├── modeling_tf_pytorch_utils.py ├── modeling_tf_roberta.py ├── modeling_tf_t5.py ├── modeling_tf_transfo_xl.py ├── modeling_tf_transfo_xl_utilities.py ├── modeling_tf_utils.py ├── modeling_tf_xlm.py ├── modeling_tf_xlm_roberta.py ├── modeling_tf_xlnet.py ├── modeling_transfo_xl.py ├── modeling_transfo_xl_utilities.py ├── modeling_utils.py ├── modeling_xlm.py ├── modeling_xlm_roberta.py ├── modeling_xlnet.py ├── optimization.py ├── optimization_tf.py ├── pipelines.py ├── structured_mask_trainer_mlm.py ├── tokenization_albert.py ├── tokenization_auto.py ├── tokenization_bart.py ├── tokenization_bert.py ├── tokenization_bert_japanese.py ├── tokenization_camembert.py ├── tokenization_ctrl.py ├── tokenization_distilbert.py ├── tokenization_electra.py ├── tokenization_flaubert.py ├── tokenization_gpt2.py ├── tokenization_longformer.py ├── tokenization_marian.py ├── tokenization_openai.py ├── tokenization_reformer.py ├── tokenization_roberta.py ├── tokenization_t5.py ├── tokenization_transfo_xl.py ├── tokenization_utils.py ├── tokenization_xlm.py ├── tokenization_xlm_roberta.py ├── tokenization_xlnet.py ├── trainer.py ├── trainer_tf.py ├── trainer_utils.py ├── training_args.py └── training_args_tf.py ├── mask_dist.py ├── masking ├── __pycache__ │ ├── maskers.cpython-36.pyc │ └── sparsity_control.cpython-36.pyc ├── maskers.py ├── maskers.py.v1 └── sparsity_control.py ├── optimization.py ├── pregenerate_training_data.py ├── shell_scripts ├── eval_kd │ ├── imp.sh │ ├── omp.sh │ ├── rand.sh │ ├── tamt_kd.sh │ └── tamt_mlm.sh ├── eval_mlm │ ├── bert.sh │ ├── imp.sh │ ├── omp.sh │ ├── rand.sh │ ├── tamt_kd.sh │ └── tamt_mlm.sh ├── generate_kd_data_bert.sh ├── generate_kd_data_roberta.sh ├── mask_dist.sh ├── mask_sim.sh ├── train_kd │ ├── bert │ │ ├── 0.5.sh │ │ ├── 0.6.sh │ │ ├── 0.7.sh │ │ ├── 0.8.sh │ │ ├── 0.9.sh │ │ └── rand_mask_init │ │ │ └── 0.7.sh │ └── roberta │ │ ├── 0.2.sh │ │ ├── 0.3.sh │ │ ├── 0.4.sh │ │ ├── 0.5.sh │ │ ├── 0.6.sh │ │ ├── 0.7.sh │ │ ├── 0.8.sh │ │ └── 0.9.sh ├── train_mlm │ ├── bert │ │ ├── 0.2.sh │ │ ├── 0.3.sh │ │ ├── 0.4.sh │ │ ├── 0.5.sh │ │ ├── 0.6.sh │ │ ├── 0.7.sh │ │ ├── 0.8.sh │ │ ├── 0.9.sh │ │ └── rand_init_mask │ │ │ └── 0.7.sh │ └── roberta │ │ ├── 0.2.sh │ │ ├── 0.3.sh │ │ ├── 0.4.sh │ │ ├── 0.5.sh │ │ ├── 0.6.sh │ │ ├── 0.7.sh │ │ ├── 0.8.sh │ │ └── 0.9.sh └── train_mlm_kd │ ├── bert │ ├── 0.2.sh │ ├── 0.3.sh │ ├── 0.4.sh │ ├── 0.5.sh │ ├── 0.6.sh │ ├── 0.7.sh │ ├── 0.8.sh │ └── 0.9.sh │ └── roberta │ ├── 0.2.sh │ ├── 0.3.sh │ ├── 0.4.sh │ ├── 0.5.sh │ ├── 0.6.sh │ ├── 0.7.sh │ ├── 0.8.sh │ └── 0.9.sh ├── train_kd.py ├── train_mlm.py ├── transformer ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── configuration_bert_prun.cpython-36.pyc │ ├── file_utils.cpython-36.pyc │ ├── file_utils.cpython-37.pyc │ ├── modeling.cpython-36.pyc │ ├── modeling.cpython-37.pyc │ ├── modeling_for_mag_prun.cpython-36.pyc │ ├── modeling_prun.cpython-36.pyc │ ├── modeling_prun.cpython-37.pyc │ ├── optimization.cpython-36.pyc │ ├── optimization.cpython-37.pyc │ ├── tokenization.cpython-36.pyc │ └── tokenization.cpython-37.pyc ├── configuration_bert_prun.py ├── file_utils.py ├── modeling.py ├── modeling_for_mag_prun.py ├── modeling_prun.py ├── optimization.py └── tokenization.py └── utils ├── __pycache__ └── param_parser.cpython-36.pyc └── param_parser.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/README.md -------------------------------------------------------------------------------- /figures/loss_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/figures/loss_acc.png -------------------------------------------------------------------------------- /figures/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/figures/method.png -------------------------------------------------------------------------------- /imp_and_fine_tune/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/LICENSE -------------------------------------------------------------------------------- /imp_and_fine_tune/LT_pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/LT_pretrain.py -------------------------------------------------------------------------------- /imp_and_fine_tune/glue_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/glue_trans.py -------------------------------------------------------------------------------- /imp_and_fine_tune/glue_trans_few.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/glue_trans_few.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/__init__.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/__init__.pyc -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/__pycache__/modelcard.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/__pycache__/modelcard.cpython-36.pyc -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/__pycache__/pipelines.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/__pycache__/pipelines.cpython-36.pyc -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/__pycache__/trainer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/__pycache__/trainer.cpython-36.pyc -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/activations.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/benchmark_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/benchmark_utils.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/commands/__init__.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/commands/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/commands/convert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/commands/download.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/commands/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/commands/env.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/commands/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/commands/run.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/commands/serving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/commands/serving.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/commands/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/commands/train.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/commands/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/commands/user.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_albert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_albert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_auto.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_bart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_bart.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_bert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_camembert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_camembert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_ctrl.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_distilbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_distilbert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_electra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_electra.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_encoder_decoder.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_flaubert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_flaubert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_gpt2.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_longformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_longformer.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_marian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_marian.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_mmbt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_mmbt.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_openai.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_reformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_reformer.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_roberta.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_t5.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_transfo_xl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_transfo_xl.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_utils.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_xlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_xlm.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_xlm_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_xlm_roberta.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/configuration_xlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/configuration_xlnet.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/convert_graph_to_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/convert_graph_to_onnx.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/convert_marian_to_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/convert_marian_to_pytorch.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/convert_pytorch_checkpoint_to_tf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/convert_pytorch_checkpoint_to_tf2.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/data/__init__.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/data/data_collator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/data/data_collator.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/data/datasets/__init__.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/data/datasets/glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/data/datasets/glue.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/data/datasets/language_modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/data/datasets/language_modeling.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/data/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/data/metrics/__init__.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/data/metrics/squad_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/data/metrics/squad_metrics.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/data/processors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/data/processors/__init__.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/data/processors/glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/data/processors/glue.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/data/processors/squad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/data/processors/squad.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/data/processors/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/data/processors/utils.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/data/processors/xnli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/data/processors/xnli.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/file_utils.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/hf_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/hf_api.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/hf_argparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/hf_argparser.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/mask_trainer_mlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/mask_trainer_mlm.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/masking/maskers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/masking/maskers.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/masking/sparsity_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/masking/sparsity_control.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modelcard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modelcard.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_albert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_albert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_auto.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_bart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_bart.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_bert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_camembert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_camembert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_ctrl.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_distilbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_distilbert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_electra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_electra.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_encoder_decoder.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_flaubert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_flaubert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_gpt2.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_longformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_longformer.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_marian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_marian.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_mmbt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_mmbt.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_openai.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_reformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_reformer.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_roberta.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_t5.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_albert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_albert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_auto.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_bert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_camembert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_camembert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_ctrl.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_distilbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_distilbert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_electra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_electra.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_flaubert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_flaubert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_gpt2.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_openai.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_pytorch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_pytorch_utils.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_roberta.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_t5.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_transfo_xl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_transfo_xl.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_transfo_xl_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_transfo_xl_utilities.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_utils.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_xlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_xlm.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_xlm_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_xlm_roberta.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_tf_xlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_tf_xlnet.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_transfo_xl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_transfo_xl.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_transfo_xl_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_transfo_xl_utilities.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_utils.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_xlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_xlm.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_xlm_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_xlm_roberta.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/modeling_xlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/modeling_xlnet.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/optimization.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/optimization_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/optimization_tf.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/pipelines.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/structured_mask_trainer_mlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/structured_mask_trainer_mlm.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_albert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_albert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_auto.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_bart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_bart.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_bert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_bert_japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_bert_japanese.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_camembert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_camembert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_ctrl.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_distilbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_distilbert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_electra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_electra.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_flaubert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_flaubert.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_gpt2.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_longformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_longformer.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_marian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_marian.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_openai.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_reformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_reformer.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_roberta.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_t5.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_transfo_xl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_transfo_xl.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_utils.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_xlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_xlm.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_xlm_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_xlm_roberta.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/tokenization_xlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/tokenization_xlnet.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/trainer.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/trainer_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/trainer_tf.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/trainer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/trainer_utils.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/training_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/training_args.py -------------------------------------------------------------------------------- /imp_and_fine_tune/hg_transformers/training_args_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/hg_transformers/training_args_tf.py -------------------------------------------------------------------------------- /imp_and_fine_tune/oneshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/oneshot.py -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/oneshot/bert_mag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/oneshot/bert_mag.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/oneshot/bert_rand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/oneshot/bert_rand.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/oneshot/roberta_mag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/oneshot/roberta_mag.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/oneshot/roberta_rand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/oneshot/roberta_rand.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/full_bert/cola/1k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/full_bert/cola/1k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/full_bert/cola/2k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/full_bert/cola/2k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/full_bert/cola/5k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/full_bert/cola/5k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/full_bert/mnli/1k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/full_bert/mnli/1k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/full_bert/mnli/5k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/full_bert/mnli/5k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/cola/1k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/cola/1k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/cola/2k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/cola/2k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/cola/5k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/cola/5k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/mnli/100k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/mnli/100k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/mnli/10k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/mnli/10k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/mnli/1k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/mnli/1k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/mnli/50k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/mnli/50k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/mnli/5k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/mnli/5k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/squad/10k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/squad/10k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/squad/1k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/squad/1k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/squad/20k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/squad/20k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/squad/40k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/squad/40k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/squad/5k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/squad/5k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/sst-2/10k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/sst-2/10k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/sst-2/1k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/sst-2/1k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/sst-2/30k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/sst-2/30k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/sst-2/5k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/oneshot/sst-2/5k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/train_kd/mnli/10k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/train_kd/mnli/10k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/train_kd/mnli/1k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/train_kd/mnli/1k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/train_kd/mnli/5k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/train_kd/mnli/5k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/train_kd/squad/1k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/train_kd/squad/1k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/train_kd/squad/5k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/train_kd/squad/5k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/train_mlm/mnli/1k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/train_mlm/mnli/1k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/few_shot/train_mlm/mnli/5k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/few_shot/train_mlm/mnli/5k.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/full_bert/cola.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/full_bert/cola.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/full_bert/mnli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/full_bert/mnli.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/full_bert/mrpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/full_bert/mrpc.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/full_bert/rte.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/full_bert/rte.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/full_bert/sst-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/full_bert/sst-2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/full_bert/sts-b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/full_bert/sts-b.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/full_roberta/cola.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/full_roberta/cola.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/full_roberta/mnli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/full_roberta/mnli.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/full_roberta/mrpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/full_roberta/mrpc.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/full_roberta/rte.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/full_roberta/rte.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/full_roberta/sst-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/full_roberta/sst-2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/full_roberta/sts-b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/full_roberta/sts-b.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/cola/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/cola/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/cola/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/cola/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/cola/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/cola/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/cola/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/cola/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/cola/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/cola/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mnli/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mnli/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mnli/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mnli/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mnli/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mnli/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mnli/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mnli/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mnli/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mnli/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mrpc/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mrpc/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mrpc/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mrpc/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mrpc/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mrpc/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mrpc/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mrpc/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mrpc/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mrpc/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mrpc/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mrpc/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mrpc/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/mrpc/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/rte/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/rte/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/rte/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/rte/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/rte/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/rte/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/rte/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/rte/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/rte/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/rte/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/rte/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/rte/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/rte/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/imp_pretrain/bert/rte/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/cola/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mnli/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/mrpc/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/rte/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sst-2/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/bert/sts-b/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/cola/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mnli/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/mrpc/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/rte/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sst-2/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/oneshot/roberta/sts-b/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/cola/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mnli/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/mrpc/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/rte/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sst-2/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/bert/sts-b/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/cola/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mnli/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/mrpc/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/rte/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sst-2/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/rand/roberta/sts-b/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/train_mlm_kd/bert/cola/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/train_mlm_kd/bert/cola/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/train_mlm_kd/bert/cola/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/train_mlm_kd/bert/cola/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/train_mlm_kd/bert/cola/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/train_mlm_kd/bert/cola/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/train_mlm_kd/bert/cola/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/train_mlm_kd/bert/cola/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/train_mlm_kd/bert/cola/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/train_mlm_kd/bert/cola/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_glue/train_mlm_kd/bert/cola/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_glue/train_mlm_kd/bert/cola/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/full_bert/squad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/full_bert/squad.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/full_roberta/squad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/full_roberta/squad.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/imp_pretrain/bert/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/imp_pretrain/bert/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/imp_pretrain/bert/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/imp_pretrain/bert/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/imp_pretrain/bert/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/imp_pretrain/bert/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/imp_pretrain/bert/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/imp_pretrain/bert/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/imp_pretrain/bert/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/imp_pretrain/bert/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/imp_pretrain/roberta/0.5.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/bert/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/oneshot/roberta/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/bert/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/rand/roberta/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_kd/bert/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_kd/bert/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_kd/bert/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_kd/bert/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_kd/bert/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_kd/bert/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_kd/bert/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_kd/bert/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_kd/bert/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_kd/bert/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_kd/roberta/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm/bert/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm/bert/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm/bert/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm/bert/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm/bert/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm/bert/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm/bert/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm/bert/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm/bert/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm/bert/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.1.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.2.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.3.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.4.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm/roberta/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm_kd/bert/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm_kd/bert/0.5.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm_kd/bert/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm_kd/bert/0.6.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm_kd/bert/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm_kd/bert/0.7.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm_kd/bert/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm_kd/bert/0.8.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/shell_scripts/run_squad/train_mlm_kd/bert/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/shell_scripts/run_squad/train_mlm_kd/bert/0.9.sh -------------------------------------------------------------------------------- /imp_and_fine_tune/squad_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/squad_trans.py -------------------------------------------------------------------------------- /imp_and_fine_tune/squad_trans_few.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/imp_and_fine_tune/squad_trans_few.py -------------------------------------------------------------------------------- /mask_training/compare_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/compare_mask.py -------------------------------------------------------------------------------- /mask_training/eval_kd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/eval_kd.py -------------------------------------------------------------------------------- /mask_training/eval_mlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/eval_mlm.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/__init__.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/__init__.pyc -------------------------------------------------------------------------------- /mask_training/hg_transformers/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/activations.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/benchmark_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/benchmark_utils.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/commands/__init__.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/commands/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/commands/convert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/commands/download.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/commands/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/commands/env.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/commands/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/commands/run.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/commands/serving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/commands/serving.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/commands/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/commands/train.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/commands/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/commands/user.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_albert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_albert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_auto.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_bart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_bart.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_bert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_camembert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_camembert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_ctrl.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_distilbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_distilbert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_electra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_electra.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_encoder_decoder.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_flaubert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_flaubert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_gpt2.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_longformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_longformer.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_marian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_marian.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_mmbt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_mmbt.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_openai.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_reformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_reformer.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_roberta.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_t5.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_transfo_xl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_transfo_xl.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_utils.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_xlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_xlm.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_xlm_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_xlm_roberta.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/configuration_xlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/configuration_xlnet.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/convert_graph_to_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/convert_graph_to_onnx.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/convert_marian_to_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/convert_marian_to_pytorch.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/convert_pytorch_checkpoint_to_tf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/convert_pytorch_checkpoint_to_tf2.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/data/__init__.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/data/data_collator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/data/data_collator.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/data/datasets/__init__.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/data/datasets/glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/data/datasets/glue.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/data/datasets/language_modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/data/datasets/language_modeling.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/data/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/data/metrics/__init__.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/data/metrics/squad_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/data/metrics/squad_metrics.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/data/processors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/data/processors/__init__.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/data/processors/glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/data/processors/glue.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/data/processors/squad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/data/processors/squad.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/data/processors/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/data/processors/utils.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/data/processors/xnli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/data/processors/xnli.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/file_utils.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/hf_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/hf_api.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/hf_argparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/hf_argparser.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/mask_trainer_mlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/mask_trainer_mlm.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/masking/maskers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/masking/maskers.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/masking/sparsity_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/masking/sparsity_control.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modelcard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modelcard.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_albert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_albert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_auto.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_bart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_bart.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_bert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_camembert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_camembert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_ctrl.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_distilbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_distilbert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_electra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_electra.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_encoder_decoder.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_flaubert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_flaubert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_gpt2.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_longformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_longformer.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_marian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_marian.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_mmbt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_mmbt.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_openai.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_reformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_reformer.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_roberta.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_t5.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_albert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_albert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_auto.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_bert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_camembert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_camembert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_ctrl.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_distilbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_distilbert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_electra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_electra.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_flaubert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_flaubert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_gpt2.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_openai.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_pytorch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_pytorch_utils.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_roberta.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_t5.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_transfo_xl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_transfo_xl.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_transfo_xl_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_transfo_xl_utilities.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_utils.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_xlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_xlm.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_xlm_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_xlm_roberta.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_tf_xlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_tf_xlnet.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_transfo_xl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_transfo_xl.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_transfo_xl_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_transfo_xl_utilities.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_utils.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_xlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_xlm.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_xlm_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_xlm_roberta.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/modeling_xlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/modeling_xlnet.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/optimization.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/optimization_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/optimization_tf.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/pipelines.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/structured_mask_trainer_mlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/structured_mask_trainer_mlm.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_albert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_albert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_auto.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_bart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_bart.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_bert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_bert_japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_bert_japanese.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_camembert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_camembert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_ctrl.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_distilbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_distilbert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_electra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_electra.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_flaubert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_flaubert.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_gpt2.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_longformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_longformer.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_marian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_marian.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_openai.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_reformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_reformer.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_roberta.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_t5.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_transfo_xl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_transfo_xl.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_utils.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_xlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_xlm.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_xlm_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_xlm_roberta.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/tokenization_xlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/tokenization_xlnet.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/trainer.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/trainer_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/trainer_tf.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/trainer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/trainer_utils.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/training_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/training_args.py -------------------------------------------------------------------------------- /mask_training/hg_transformers/training_args_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/hg_transformers/training_args_tf.py -------------------------------------------------------------------------------- /mask_training/mask_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/mask_dist.py -------------------------------------------------------------------------------- /mask_training/masking/__pycache__/maskers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/masking/__pycache__/maskers.cpython-36.pyc -------------------------------------------------------------------------------- /mask_training/masking/__pycache__/sparsity_control.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/masking/__pycache__/sparsity_control.cpython-36.pyc -------------------------------------------------------------------------------- /mask_training/masking/maskers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/masking/maskers.py -------------------------------------------------------------------------------- /mask_training/masking/maskers.py.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/masking/maskers.py.v1 -------------------------------------------------------------------------------- /mask_training/masking/sparsity_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/masking/sparsity_control.py -------------------------------------------------------------------------------- /mask_training/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/optimization.py -------------------------------------------------------------------------------- /mask_training/pregenerate_training_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/pregenerate_training_data.py -------------------------------------------------------------------------------- /mask_training/shell_scripts/eval_kd/imp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/eval_kd/imp.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/eval_kd/omp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/eval_kd/omp.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/eval_kd/rand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/eval_kd/rand.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/eval_kd/tamt_kd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/eval_kd/tamt_kd.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/eval_kd/tamt_mlm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/eval_kd/tamt_mlm.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/eval_mlm/bert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/eval_mlm/bert.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/eval_mlm/imp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/eval_mlm/imp.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/eval_mlm/omp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/eval_mlm/omp.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/eval_mlm/rand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/eval_mlm/rand.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/eval_mlm/tamt_kd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/eval_mlm/tamt_kd.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/eval_mlm/tamt_mlm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/eval_mlm/tamt_mlm.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/generate_kd_data_bert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/generate_kd_data_bert.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/generate_kd_data_roberta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/generate_kd_data_roberta.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/mask_dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/mask_dist.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/mask_sim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/mask_sim.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_kd/bert/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_kd/bert/0.5.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_kd/bert/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_kd/bert/0.6.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_kd/bert/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_kd/bert/0.7.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_kd/bert/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_kd/bert/0.8.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_kd/bert/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_kd/bert/0.9.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_kd/bert/rand_mask_init/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_kd/bert/rand_mask_init/0.7.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_kd/roberta/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_kd/roberta/0.2.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_kd/roberta/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_kd/roberta/0.3.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_kd/roberta/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_kd/roberta/0.4.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_kd/roberta/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_kd/roberta/0.5.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_kd/roberta/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_kd/roberta/0.6.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_kd/roberta/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_kd/roberta/0.7.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_kd/roberta/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_kd/roberta/0.8.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_kd/roberta/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_kd/roberta/0.9.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/bert/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/bert/0.2.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/bert/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/bert/0.3.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/bert/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/bert/0.4.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/bert/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/bert/0.5.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/bert/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/bert/0.6.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/bert/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/bert/0.7.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/bert/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/bert/0.8.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/bert/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/bert/0.9.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/bert/rand_init_mask/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/bert/rand_init_mask/0.7.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/roberta/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/roberta/0.2.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/roberta/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/roberta/0.3.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/roberta/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/roberta/0.4.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/roberta/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/roberta/0.5.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/roberta/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/roberta/0.6.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/roberta/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/roberta/0.7.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/roberta/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/roberta/0.8.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm/roberta/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm/roberta/0.9.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/bert/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/bert/0.2.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/bert/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/bert/0.3.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/bert/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/bert/0.4.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/bert/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/bert/0.5.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/bert/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/bert/0.6.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/bert/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/bert/0.7.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/bert/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/bert/0.8.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/bert/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/bert/0.9.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/roberta/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/roberta/0.2.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/roberta/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/roberta/0.3.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/roberta/0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/roberta/0.4.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/roberta/0.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/roberta/0.5.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/roberta/0.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/roberta/0.6.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/roberta/0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/roberta/0.7.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/roberta/0.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/roberta/0.8.sh -------------------------------------------------------------------------------- /mask_training/shell_scripts/train_mlm_kd/roberta/0.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/shell_scripts/train_mlm_kd/roberta/0.9.sh -------------------------------------------------------------------------------- /mask_training/train_kd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/train_kd.py -------------------------------------------------------------------------------- /mask_training/train_mlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/train_mlm.py -------------------------------------------------------------------------------- /mask_training/transformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/__init__.py -------------------------------------------------------------------------------- /mask_training/transformer/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /mask_training/transformer/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mask_training/transformer/__pycache__/file_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/__pycache__/file_utils.cpython-36.pyc -------------------------------------------------------------------------------- /mask_training/transformer/__pycache__/file_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/__pycache__/file_utils.cpython-37.pyc -------------------------------------------------------------------------------- /mask_training/transformer/__pycache__/modeling.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/__pycache__/modeling.cpython-36.pyc -------------------------------------------------------------------------------- /mask_training/transformer/__pycache__/modeling.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/__pycache__/modeling.cpython-37.pyc -------------------------------------------------------------------------------- /mask_training/transformer/__pycache__/modeling_prun.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/__pycache__/modeling_prun.cpython-36.pyc -------------------------------------------------------------------------------- /mask_training/transformer/__pycache__/modeling_prun.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/__pycache__/modeling_prun.cpython-37.pyc -------------------------------------------------------------------------------- /mask_training/transformer/__pycache__/optimization.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/__pycache__/optimization.cpython-36.pyc -------------------------------------------------------------------------------- /mask_training/transformer/__pycache__/optimization.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/__pycache__/optimization.cpython-37.pyc -------------------------------------------------------------------------------- /mask_training/transformer/__pycache__/tokenization.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/__pycache__/tokenization.cpython-36.pyc -------------------------------------------------------------------------------- /mask_training/transformer/__pycache__/tokenization.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/__pycache__/tokenization.cpython-37.pyc -------------------------------------------------------------------------------- /mask_training/transformer/configuration_bert_prun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/configuration_bert_prun.py -------------------------------------------------------------------------------- /mask_training/transformer/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/file_utils.py -------------------------------------------------------------------------------- /mask_training/transformer/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/modeling.py -------------------------------------------------------------------------------- /mask_training/transformer/modeling_for_mag_prun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/modeling_for_mag_prun.py -------------------------------------------------------------------------------- /mask_training/transformer/modeling_prun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/modeling_prun.py -------------------------------------------------------------------------------- /mask_training/transformer/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/optimization.py -------------------------------------------------------------------------------- /mask_training/transformer/tokenization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/transformer/tokenization.py -------------------------------------------------------------------------------- /mask_training/utils/__pycache__/param_parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/utils/__pycache__/param_parser.cpython-36.pyc -------------------------------------------------------------------------------- /mask_training/utils/param_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llyx97/TAMT/HEAD/mask_training/utils/param_parser.py --------------------------------------------------------------------------------