-
Notifications
You must be signed in to change notification settings - Fork 19.5k
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
Modified example in separable_conv2d #20629
base: master
Are you sure you want to change the base?
Conversation
Example code has changed by modifying existing code
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #20629 +/- ##
==========================================
- Coverage 82.37% 81.95% -0.43%
==========================================
Files 517 553 +36
Lines 48517 51458 +2941
Branches 7570 7961 +391
==========================================
+ Hits 39968 42174 +2206
- Misses 6729 7346 +617
- Partials 1820 1938 +118
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -91,7 +91,8 @@ class SeparableConv2D(BaseSeparableConv): | |||
Example: | |||
|
|||
>>> x = np.random.rand(4, 10, 10, 12) | |||
>>> y = keras.layers.SeparableConv2D(3, 4, 3, 2, activation='relu')(x) | |||
>>> y = SeparableConv2D(filters=4, kernel_size=(4, 4), | |||
strides=(2, 2), activation='relu')(x) |
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.
Add ...
at the start of the new line
This PR is stale because it has been open for 14 days with no activity. It will be closed if no further activity occurs. Thank you. |
Example code has changed by modifying existing code