skweak icon indicating copy to clipboard operation
skweak copied to clipboard

Support for relation extraction

Open plison opened this issue 3 years ago • 4 comments

Right now, skweak supports two main types of NLP tasks: (token-level) sequence labelling and text classification. Both rests on the idea that labelling functions associate labels to text spans, and the role of the aggregation model is then to merge the outputs of those labelling functions such as to get unified predictions.

However, some NLP tasks cannot be easily associated to text spans. For instance, relation extraction necessitates a prediction on pairs of spans.

The question is then how to provide support for such type of tasks, for instance by implementing a RelationAnnotator that could be used to associate pairs of spans to a label.

Technically speaking, we could still encode the annotations internally as SpanGroup objects. One solution would be to only add one span of the pair in the SpanGroup, but then specify that this span is connected to a second span (SpanGroup objects allows the inclusion of JSON-serialised attributes). The method get_observation_df in the BaseAggregator class could then be extended to detect whether a span is a normal one, or is connected to a second span. If that is the case, the aggregation would then be done on pairs of spans instead of single spans.

Do get in touch if this functionality is something you need, so that we know whether we should prioritise this in our next release :-)

plison avatar Apr 30 '21 10:04 plison

This is precisely what I need for multiple projects. I'm not sure what I can do to assist, but please do reach out if you need/want help.

wjbmattingly avatar May 18 '22 13:05 wjbmattingly

This is totally what I need and a lot more people! I can even send you examples on what I am trying to do, with several corpus to be tagged haha

fernandonjardim avatar May 31 '22 11:05 fernandonjardim

This is something I'm very interested in. A lot of people need this.

@plison this would be great if it could integrate with flair. How much work would be involved? How hard would the implementation be that you describe?

I would love to pull this into https://github.com/Graphlet-AI/graphlet and use it for building knowledge graphs along with flair and BLINK.

rjurney avatar Sep 07 '22 19:09 rjurney

I want this functionality. This is great.

Kael-DWT avatar Sep 09 '22 07:09 Kael-DWT