Image Classification
Keras
English
art
benjaminStreltzin commited on
Commit
e56d773
·
verified ·
1 Parent(s): 5779a70

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -6
README.md CHANGED
@@ -75,12 +75,12 @@ Train the CNN with the Preprocessed images , use valitadion set.
75
  #### Training Hyperparameters
76
 
77
 
78
- optimizer = RMSprop(lr=0.0005, rho=0.9, epsilon=1e-08, decay=0.0)
79
- epochs = 22
80
- batch_size = 100
81
- loss = "categorical_crossentropy"
82
- metrics=["accuracy"]
83
- early_stopping = EarlyStopping(monitor='val_acc',min_delta=0,patience=2,verbose=0, mode='auto')
84
 
85
 
86
 
 
75
  #### Training Hyperparameters
76
 
77
 
78
+ -optimizer = RMSprop(lr=0.0005, rho=0.9, epsilon=1e-08, decay=0.0)
79
+ -epochs = 22
80
+ -batch_size = 100
81
+ -loss = "categorical_crossentropy"
82
+ -metrics=["accuracy"]
83
+ -early_stopping = EarlyStopping(monitor='val_acc',min_delta=0,patience=2,verbose=0, mode='auto')
84
 
85
 
86