Skip to content

Commit

Permalink
v0.4.1 remove quantumrandom from sync, too unreliable
Browse files Browse the repository at this point in the history
  • Loading branch information
bartulem committed Sep 27, 2024
1 parent dacc335 commit 4fa6a53
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# usv-playpen v0.4.0
# usv-playpen v0.4.1

<br>
<div align="center">
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='usv-playpen',
version='0.4.0',
version='0.4.1',
author='@bartulem',
author_email='mimica.bartul@gmail.com',
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion src/prepare_cluster_job.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
@author: bartulem
Creates/saves text file with list of videos to run inference on.
Creates/saves text file with list of videos to run SLEAP inference on.
"""

import json
Expand Down
5 changes: 1 addition & 4 deletions src/synchronize_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -598,10 +598,7 @@ def find_audio_sync_trains(self):
self.message_output(f"A/V synchronization started at: {datetime.now().hour:02d}:{datetime.now().minute:02d}.{datetime.now().second:02d}")
QTest.qWait(1000)

try:
quantum_seed = generate_truly_random_seed(input_parameter_dict=self.input_parameter_dict_random)
except (TimeoutError, RequestException, urllib.error.URLError, urllib.error.HTTPError):
quantum_seed = None
quantum_seed = None

wave_data_dict = DataLoader(input_parameter_dict={'wave_data_loc': [f"{self.root_directory}{os.sep}audio{os.sep}cropped_to_video"],
'load_wavefile_data': {'library': 'scipy',
Expand Down
2 changes: 1 addition & 1 deletion src/usv_playpen_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
my_app_id = 'mycompany.myproduct.subproduct.version'
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(my_app_id)

app_name = 'USV Playpen v0.4.0'
app_name = 'USV Playpen v0.4.1'
experimenter_id = 'bartulem'
cup_directory_name = 'Bartul'
email_list_global = ''
Expand Down

0 comments on commit 4fa6a53

Please sign in to comment.