File size: 1,202 Bytes
5953ef9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# udi-v1: universal data interface
{
    "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]}
        ],  # span: [start, end + 1]
        "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]}],
    },
    # DONE: whether or not to concatenate instruction with text (v2)
    "text": "plain text",
    "bg": "background text",
}