Skip to content
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 depthwise_conv1d file #20268

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

keerthanakadiri
Copy link
Contributor

Example code has changed by modifying existing code

Example code has changed by modifying existing code
@@ -92,7 +92,7 @@ class DepthwiseConv1D(BaseDepthwiseConv):
Example:

>>> x = np.random.rand(4, 10, 12)
>>> y = keras.layers.DepthwiseConv1D(3, 3, 2, activation='relu')(x)
>>> y = keras.layers.DepthwiseConv1D(kernel_size=3, depth_multiplier=3, strides=2, activation='relu')(x)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This wouldn't work, it's lacking the filters argument

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @fchollet ,
DepthwiseConv1D doesn't have filter arguments. If the filter argument is added then it's showing this error ValueError: Unrecognized keyword arguments passed to DepthwiseConv1D: {'filters': 16}

@@ -92,7 +92,7 @@ class DepthwiseConv1D(BaseDepthwiseConv):
Example:

>>> x = np.random.rand(4, 10, 12)
>>> y = keras.layers.DepthwiseConv1D(3, 3, 2, activation='relu')(x)
>>> y = keras.layers.DepthwiseConv1D(kernel_size=3, depth_multiplier=3, strides=2, activation='relu')(x)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't pass the linter, every line should be below 80 characters. See below:
./keras/src/layers/convolutional/depthwise_conv1d.py:95:81: E501 line too long (108 > 80 characters)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @ruidazeng,
Changed .Thank you for the suggestion !

Example code has changed by modifying existing code
@codecov-commenter
Copy link

codecov-commenter commented Nov 29, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 82.22%. Comparing base (dd5f870) to head (e2f6923).
Report is 214 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff             @@
##           master   #20268      +/-   ##
==========================================
+ Coverage   78.89%   82.22%   +3.32%     
==========================================
  Files         507      515       +8     
  Lines       48221    48165      -56     
  Branches     8877     7527    -1350     
==========================================
+ Hits        38045    39603    +1558     
+ Misses       8344     6744    -1600     
+ Partials     1832     1818      -14     
Flag Coverage Δ
keras 82.07% <ø> (+3.31%) ⬆️
keras-jax 65.12% <ø> (+2.89%) ⬆️
keras-numpy 60.12% <ø> (+2.75%) ⬆️
keras-tensorflow 66.09% <ø> (+2.49%) ⬆️
keras-torch 65.06% <ø> (+2.78%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Assigned Reviewer
Development

Successfully merging this pull request may close these issues.

5 participants