Circularmachines commited on
Commit
78134a7
·
1 Parent(s): fd5a8ed
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -27,9 +27,10 @@ gridsize=31
27
 
28
  n_patches=961
29
 
30
- pred_dict={'Trained on color images (recommended)': np.load('pred_all_scratch.npy').reshape(-1,64),
31
- 'Trained on grayscale images': np.load('pred_all_grey.npy').reshape(-1,64)}
32
-
 
33
 
34
  random_i=np.load('random.npy')
35
 
 
27
 
28
  n_patches=961
29
 
30
+ #pred_dict={'Trained on color images (recommended)': np.load('pred_all_scratch.npy').reshape(-1,64),
31
+ # 'Trained on grayscale images': np.load('pred_all_grey.npy').reshape(-1,64)}
32
+ pred_dict={'Trained from scratch': np.load('pred_all_scratch.npy').reshape(-1,64),
33
+ 'Trained from imagenet': np.load('pred_all_green.npy').reshape(-1,64)}
34
 
35
  random_i=np.load('random.npy')
36