Skip to content

Commit

Permalink
parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
pengpaiSH committed Dec 2, 2016
1 parent 832c1d9 commit 0c6c9b2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion train.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
img_height = 299
nbr_train_samples = 3019
nbr_validation_samples = 758
nbr_epochs = 50
nbr_epochs = 25
batch_size = 32

train_data_dir = '/Users/pengpai/Desktop/python/DeepLearning/Kaggle/NCFM/data/train_split'
Expand Down Expand Up @@ -60,6 +60,8 @@
target_size = (img_width, img_height),
batch_size = batch_size,
shuffle = True,
# save_to_dir = '/Users/pengpai/Desktop/python/DeepLearning/Kaggle/NCFM/data/visualization',
# save_prefix = 'aug',
classes = FishNames,
class_mode = 'categorical')

Expand All @@ -68,6 +70,8 @@
target_size=(img_width, img_height),
batch_size=batch_size,
shuffle = True,
#save_to_dir = '/Users/pengpai/Desktop/python/DeepLearning/Kaggle/NCFM/data/visulization',
#save_prefix = 'aug',
classes = FishNames,
class_mode = 'categorical')

Expand Down

0 comments on commit 0c6c9b2

Please sign in to comment.