Joint NER and Relation Extraction model misses few relationships while predicting! #10180
-
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Adding on to the above points here is one more example where I am unable to get relations between entites for "Lender" and "Party Name" (near to Lender) in the paragraph. While Borrower's relationship with other entities are getting extracted. Any help to understand this problem. Thanks |
Beta Was this translation helpful? Give feedback.
-
Hi, Any ML model will always make mistakes - including false positives as well as false negatives - so it's not unexpected that you won't get perfect results. That said, if you're looking to improve recall mainly, you could have a look at setting the |
Beta Was this translation helpful? Give feedback.
Hi,
Any ML model will always make mistakes - including false positives as well as false negatives - so it's not unexpected that you won't get perfect results.
That said, if you're looking to improve recall mainly, you could have a look at setting the
threshold
value of therelation_extractor
: https://github.com/explosion/projects/blob/v3/tutorials/rel_component/scripts/rel_pipe.py#L45