You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Secondly coming to the colordiff example in the same page , when run on my system gives the output as , while the example tends to give the grad output
Thirdly , in the last section of the page , the Implicit Parameters which uses Params , there has been a slight error in the flow of the example.
Here the x is a 2×3 Matrix{Int64} , whereas the W defined later is a 2×5 Matrix{Float64} , so the mismatch lies in the shape , I guess we can introduce x=rand(5), which would take care of the flow
The text was updated successfully, but these errors were encountered:
The current issues listed here are referring to that in
https://fluxml.ai/Zygote.jl/dev/#
https://github.com/FluxML/Zygote.jl/blob/master/docs/src/index.md
, while the example tends to give the grad output
Here the
x
is a2×3 Matrix{Int64}
, whereas theW
defined later is a2×5 Matrix{Float64}
, so the mismatch lies in the shape , I guess we can introducex=rand(5)
, which would take care of the flowThe text was updated successfully, but these errors were encountered: