Skip to content

Commit 00cc8a8

Browse files
authored
Update config.py
1 parent 18272bd commit 00cc8a8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

config.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
pkl_dir_path = 'pickles'
2-
train_val_df_pkl_path = 'train_val_df.pickle'
3-
test_df_pkl_path = 'test_df.pickle'
1+
pkl_dir_path = 'pickles'
2+
train_val_df_pkl_path = 'train_val_df.pickle'
3+
test_df_pkl_path = 'test_df.pickle'
44
disease_classes_pkl_path = 'disease_classes.pickle'
5-
models_dir = 'models'
6-
5+
models_dir = 'models'
76

87
from torchvision import transforms
98
normalize = transforms.Normalize(mean=[0.485, 0.456, 0.406],
109
std=[0.229, 0.224, 0.225])
10+
1111
# transforms.RandomHorizontalFlip() not used because some disease might be more likely to the present in a specific lung (lelf/rigth)
1212
transform = transforms.Compose([transforms.ToPILImage(),
1313
transforms.Resize(224),

0 commit comments

Comments
 (0)