Skip to content

Commit

Permalink
Fixing PyPi dependencies, minor fix in VPRTempo dataloader
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamDHines committed Aug 16, 2024
1 parent 6c78bd9 commit 2ed1101
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ numpy
pandas
tqdm
prettytable
scikit-learn
matplotlib
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
'pandas',
'tqdm',
'prettytable',
'scikit-learn'
'matplotlib'
]

# define the setup
setup(
name="VPRTempo",
version="1.1.6",
version="1.1.7",
description='VPRTempo: A Fast Temporally Encoded Spiking Neural Network for Visual Place Recognition',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
3 changes: 1 addition & 2 deletions vprtempo/VPRTempo.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,7 @@ def run_inference(models, model_name):

# Initialize the data loader
test_loader = DataLoader(test_dataset,
batch_size=1,
shuffle=model.shuffle,
batch_size=1,
num_workers=8,
persistent_workers=True)

Expand Down
2 changes: 1 addition & 1 deletion vprtempo/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
_version__ = '1.1.6'
_version__ = '1.1.7'
4 changes: 2 additions & 2 deletions vprtempo/src/loggers.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def model_logger():
logger.info(' ╚████╔╝ ██║ ██║ ██║ ██║ ███████╗██║ ╚═╝ ██║██║ ╚██████╔╝')
logger.info(' ╚═══╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═════╝ ')
logger.info('-----------------------------------------------------------------------')
logger.info('Temporally Encoded Spiking Neural Network for Visual Place Recognition v1.1.6')
logger.info('Temporally Encoded Spiking Neural Network for Visual Place Recognition v1.1.7')
logger.info('Queensland University of Technology, Centre for Robotics')
logger.info('')
logger.info('© 2023 Adam D Hines, Peter G Stratton, Michael Milford, Tobias Fischer')
Expand Down Expand Up @@ -90,7 +90,7 @@ def model_logger_quant():
logger.info(' ╚████╔╝ ██║ ██║ ██║ ██║ ███████╗██║ ╚═╝ ██║██║ ╚██████╔╝ ╚██████╔╝╚██████╔╝██║ ██║██║ ╚████║ ██║')
logger.info(' ╚═══╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═════╝ ╚══▀▀═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═╝')
logger.info('-----------------------------------------------------------------------')
logger.info('Temporally Encoded Spiking Neural Network for Visual Place Recognition v1.1.6')
logger.info('Temporally Encoded Spiking Neural Network for Visual Place Recognition v1.1.7')
logger.info('Queensland University of Technology, Centre for Robotics')
logger.info('')
logger.info('© 2023 Adam D Hines, Peter G Stratton, Michael Milford, Tobias Fischer')
Expand Down

0 comments on commit 2ed1101

Please sign in to comment.