We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can we make sure that there are no overlapping bodies in the extracted entities.
For example: for text: "one hundred forty one hundred and thirteen". I wanted the output: 140 and 113 ultimately
but I got 141 and 4113 (forty one is common between both the bodies).
[{'body': 'one hundred forty one', 'start': 0, 'value': {'value': 141, 'type': 'value'}, 'end': 21, 'dim': 'number', 'latent': False}, {'body': 'forty one hundred and thirteen', 'start': 12, 'value': {'value': 4113, 'type': 'value'}, 'end': 42, 'dim': 'number', 'latent': False}]
I want nothing to overlap between the bodies of the extracted entities.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
How can we make sure that there are no overlapping bodies in the extracted entities.
For example:
for text: "one hundred forty one hundred and thirteen". I wanted the output: 140 and 113 ultimately
but I got 141 and 4113 (forty one is common between both the bodies).
I want nothing to overlap between the bodies of the extracted entities.
The text was updated successfully, but these errors were encountered: