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
the variables CaRe, CaReGCN and CaReGAT are not defined anywhere in the code, which leads to the exception NameError:
Traceback (most recent call last):
File "CaRe_main.py", line 237, in <module>
main(args)
File "CaRe_main.py", line 114, in main
model = ConvEParam(args,data.embed_matrix,data.rel2word)
File "CaRe_main.py", line 23, in __init__
self.cn = CaRe(self.args.nfeats, self.args.nfeats)
NameError: name 'CaRe' is not defined
How can this be solved? Is it possible that parts of the code are actually not available on this repo?
The text was updated successfully, but these errors were encountered:
Some variables in
CaRe_main.py
are not defined. For instance, in this code snippet:the variables CaRe, CaReGCN and CaReGAT are not defined anywhere in the code, which leads to the exception
NameError
:How can this be solved? Is it possible that parts of the code are actually not available on this repo?
The text was updated successfully, but these errors were encountered: