-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue 149: VGG-like Convolutional Neural Network Classifier #152
Issue 149: VGG-like Convolutional Neural Network Classifier #152
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks good @Hector-hedb12 !
There is only one thing that should be removed and it can go in.
0.75 | ||
] | ||
}, | ||
"batch_size": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
batch_size
is currently ignored by the keras adapter, so this line can be removed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also @Hector-hedb12, after #143, we should try to always add a |
Added in 904a33c |
@@ -91,6 +91,14 @@ | |||
"type": "int", | |||
"default": 20 | |||
}, | |||
"verbose": { | |||
"type": "int", | |||
"default": 1, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please set the default to 0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @Hector-hedb12 ! |
Resolves #149