├── .gitignore ├── LICENSE ├── README.md ├── imgs └── knowledge-distillation.png ├── knowledge-distillation.ipynb ├── sagemaker-distillation.ipynb └── scripts ├── requirements.txt └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philschmid/knowledge-distillation-transformers-pytorch-sagemaker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philschmid/knowledge-distillation-transformers-pytorch-sagemaker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philschmid/knowledge-distillation-transformers-pytorch-sagemaker/HEAD/README.md -------------------------------------------------------------------------------- /imgs/knowledge-distillation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philschmid/knowledge-distillation-transformers-pytorch-sagemaker/HEAD/imgs/knowledge-distillation.png -------------------------------------------------------------------------------- /knowledge-distillation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philschmid/knowledge-distillation-transformers-pytorch-sagemaker/HEAD/knowledge-distillation.ipynb -------------------------------------------------------------------------------- /sagemaker-distillation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philschmid/knowledge-distillation-transformers-pytorch-sagemaker/HEAD/sagemaker-distillation.ipynb -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philschmid/knowledge-distillation-transformers-pytorch-sagemaker/HEAD/scripts/requirements.txt -------------------------------------------------------------------------------- /scripts/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philschmid/knowledge-distillation-transformers-pytorch-sagemaker/HEAD/scripts/train.py --------------------------------------------------------------------------------