If I have a input picture of a number, what are weights and bias present on that picture? #1333
thinh-doan
started this conversation in
General
Replies: 1 comment
-
|
There are no weights or biases present on the input picture. The weights and biases are parameters of your neural network so it can learn patterns. To view those parameters, you can do: params = model.state_dict()
print(params)The input picture is a
These pixel values are NOT weights or biases. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
If I have a input picture of a number, what are weights and bias present on that picture? Thank you!
Beta Was this translation helpful? Give feedback.
All reactions