shon-otmazgin / fastcoref

MIT License
147 stars 25 forks source link

Performing Coreference Resolution with Pre-Extracted Entity Mentions #28

Closed laituan245 closed 1 year ago

laituan245 commented 1 year ago

In the quickstart example, the model handles both mention extraction and coreference resolution tasks. However, for my specific use case, I already have pre-extracted mentions available. Could you please guide me on how to perform coreference resolution exclusively, utilizing these existing mentions?

Thanks!

shon-otmazgin commented 1 year ago

Hello @laituan245 , as you mentioned, the package currently does 2 things, mention detection, then coref clusters for the extracted mentions.

If you want to do only coref, this is a feature we need to develop, and you are welcome to support that if you wish so.

In the meantime, I suggest you to compare if the exists mention detection component extract mention similar to what do you currently extracted. If so, no need to develop such thing...

laituan245 commented 1 year ago

Thank you for your quick reply.