├── .gitignore ├── README.md ├── ablation_model_links.txt ├── convert.py ├── resnet.py ├── run_convert.sh └── validate.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajtejankar/byol-convert/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajtejankar/byol-convert/HEAD/README.md -------------------------------------------------------------------------------- /ablation_model_links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajtejankar/byol-convert/HEAD/ablation_model_links.txt -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajtejankar/byol-convert/HEAD/convert.py -------------------------------------------------------------------------------- /resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajtejankar/byol-convert/HEAD/resnet.py -------------------------------------------------------------------------------- /run_convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajtejankar/byol-convert/HEAD/run_convert.sh -------------------------------------------------------------------------------- /validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajtejankar/byol-convert/HEAD/validate.py --------------------------------------------------------------------------------