├── LICENSE ├── README.md ├── app ├── search_subbert.py └── train_superbert.py ├── configs ├── CoLA │ ├── search.yaml │ └── train.yaml ├── MNLI │ ├── search.yaml │ └── train.yaml ├── MRPC │ ├── search.yaml │ └── train.yaml ├── QNLI │ ├── search.yaml │ └── train.yaml ├── QQP │ ├── search.yaml │ └── train.yaml ├── RTE │ ├── search.yaml │ └── train.yaml ├── SST-2 │ ├── search.yaml │ └── train.yaml └── config.py ├── model ├── criterion.py └── supermodel.py ├── modules ├── embeddingsuper.py ├── layernormsuper.py ├── linearsuper.py └── probability.py ├── pic ├── compare.png └── overview.png └── utils ├── measure_utils.py ├── space_utils.py └── train_utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/README.md -------------------------------------------------------------------------------- /app/search_subbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/app/search_subbert.py -------------------------------------------------------------------------------- /app/train_superbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/app/train_superbert.py -------------------------------------------------------------------------------- /configs/CoLA/search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/configs/CoLA/search.yaml -------------------------------------------------------------------------------- /configs/CoLA/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/configs/CoLA/train.yaml -------------------------------------------------------------------------------- /configs/MNLI/search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/configs/MNLI/search.yaml -------------------------------------------------------------------------------- /configs/MNLI/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/configs/MNLI/train.yaml -------------------------------------------------------------------------------- /configs/MRPC/search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/configs/MRPC/search.yaml -------------------------------------------------------------------------------- /configs/MRPC/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/configs/MRPC/train.yaml -------------------------------------------------------------------------------- /configs/QNLI/search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/configs/QNLI/search.yaml -------------------------------------------------------------------------------- /configs/QNLI/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/configs/QNLI/train.yaml -------------------------------------------------------------------------------- /configs/QQP/search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/configs/QQP/search.yaml -------------------------------------------------------------------------------- /configs/QQP/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/configs/QQP/train.yaml -------------------------------------------------------------------------------- /configs/RTE/search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/configs/RTE/search.yaml -------------------------------------------------------------------------------- /configs/RTE/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/configs/RTE/train.yaml -------------------------------------------------------------------------------- /configs/SST-2/search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/configs/SST-2/search.yaml -------------------------------------------------------------------------------- /configs/SST-2/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/configs/SST-2/train.yaml -------------------------------------------------------------------------------- /configs/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/configs/config.py -------------------------------------------------------------------------------- /model/criterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/model/criterion.py -------------------------------------------------------------------------------- /model/supermodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/model/supermodel.py -------------------------------------------------------------------------------- /modules/embeddingsuper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/modules/embeddingsuper.py -------------------------------------------------------------------------------- /modules/layernormsuper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/modules/layernormsuper.py -------------------------------------------------------------------------------- /modules/linearsuper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/modules/linearsuper.py -------------------------------------------------------------------------------- /modules/probability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/modules/probability.py -------------------------------------------------------------------------------- /pic/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/pic/compare.png -------------------------------------------------------------------------------- /pic/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/pic/overview.png -------------------------------------------------------------------------------- /utils/measure_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/utils/measure_utils.py -------------------------------------------------------------------------------- /utils/space_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/utils/space_utils.py -------------------------------------------------------------------------------- /utils/train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAC-AutoML/YOCO-BERT/HEAD/utils/train_utils.py --------------------------------------------------------------------------------