├── README.md ├── augment.py ├── checkpoints └── .gitkeep ├── create_sample_sub.py ├── datasets.py ├── download_weights.py ├── download_weights.sh ├── engine.py ├── ensemble.py ├── environment.yml ├── extract_frame.py ├── losses.py ├── main.py ├── models ├── __pycache__ │ ├── convnext.cpython-36.pyc │ ├── convnext_isotropic.cpython-36.pyc │ ├── regnet.cpython-36.pyc │ ├── swin_transformer_v2.cpython-36.pyc │ └── vision_transformer.cpython-36.pyc ├── convnext.py ├── convnext_isotropic.py ├── regnet.py ├── swin_transformer_v2.py └── vision_transformer.py ├── optim_factory.py ├── predict.py ├── predict.sh ├── prepare_data.py ├── prepare_data.sh ├── sample ├── PrivateSample.csv ├── SampleSubmission.csv └── SampleSubmission_old.csv ├── scripts ├── predict.sh ├── predict_convnext_large_fold0.sh ├── predict_convnext_large_fold1.sh ├── predict_convnext_large_fold2.sh ├── predict_convnext_large_fold3.sh ├── predict_convnext_large_fold4.sh ├── predict_convnext_xlarge_fold0.sh ├── predict_convnext_xlarge_fold1.sh ├── predict_convnext_xlarge_fold2.sh ├── predict_convnext_xlarge_fold3.sh ├── predict_convnext_xlarge_fold4.sh ├── train.sh ├── train_convnext_large_fold0.sh ├── train_convnext_large_fold1.sh ├── train_convnext_large_fold2.sh ├── train_convnext_large_fold3.sh ├── train_convnext_large_fold4.sh ├── train_convnext_xlarge_fold0.sh ├── train_convnext_xlarge_fold1.sh ├── train_convnext_xlarge_fold2.sh ├── train_convnext_xlarge_fold3.sh └── train_convnext_xlarge_fold4.sh ├── test.jpg ├── utils.py └── weights └── .gitkeep /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/README.md -------------------------------------------------------------------------------- /augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/augment.py -------------------------------------------------------------------------------- /checkpoints/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_sample_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/create_sample_sub.py -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/datasets.py -------------------------------------------------------------------------------- /download_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/download_weights.py -------------------------------------------------------------------------------- /download_weights.sh: -------------------------------------------------------------------------------- 1 | python download_weights.py -------------------------------------------------------------------------------- /engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/engine.py -------------------------------------------------------------------------------- /ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/ensemble.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/environment.yml -------------------------------------------------------------------------------- /extract_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/extract_frame.py -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/losses.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/main.py -------------------------------------------------------------------------------- /models/__pycache__/convnext.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/models/__pycache__/convnext.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/convnext_isotropic.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/models/__pycache__/convnext_isotropic.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/regnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/models/__pycache__/regnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/swin_transformer_v2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/models/__pycache__/swin_transformer_v2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/vision_transformer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/models/__pycache__/vision_transformer.cpython-36.pyc -------------------------------------------------------------------------------- /models/convnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/models/convnext.py -------------------------------------------------------------------------------- /models/convnext_isotropic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/models/convnext_isotropic.py -------------------------------------------------------------------------------- /models/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/models/regnet.py -------------------------------------------------------------------------------- /models/swin_transformer_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/models/swin_transformer_v2.py -------------------------------------------------------------------------------- /models/vision_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/models/vision_transformer.py -------------------------------------------------------------------------------- /optim_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/optim_factory.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/predict.py -------------------------------------------------------------------------------- /predict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/predict.sh -------------------------------------------------------------------------------- /prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/prepare_data.py -------------------------------------------------------------------------------- /prepare_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/prepare_data.sh -------------------------------------------------------------------------------- /sample/PrivateSample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/sample/PrivateSample.csv -------------------------------------------------------------------------------- /sample/SampleSubmission.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/sample/SampleSubmission.csv -------------------------------------------------------------------------------- /sample/SampleSubmission_old.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/sample/SampleSubmission_old.csv -------------------------------------------------------------------------------- /scripts/predict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/predict.sh -------------------------------------------------------------------------------- /scripts/predict_convnext_large_fold0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/predict_convnext_large_fold0.sh -------------------------------------------------------------------------------- /scripts/predict_convnext_large_fold1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/predict_convnext_large_fold1.sh -------------------------------------------------------------------------------- /scripts/predict_convnext_large_fold2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/predict_convnext_large_fold2.sh -------------------------------------------------------------------------------- /scripts/predict_convnext_large_fold3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/predict_convnext_large_fold3.sh -------------------------------------------------------------------------------- /scripts/predict_convnext_large_fold4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/predict_convnext_large_fold4.sh -------------------------------------------------------------------------------- /scripts/predict_convnext_xlarge_fold0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/predict_convnext_xlarge_fold0.sh -------------------------------------------------------------------------------- /scripts/predict_convnext_xlarge_fold1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/predict_convnext_xlarge_fold1.sh -------------------------------------------------------------------------------- /scripts/predict_convnext_xlarge_fold2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/predict_convnext_xlarge_fold2.sh -------------------------------------------------------------------------------- /scripts/predict_convnext_xlarge_fold3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/predict_convnext_xlarge_fold3.sh -------------------------------------------------------------------------------- /scripts/predict_convnext_xlarge_fold4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/predict_convnext_xlarge_fold4.sh -------------------------------------------------------------------------------- /scripts/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/train.sh -------------------------------------------------------------------------------- /scripts/train_convnext_large_fold0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/train_convnext_large_fold0.sh -------------------------------------------------------------------------------- /scripts/train_convnext_large_fold1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/train_convnext_large_fold1.sh -------------------------------------------------------------------------------- /scripts/train_convnext_large_fold2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/train_convnext_large_fold2.sh -------------------------------------------------------------------------------- /scripts/train_convnext_large_fold3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/train_convnext_large_fold3.sh -------------------------------------------------------------------------------- /scripts/train_convnext_large_fold4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/train_convnext_large_fold4.sh -------------------------------------------------------------------------------- /scripts/train_convnext_xlarge_fold0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/train_convnext_xlarge_fold0.sh -------------------------------------------------------------------------------- /scripts/train_convnext_xlarge_fold1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/train_convnext_xlarge_fold1.sh -------------------------------------------------------------------------------- /scripts/train_convnext_xlarge_fold2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/train_convnext_xlarge_fold2.sh -------------------------------------------------------------------------------- /scripts/train_convnext_xlarge_fold3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/train_convnext_xlarge_fold3.sh -------------------------------------------------------------------------------- /scripts/train_convnext_xlarge_fold4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/scripts/train_convnext_xlarge_fold4.sh -------------------------------------------------------------------------------- /test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/test.jpg -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungk64it1x/zac-2022/HEAD/utils.py -------------------------------------------------------------------------------- /weights/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------