Cartus / AGGCN

Attention Guided Graph Convolutional Networks for Relation Extraction (authors' PyTorch implementation for the ACL19 paper)
MIT License
433 stars 88 forks source link

看了论文和代码想问一下,这实际上是一个关系分类的模型吗 #11

Closed xuanzebi closed 5 years ago

xuanzebi commented 5 years ago

semeval-10 和 TACRED这两个数据集是不是在验证集和测试集上都给定了实体对,然后预测该实体对的关系类别吗

所以这个模型不能直接给一句话,然后直接预测包含的实体对和关系吧...

Cartus commented 5 years ago

Yes, if you have rights to access these two dataset, you can see that the entities are given.

You can also jointly predict entities and their corresponding relations. For example, you can go through this paper: End-to-End Relation Extraction using LSTMs on Sequences and Tree Structures

Their model also detects entities.

xuanzebi commented 5 years ago

Thank you very much~~