File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ()
You can’t perform that action at this time.
0 commit comments