Unsupervised Relation Extraction #7449
gonzobrandon
started this conversation in
Help: Best practices
Replies: 1 comment 1 reply
-
Hi! I got confused with the terminology of your post for a second, so just to clarify, within spaCy code & docs, we define:
I understand your question is about Anyway, all that to then give you a disappointing answer that personally, I haven't really looked into this "open ended" style of relation extraction yet. But I'd be interested in hearing from others in the community if they have any relevant pointers! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I see the great tutorial from @svlandeg on relation extraction - where (to my understanding) we supply a categorical list of relations to train and then predict against. For example:
{binding, inhibition, activation}
as a list of possible relations in the video example.How does this method scale to something like thousands of categories or with one-shot learning? What I'm aiming to try is to find a relation between two (NER) entities with either no pre-knowledge of the linguistic relationship or a subset of corpus tokens nearby to query against. An example: "Today, Kevin Quinn won the New York City marathon" ...in this case the word "won" would be the specific relationship I'm after. But what if the training model has not seen this specific relationship (verb, in this case). I believe this is called Open-IE-style. I could reduce the relations down to perhaps 1,000-5,000 key phrases and words if needed. Certainly, calculating token distance via embeddings can be done for out-of-vocab or out-of-corpus words.
Any papers or implementations would be very appreciated. If any engineers or consultants are available to work on this, please reach out.
Beta Was this translation helpful? Give feedback.
All reactions