Closed gcrth closed 2 years ago
@avik-pal could you take a sec to look into this one?
@ChrisRackauckas I am not exactly sure what is going on here
If I pass features
outside gradient() the sizes line up (2, 4) but inside the gradient block sol.u[1]
is flattened out to size 8
(https://github.com/SciML/DiffEqFlux.jl/blob/cff4c35555c9d7f24803a43ae28bd56b445fceaa/test/neural_gde.jl#L30)
@yuehhua was there a change to sizing?
Sorry, I will take care of this issue. There are some changes to GCNConv
layer.
For now I'm disabling the graph conv test since I couldn't quickly figure it out https://github.com/SciML/DiffEqFlux.jl/pull/693
The example in https://diffeqflux.sciml.ai/dev/examples/neural_gde/ can not run. There will be an error when running the last line of code, and the error is shown below.
All packages I use are up to date.
I cannot find any solution for solving this, and I wonder if there is any suggestion for fixing this.
There are a few small problems before the last line, but they can be fixed easily with the following steps.
using LightGraphs: adjacency_matrix
should beusing Graphs: adjacency_matrix
.Any help is appreciated, thank you.