├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── devkit_tools ├── __init__.py ├── benchmarks │ ├── __init__.py │ ├── classification_benchmark.py │ ├── detection_benchmark.py │ ├── make_instance_based.py │ └── remap_category_ids.py ├── challenge_constants.py ├── datasets │ ├── __init__.py │ ├── challenge_classification_dataset.py │ └── challenge_detection_dataset.py ├── load_sample_data.py ├── metrics │ ├── __init__.py │ ├── classification_output_exporter.py │ ├── detection_output_exporter.py │ ├── dictionary_loss.py │ └── ego_evaluator.py └── plugins │ └── model_checkpoint.py ├── docs └── img │ └── od_template.png ├── ego_objects ├── LICENSE ├── __init__.py ├── colormap.py ├── ego_objects.py ├── entries.py ├── eval.py ├── results.py └── vis.py ├── environment.yml ├── reports ├── Track 1 - 1st place - Youtu.pdf ├── Track 1 - 2nd place - BaselineCL.pdf ├── Track 1 - 3rd place - SolangKim.pdf ├── Track 2 - 3rd place - USTC.pdf ├── Track 3 - 3rd place - AngeloMenezes.pdf ├── Tracks 2 and 3 - 1st place - Youtu.pdf └── Tracks 2 and 3 - 2nd place - NUS-LVLAB_ASTAR.pdf ├── starting_template_category_detection.py ├── starting_template_instance_classification.py └── starting_template_instance_detection.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/README.md -------------------------------------------------------------------------------- /devkit_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/devkit_tools/__init__.py -------------------------------------------------------------------------------- /devkit_tools/benchmarks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/devkit_tools/benchmarks/__init__.py -------------------------------------------------------------------------------- /devkit_tools/benchmarks/classification_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/devkit_tools/benchmarks/classification_benchmark.py -------------------------------------------------------------------------------- /devkit_tools/benchmarks/detection_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/devkit_tools/benchmarks/detection_benchmark.py -------------------------------------------------------------------------------- /devkit_tools/benchmarks/make_instance_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/devkit_tools/benchmarks/make_instance_based.py -------------------------------------------------------------------------------- /devkit_tools/benchmarks/remap_category_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/devkit_tools/benchmarks/remap_category_ids.py -------------------------------------------------------------------------------- /devkit_tools/challenge_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/devkit_tools/challenge_constants.py -------------------------------------------------------------------------------- /devkit_tools/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devkit_tools/datasets/challenge_classification_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/devkit_tools/datasets/challenge_classification_dataset.py -------------------------------------------------------------------------------- /devkit_tools/datasets/challenge_detection_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/devkit_tools/datasets/challenge_detection_dataset.py -------------------------------------------------------------------------------- /devkit_tools/load_sample_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/devkit_tools/load_sample_data.py -------------------------------------------------------------------------------- /devkit_tools/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devkit_tools/metrics/classification_output_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/devkit_tools/metrics/classification_output_exporter.py -------------------------------------------------------------------------------- /devkit_tools/metrics/detection_output_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/devkit_tools/metrics/detection_output_exporter.py -------------------------------------------------------------------------------- /devkit_tools/metrics/dictionary_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/devkit_tools/metrics/dictionary_loss.py -------------------------------------------------------------------------------- /devkit_tools/metrics/ego_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/devkit_tools/metrics/ego_evaluator.py -------------------------------------------------------------------------------- /devkit_tools/plugins/model_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/devkit_tools/plugins/model_checkpoint.py -------------------------------------------------------------------------------- /docs/img/od_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/docs/img/od_template.png -------------------------------------------------------------------------------- /ego_objects/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/ego_objects/LICENSE -------------------------------------------------------------------------------- /ego_objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/ego_objects/__init__.py -------------------------------------------------------------------------------- /ego_objects/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/ego_objects/colormap.py -------------------------------------------------------------------------------- /ego_objects/ego_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/ego_objects/ego_objects.py -------------------------------------------------------------------------------- /ego_objects/entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/ego_objects/entries.py -------------------------------------------------------------------------------- /ego_objects/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/ego_objects/eval.py -------------------------------------------------------------------------------- /ego_objects/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/ego_objects/results.py -------------------------------------------------------------------------------- /ego_objects/vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/ego_objects/vis.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/environment.yml -------------------------------------------------------------------------------- /reports/Track 1 - 1st place - Youtu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/reports/Track 1 - 1st place - Youtu.pdf -------------------------------------------------------------------------------- /reports/Track 1 - 2nd place - BaselineCL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/reports/Track 1 - 2nd place - BaselineCL.pdf -------------------------------------------------------------------------------- /reports/Track 1 - 3rd place - SolangKim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/reports/Track 1 - 3rd place - SolangKim.pdf -------------------------------------------------------------------------------- /reports/Track 2 - 3rd place - USTC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/reports/Track 2 - 3rd place - USTC.pdf -------------------------------------------------------------------------------- /reports/Track 3 - 3rd place - AngeloMenezes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/reports/Track 3 - 3rd place - AngeloMenezes.pdf -------------------------------------------------------------------------------- /reports/Tracks 2 and 3 - 1st place - Youtu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/reports/Tracks 2 and 3 - 1st place - Youtu.pdf -------------------------------------------------------------------------------- /reports/Tracks 2 and 3 - 2nd place - NUS-LVLAB_ASTAR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/reports/Tracks 2 and 3 - 2nd place - NUS-LVLAB_ASTAR.pdf -------------------------------------------------------------------------------- /starting_template_category_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/starting_template_category_detection.py -------------------------------------------------------------------------------- /starting_template_instance_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/starting_template_instance_classification.py -------------------------------------------------------------------------------- /starting_template_instance_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinualAI/clvision-challenge-2022/HEAD/starting_template_instance_detection.py --------------------------------------------------------------------------------