You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 15, 2025. It is now read-only.
## SampleINtent-1. foo {@PAR={@ENT1=bar} is {@ENT2=bar}}
-2. foo {@PAR=1 {@ENT1=bar} is 2 {@ENT2=bar}}
-3. foo {PAR={ENT1=bar} is {ENT2=bar}}
-4. foo {PAR=1 {ENT1=bar} is 2 {ENT2=bar}}
@ ml PAR
- @ ml ENT1
- @ ml ENT2
Output: (same for other examples)
{
"text": "1. foo bar is bar",
"intent": "SampleINtent",
"entities": [
{
"entity": "ENT1", // <<< overlapping labels because of exact token match"startPos": 14,
"endPos": 16
},
{
"entity": "ENT2", // <<< overlapping labels because of exact token match"startPos": 14,
"endPos": 16
},
{
"entity": "PAR",
"startPos": 7,
"endPos": 16
}
]
},