ttheland commited on
Commit
f7da354
1 Parent(s): 52d8eba

alternate model link

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -15,13 +15,11 @@ import markdown
15
 
16
  # load model state and class names from gdrive
17
 
18
- # link: https://drive.google.com/file/d/1m9C-WMfKRDCmScxTh8JmcoFtymxAqjS3/view?usp=sharing
19
- url = 'https://drive.google.com/uc?id=1m9C-WMfKRDCmScxTh8JmcoFtymxAqjS3'
20
  path_class_names = "./class_names_restnet_leeds_butterfly.pkl"
21
  gdown.download(url, path_class_names, quiet=False)
22
 
23
- # link: https://drive.google.com/file/d/1qxaWnYwLIwWGrGg9uehG7h2W227SXGKq/view?usp=sharing
24
- url = 'https://drive.google.com/uc?id=1qxaWnYwLIwWGrGg9uehG7h2W227SXGKq'
25
  path_model = "./model_state_restnet_leeds_butterfly.pth"
26
  gdown.download(url, path_model, quiet=False)
27
 
 
15
 
16
  # load model state and class names from gdrive
17
 
18
+ url = 'https://drive.google.com/uc?id=1qKiyp4r8SqUtz2ZWk3E6oZhyhl6t8lyG'
 
19
  path_class_names = "./class_names_restnet_leeds_butterfly.pkl"
20
  gdown.download(url, path_class_names, quiet=False)
21
 
22
+ url = 'https://drive.google.com/uc?id=1Ep2YWU4M-yVkF7AFP3aD1sVhuriIDzFe'
 
23
  path_model = "./model_state_restnet_leeds_butterfly.pth"
24
  gdown.download(url, path_model, quiet=False)
25