OpenNRE-PyTorch icon indicating copy to clipboard operation
OpenNRE-PyTorch copied to clipboard

Neural Relation Extraction implemented in PyTorch

Results 14 OpenNRE-PyTorch issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/43195222/55351339-495c3100-547b-11e9-9893-66afc5cf7226.png)

您好,请问您跑出的模型达到了paper报告的效果吗,我跑出来好像低于paper中所报告的P/R curves.我用的数据也是paper中(train_instance=522611) ![pr_curve的副本](https://user-images.githubusercontent.com/48783863/78470681-d3f60100-775d-11ea-9798-bb45d2c0079f.png)

您好,请问能提供nyt10数据集的json格式下载连接吗?官网下的都是pb文件

我发现这个PyTorch的实现能取得比PCNN-ATT Paper里显著更好的 P@k 和 PR-Curves。不知道你跑的时候是不是也是这样? 谢谢!

Reading training data... Finish reading Reading testing data... Finish reading Initializing training model... Finish initializing Epoch 0 starts... Traceback (most recent call last): File "train.py", line 30, in con.train() File...

您好!我写了一个BiLSTM encoder: ![image](https://user-images.githubusercontent.com/20638961/63562834-9f985080-c591-11e9-8c4e-d9aafb3eef82.png) 不知道图片有没有正常显示,代码如下: + class BiRNN(nn.Module): + def __init__(self, config): super(BiRNN, self).__init__() self.config = config self.sen_len = None self.in_width = self.config.word_size + 2 * self.config.pos_size self.rnn = nn.GRU(self.in_width, self.config.hidden_size,...

Hi~ I noticed that you aggregate only **contiguous** instances with the same `tup` into the same bag, in other words, you aggregate instances **locally**. https://github.com/ShulinCao/OpenNRE-PyTorch/blob/master/gen_data.py#L152-L155 but RESIDE handles this by...

We have two attention matrix in `Class Selector` One is `relation_matrix`, the other one is `attention_matrix`. Both of them is a matrix with shape`(num_class, hidden_states)`. I have checked in OpenNRE...

https://github.com/ShulinCao/OpenNRE-PyTorch/blob/master/networks/selector.py#L70 You use dropout after sen_matrix in the training stage, and not use it in the test stage. I think the nuance of dropout should be manipulated by model.eval(), rather...