Skip to content

Commit

Permalink
Fixing repo structure for conda-forge release
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamDHines committed Dec 12, 2023
1 parent 34f1640 commit a920ad8
Show file tree
Hide file tree
Showing 13 changed files with 7 additions and 324 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ dataset/winter/
dataset/event.csv/
models/VPRTempo78415685001.pth
models/VPRTempoQuant78415685001.pth
VPRTempo.egg-info/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ In this repository, we provide two networks:

To use VPRTempo, please follow the instructions below for installation and usage.

## :star: Update v1.1.1: What's new?
## :star: Update v1.1: What's new?
- Full integration of VPRTempo into torch.nn architecture
- Quantization Aware Training (QAT) enabled to train weights in int8 space
- Addition of tutorials in Jupyter Notebooks to learn how to use VPRTempo as well as explain the computational logic
Expand Down
Binary file added dataset/test/images-00202.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 1 addition & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@
import argparse
import sys
sys.path.append('./src')
sys.path.append('./networks/base')
sys.path.append('./networks/quantized')

sys.path.append('./vprtempo')
import torch.quantization as quantization

from VPRTempoTrain import VPRTempoTrain, generate_model_name, check_pretrained_model, train_new_model
Expand Down
226 changes: 0 additions & 226 deletions networks/base/VPRTempoTest.py

This file was deleted.

1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
torch
torchvision
torchaudio
numpy
pandas
tqdm
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
requirements = [
'torch',
'torchvision',
'torchaudio',
'numpy',
'pandas',
'tqdm',
Expand All @@ -22,7 +21,7 @@
# define the setup
setup(
name="VPRTempo",
version="1.1.1",
version="1.1.2",
description='VPRTempo: A Fast Temporally Encoded Spiking Neural Network for Visual Place Recognition',
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -36,7 +35,7 @@
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 5 - Production/Stable',
'Development Status :: 4 - Beta',

# Indicate who your project is intended for
'Intended Audience :: Developers',
Expand Down
90 changes: 0 additions & 90 deletions test_vprtempo.py

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions vprtempo/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from .VPRTempo import VPRTempo
from .VPRTempoQuantTrain import VPRTempoQuantTrain

0 comments on commit a920ad8

Please sign in to comment.