We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b099579 commit 283fca4Copy full SHA for 283fca4
utilities/data_simulation/Download_data.py
@@ -22,9 +22,12 @@ def download_data(force=False):
22
print(f"Folder '{'download'}' created.")
23
# Change to the specified folder
24
os.chdir(os.path.join(base_folder,'download'))
25
- subprocess.check_call(["zenodo_get", 'https://zenodo.org/records/10696605'])
+ subprocess.check_call(["zenodo_get", 'https://zenodo.org/records/14605039'])
26
# Open the zip file
27
if force or not os.path.exists('Data'):
28
# Unzip the file
29
unzip_file('OSIPI_TF24_data_phantoms.zip', '.')
30
- os.chdir(curdir)
+ os.chdir(curdir)
31
+
32
+if __name__ == "__main__":
33
+ download_data(force=True)
0 commit comments