-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparams.yaml
15 lines (15 loc) · 866 Bytes
/
params.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
AUGMENTATION: True # Whether want to to augment the data or not
PRE_TRAINED_MODEL: densenet201 # Valid options = [mobilenet, mobilenetv2, nasnetmobile, inceptionv3, densenet201]
IMAGE_SIZE: [224, 224, 3] # Input image size taken by models: [height, width, channels]
BATCH_SIZE: 32 # Batch size for training
INCLUDE_TOP: False
EPOCHS: 35 # No. of epochs required to train the model
CLASSES: 30 # No. of classes in the dataset
WEIGHTS: imagenet # Pre-trained weights to be used
LEARNING_RATE: 0.001 # Learning rate for the training
MONITOR: val_loss
MIN_DELTA: 0.00001
PATIENCE: 20
MODE: auto
RESTORE_BEST_WEIGHTS: False
OPTIMIZER: adam # Valid options = [adam, sgd, rmsprop, adagrad], Optimizer to be used for training