Entity Relations / Part of Speech Tagging
Named Entity Linking (PoS tagging) with the Universal Data Tool. Draw relationships between words or phrases within text.
Last updated
{
"document": "This strainer makes a great hat, I'll wear it while I serve spaghetti!",
"annotation": {
"entities": [
{
"text": "strainer",
"label": "hat",
"start": 5,
"end": 13,
"textId": "id1"
},
{
"text": "spaghetti",
"label": "food",
"start": 60,
"end": 69,
"textId": "id2"
},
{
"text": "I'll",
"start": 33,
"end": 37,
"textId": "id3"
},
{
"text": "wear",
"start": 38,
"end": 42,
"textId": "id4"
}
],
"relations": [
{
"from": "id3",
"to": "id4",
"label": "subject-doing"
}
]
}
}