| |
| { |
| "id": "semeval.train.0", |
| "instruction": "instruction text", |
| "schema": { |
| "cls": ["class1", "class2"], |
| "ent": ["person", "location"], |
| "rel": ["birth in", "study in"], |
| "event": { |
| "event type (attack)": ["roles like instrument", "attacker"], |
| "another type": ["role", "role"], |
| }, |
| }, |
| "ans": { |
| "cls": ["class1"], |
| "ent": [ |
| {"type": "person", "text": "1234", "span": [0, 4]} |
| ], |
| "rel": [ |
| { |
| "relation": "study in", |
| "head": {"text": "1234", "span": [0, 4]}, |
| "tail": {"text": "1234", "span": [5, 9]}, |
| } |
| ], |
| "event": [ |
| { |
| "event_type": "attack", |
| "trigger": {"text": "hit", "span": [6, 9]}, |
| "args": [{"role": "instrument", "text": "ax", "span": [8, 10]}], |
| } |
| ], |
| "span": [{"text": "machine learning", "span": [16, 32]}], |
| }, |
| |
| "text": "plain text", |
| "bg": "background text", |
| } |
|
|