-
Notifications
You must be signed in to change notification settings - Fork 716
Update landing page example #2366
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
Update landing page example #2366
Conversation
39f1aca
to
f315721
Compare
Codecov Report
@@ Coverage Diff @@
## main #2366 +/- ##
==========================================
- Coverage 79.08% 78.98% -0.11%
==========================================
Files 49 49
Lines 5188 5139 -49
==========================================
- Hits 4103 4059 -44
+ Misses 1085 1080 -5
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
y = model.apply(variables, x) # make forward pass | ||
x = jnp.empty((4, 28, 28, 1)) # fake data | ||
variables = model.init(PRNGKey(42), x) # initialize weights | ||
y = model.apply(variables, x) # make forward pass |
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.
Suggestion: To make the grammar sound a bit better, maybe
y = model.apply(variables, x) # make forward pass | |
y = model.apply(variables, x) # forward propagate the input |
3558870
to
c62c428
Compare
@8bitmp3 thanks for the feedback! Made the most of the changes except I left "make forward pass" as it sounded better in my head (feel free to push back). |
What does this PR do?
Fixes #2332