Skip to content

Commit

Permalink
Add quotation marks (keras-team#8919)
Browse files Browse the repository at this point in the history
  • Loading branch information
masstomato authored and fchollet committed Dec 30, 2017
1 parent 74aaeb3 commit e467ee5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/templates/applications.md
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ The default input size for this model is 224x224.
- input_shape: optional shape tuple, only to be specified
if `include_top` is `False` (otherwise the input shape
has to be `(224, 224, 3)` (with `'channels_last'` data format)
or (3, 224, 224) (with `'channels_first'` data format).
or `(3, 224, 224)` (with `'channels_first'` data format).
It should have exactly 3 inputs channels,
and width and height should be no smaller than 32.
E.g. `(200, 200, 3)` would be one valid value.
Expand Down Expand Up @@ -627,9 +627,9 @@ NASNetMobile model is 224x224.
- input_shape: optional shape tuple, only to be specified
if `include_top` is `False` (otherwise the input shape
has to be `(224, 224, 3)` (with `'channels_last'` data format)
or (3, 224, 224) (with `'channels_first'` data format)
or `(3, 224, 224)` (with `'channels_first'` data format)
for NASNetMobile or `(331, 331, 3)` (with `'channels_last'`
data format) or (3, 331, 331) (with `'channels_first'`
data format) or `(3, 331, 331)` (with `'channels_first'`
data format) for NASNetLarge.
It should have exactly 3 inputs channels,
and width and height should be no smaller than 32.
Expand Down

0 comments on commit e467ee5

Please sign in to comment.