VPRTempo: A Fast Temporally Encoded Spiking Neural Network for Visual Place Recognition
Project description
VPRTempo - A Temporally Encoded Spiking Neural Network for Visual Place Recognition
This repository contains code for VPRTempo, a spiking neural network that uses temporally encoding to perform visual place recognition tasks. The network is based off of BLiTNet and adapted to the VPRSNN framework.
VPRTempo is built on a torch.nn framework and employs custom learning rules based on the temporal codes of spikes in order to train layer weights.
In this repository, we provide two networks:
VPRTempo: Our base network architecture to perform visual place recognition (fp32)VPRTempoQuant: A modified base network with Quantization Aware Training (QAT) enabled (int8)
To use VPRTempo, please follow the instructions below for installation and usage.
:star: Update v1.1.10: What's new?
- Adding pixi for easier setup and reproducibility :rocket:
- Fixed repo size issue for a more compact download :chart_with_downwards_trend:
Quick start
For simplicity and reproducibility, VPRTempo uses pixi to install and manage dependencies. If you do not already have pixi installed, run the following in your command terminal:
curl -fsSL https://pixi.sh/install.sh | bash
For more information, please refer to the pixi documentation.
Get the repository
Get the latest VPRTempo code and navigate to the project directory by running the following in your command terminal:
git clone https://github.com/QVPR/VPRTempo.git
cd VPRTempo
Run the demo
To quickly evaluate VPRTempo, we provide a pre-trained network trained on 500 places from the Nordland dataset. Run the following in your command terminal to run the demo:
pixi run demo
Note: this will start a download of the models and datasets (~600MB), please ensure you have enough disk space before proceeding.
Train and evaluate a new model
Training and evaluating a new model is quick and easy, simply run the following in your command terminal to re-train and evaluate the demo model:
pixi run train
pixi run eval
Note: You will be prompted if you want to retrain the pre-existing network.
Use the quantized models
For training and evaluation of the 8-bit quantized model, run the following in your command terminal:
pixi run train_quant
pixi run eval_quant
Alternative dependency install
Dependencies for VPRTempo can alternatively be installed in a conda environment. We recommend micromamba and run the following in your command terminal:
micromamba create -n vprtempo -c conda-forge vprtempo
micromamba activate vprtempo
Note: Whilst we do have a PyPi package, we do not recommend using pip to install dependencies for VPRTempo.
Datasets
VPRTempo was developed to be simple to train and test a variety of datasets. Please see the information below about recreating our results for the Nordland and Oxford RobotCar datasets and setting up custom datasets.
Nordland
VPRTempo was developed and tested using the Nordland dataset. To download the full dataset, please visit this repository. Once downloaded, place dataset folders into the VPRTempo directory as follows:
|__./vprtempo
|___dataset
|__summer
|__spring
|__fall
|__winter
To replicate the results in our paper, run the following in your command terminal:
pixi run nordland_train
pixi run nordland_eval
Alternatively, specify the data directory using the following argument:
pixi run nordland_train --data_dir <YOUR_DIRECTORY>
pixi run nordland_eval --data_dir <YOUR_DIRECTORY>
Oxford RobotCar
In order to train and test on Oxford RobotCar, you will need to register an account to get access to download the dataset and process the images before proceeding. For more information, please refer to the documentation.
Once fully processed, to replicate the results in our paper run the following in your command terminal:
pixi run orc_train
pixi run orc_eval
Custom Datasets
To define your own custom dataset to use with VPRTempo, simply follow the same dataset structure defined above for Nordland. A .csv file of the image names will be required for the dataloader.
We have included a convenient script ./vprtempo/src/create_data_csv.py which will generate the necessary file. Simply modify the dataset_name variable to the folder containing your images.
To train a new model with a custom dataset, you can do the following.
pixi run train --dataset <your custom database name> --database_dirs <your custom database name>
pixi run eval --database_dirs <your custom database name> --dataset <your custom query name> --query_dir <your custom query name>
License & Citation
This repository is licensed under the MIT License. If you use our code, please cite our IEEE ICRA paper:
@inproceedings{hines2024vprtempo,
title={VPRTempo: A Fast Temporally Encoded Spiking Neural Network for Visual Place Recognition},
author={Adam D. Hines and Peter G. Stratton and Michael Milford and Tobias Fischer},
year={2024},
pages={10200-10207},
booktitle={2024 IEEE International Conference on Robotics and Automation (ICRA)}
}
Tutorials
We provide a series of Jupyter Notebook tutorials that go through the basic operations and logic for VPRTempo and VPRTempoQuant.
Issues, bugs, and feature requests
If you encounter problems whilst running the code or if you have a suggestion for a feature or improvement, please report it as an issue.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vprtempo-1.1.10.tar.gz.
File metadata
- Download URL: vprtempo-1.1.10.tar.gz
- Upload date:
- Size: 28.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
935babdf78b7df8f179c32b95c6b39a213903fd53d888837de9b58e9a091b128
|
|
| MD5 |
334ad00aed47278df8d0a87cd4d74a9a
|
|
| BLAKE2b-256 |
c636ae05ed17ad0258806058f96f01360bca54cbe661cfeefda3bc5e31a35cb1
|
File details
Details for the file vprtempo-1.1.10-py3-none-any.whl.
File metadata
- Download URL: vprtempo-1.1.10-py3-none-any.whl
- Upload date:
- Size: 42.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca47617649202711c928c8d259e4fc5dd4f4013b69279f5e618241443203e3e1
|
|
| MD5 |
71806488d4f6f901f5b637b0f95922c2
|
|
| BLAKE2b-256 |
f44d38be0db4cc5a03f4f7a665d5e93a5ae7e7e9205997bd91f7fc43955329ea
|