Open ClaudiaShu opened 1 year ago
Got the same! Has it been resolved? Curious about the solution to this!
looks like SDEProblem is not implemented yet:
class SDEProblem(nn.Module):
def __init__(self):
"Extension of `ODEProblem` to SDE"
super().__init__()
raise NotImplementedError("Hopefully soon...")
Hi, I am trying to implement neuralSDE using torchdyn, my code is:
But I got this error:
I checked the source code and it seems that the initialisation of the model class is different from what input it takes.
What should be given to the model as the input or is there a bug that remains to fix?
Thanks in advance!