/tmp/ipykernel_28889/3816987256.py in <module>
----> 1 yhat = model(batch, train_data.edge_index) #give dummy batch to forward()
~/miniconda3/envs/VGAE_graphviz/lib/python3.8/site-packages/torch/nn/modules/module.py in _call_impl(self, *input, **kwargs)
1100 if not (self._backward_hooks or self._forward_hooks or self._forward_pre_hooks or _global_backward_hooks
1101 or _global_forward_hooks or _global_forward_pre_hooks):
-> 1102 return forward_call(*input, **kwargs)
1103 # Do not call functions when jit is used
1104 full_backward_hooks, non_full_backward_hooks = [], []
~/miniconda3/envs/VGAE_graphviz/lib/python3.8/site-packages/torch/nn/modules/module.py in _forward_unimplemented(self, *input)
199 registered hooks while the latter silently ignores them.
200 """
--> 201 raise NotImplementedError
202
203
NotImplementedError:
Hi, Sorry if this is super trivial, but the error message isn't too clear on what exactly is wrong... I have:
and am trying to visualize the model using
make_dot
but when creating the dummy input:I get the following error:
are the model inputs not x and edge_index ??