├── .gitignore ├── Colab_examples.ipynb ├── README.md ├── datasets ├── __init__.py ├── test_dataset.py └── train_dataset.py ├── download_datasets.py ├── eval.py ├── main.py ├── parser.py ├── requirements.txt ├── utils.py └── visualizations.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmberton/Simple_VPR_codebase/HEAD/.gitignore -------------------------------------------------------------------------------- /Colab_examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmberton/Simple_VPR_codebase/HEAD/Colab_examples.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmberton/Simple_VPR_codebase/HEAD/README.md -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datasets/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmberton/Simple_VPR_codebase/HEAD/datasets/test_dataset.py -------------------------------------------------------------------------------- /datasets/train_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmberton/Simple_VPR_codebase/HEAD/datasets/train_dataset.py -------------------------------------------------------------------------------- /download_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmberton/Simple_VPR_codebase/HEAD/download_datasets.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmberton/Simple_VPR_codebase/HEAD/eval.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmberton/Simple_VPR_codebase/HEAD/main.py -------------------------------------------------------------------------------- /parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmberton/Simple_VPR_codebase/HEAD/parser.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmberton/Simple_VPR_codebase/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmberton/Simple_VPR_codebase/HEAD/utils.py -------------------------------------------------------------------------------- /visualizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmberton/Simple_VPR_codebase/HEAD/visualizations.py --------------------------------------------------------------------------------