diff --git a/.gitignore b/.gitignore index e986c59..c25b17a 100644 --- a/.gitignore +++ b/.gitignore @@ -10,4 +10,5 @@ dist/ .vscode/ **/logs/ -**/checkpoints/ \ No newline at end of file +**/checkpoints/ +distillation_old/ \ No newline at end of file diff --git a/distillation_real/config/config.yaml b/distillation/config/config.yaml similarity index 100% rename from distillation_real/config/config.yaml rename to distillation/config/config.yaml diff --git a/distillation_real/config/config_stdc.yaml b/distillation/config/config_stdc.yaml similarity index 100% rename from distillation_real/config/config_stdc.yaml rename to distillation/config/config_stdc.yaml diff --git a/distillation_real/datasets/GTA5.py b/distillation/datasets/GTA5.py similarity index 100% rename from distillation_real/datasets/GTA5.py rename to distillation/datasets/GTA5.py diff --git a/distillation_real/datasets/__init__.py b/distillation/datasets/__init__.py similarity index 100% rename from distillation_real/datasets/__init__.py rename to distillation/datasets/__init__.py diff --git a/distillation_real/datasets/collate_fn.py b/distillation/datasets/collate_fn.py similarity index 100% rename from distillation_real/datasets/collate_fn.py rename to distillation/datasets/collate_fn.py diff --git a/distillation_real/datasets/imagenet.py b/distillation/datasets/imagenet.py similarity index 100% rename from distillation_real/datasets/imagenet.py rename to distillation/datasets/imagenet.py diff --git a/distillation_real/models/__init__.py b/distillation/models/__init__.py similarity index 100% rename from distillation_real/models/__init__.py rename to distillation/models/__init__.py diff --git a/distillation_real/models/base.py b/distillation/models/base.py similarity index 100% rename from distillation_real/models/base.py rename to distillation/models/base.py diff --git a/distillation_real/models/dinov2.py b/distillation/models/dinov2.py similarity index 100% rename from distillation_real/models/dinov2.py rename to distillation/models/dinov2.py diff --git a/distillation_real/models/feature_matcher.py b/distillation/models/feature_matcher.py similarity index 100% rename from distillation_real/models/feature_matcher.py rename to distillation/models/feature_matcher.py diff --git a/distillation_real/models/model_wrapper.py b/distillation/models/model_wrapper.py similarity index 100% rename from distillation_real/models/model_wrapper.py rename to distillation/models/model_wrapper.py diff --git a/distillation_real/models/resnet.py b/distillation/models/resnet.py similarity index 100% rename from distillation_real/models/resnet.py rename to distillation/models/resnet.py diff --git a/distillation_real/models/resnet_wrapper.py b/distillation/models/resnet_wrapper.py similarity index 100% rename from distillation_real/models/resnet_wrapper.py rename to distillation/models/resnet_wrapper.py diff --git a/distillation_real/models/stdc.py b/distillation/models/stdc.py similarity index 100% rename from distillation_real/models/stdc.py rename to distillation/models/stdc.py diff --git a/distillation_real/models/stdc_wrapper.py b/distillation/models/stdc_wrapper.py similarity index 100% rename from distillation_real/models/stdc_wrapper.py rename to distillation/models/stdc_wrapper.py diff --git a/distillation_real/train.py b/distillation/train.py similarity index 100% rename from distillation_real/train.py rename to distillation/train.py diff --git a/distillation_real/train/__init__.py b/distillation/train/__init__.py similarity index 100% rename from distillation_real/train/__init__.py rename to distillation/train/__init__.py diff --git a/distillation_real/train/distillation_module.py b/distillation/train/distillation_module.py similarity index 100% rename from distillation_real/train/distillation_module.py rename to distillation/train/distillation_module.py