Skip to content

Commit 33da48b

Browse files
committed
Updated zenodo pkl with correct trainer class
1 parent a3be39c commit 33da48b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

HD_CTBET/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ def maybe_download_parameters(fold=0, force_overwrite=False):
3535
if force_overwrite and os.path.isfile(out_filename+'.pkl'):
3636
os.remove(out_filename+'.pkl')
3737

38-
url='https://zenodo.org/record/7970359/files/CT_%d.model?download=1' % fold
38+
url='https://zenodo.org/record/7973721/files/CT_%d.model?download=1' % fold
3939
if not os.path.isfile(out_filename):
4040
print("Downloading", url, "...")
4141
data = urlopen(url).read()
4242
with open(out_filename, 'wb') as f:
4343
f.write(data)
4444

45-
url_pkl='https://zenodo.org/record/7970359/files/CT_%d.model.pkl?download=1' % fold
45+
url_pkl='https://zenodo.org/record/7973721/files/CT_%d.model.pkl?download=1' % fold
4646
if not os.path.isfile(out_filename+'.pkl'):
4747
print("Downloading", url_pkl, "...")
4848
data = urlopen(url_pkl).read()

0 commit comments

Comments
 (0)