TextLevelGCN icon indicating copy to clipboard operation
TextLevelGCN copied to clipboard

source code of our paper presents in EMNLP 2019. https://www.aclweb.org/anthology/D19-1345/

Results 6 TextLevelGCN issues
Sort by recently updated
recently updated
newest added

可以提供一下此版本所运行的环境版本吗?如torch版本和dgl版本

Hello, when i run the code,i get the following error: **Check failed: allow_missing: Device API gpu is not enabled. Please install the cuda version of dgl.** so i wuold like...

作者您好,我在阅读model.py文件的forward()函数时,发现对象Model在实现论文中 ReLU(W ∑r +b) 公式时,使用的是以下顺序的代码: act1 = self.activation(drop1) # ReLU l = self.Linear(act1) # Linear 这样的顺序,按照我的理解,应该是对 ∑r 进行了一次ReLU,再进行 W · ReLU( ∑r ) + b 的操作,与论文实际所描述的公式不符,但却得到了论文中实验结果所展示的准确率,而我调换这两行代码的顺序之后,准确率降到了80%左右,对此感到很疑惑,能否请您指点一下我的思考是不是存在什么漏洞,确实没想明白这个环节,感谢!

can you tell me how to compute the memory consumption in R52 dataset?

model.py line#181~#184 try: seq_edges_w = self.seq_edge_w(old_edge_id) except RuntimeError: print(old_edge_id) I catch a error here. Why it happens and how to solve it ? Thanks!