0001-added-corenlp-dep-tree-to-SpeechHypothesis-and-pos-t.patch

D. Hamann, 09/14/2017 05:11 PM

Download (2.66 KB)

View differences:

proto/stable/rst/dialog/SpeechHypothesis.proto
32 32
         */
33 33
        optional timing.Interval timestamps = 2;
34 34

  
35
        enum PosTag {
36
                ADJA = 1;
37
                ADJD = 2;
38
                ADV = 3;
39
                APPR = 4;
40
                APPRART = 5;
41
                APPO = 6;
42
                APZR = 7;
43
                ART = 8;
44
                CARD = 9;
45
                FM = 10;
46
                ITJ = 11;
47
                ORD = 12;
48
                KOUI = 13;
49
                KOUS = 14;
50
                KON = 15;
51
                KOKOM = 16;
52
                NN = 17;
53
                NE = 18;
54
                PDS = 19;
55
                PDAT = 20;
56
                PIS = 21;
57
                PIAT = 22;
58
                PIDAT = 23;
59
                PPER = 24;
60
                PPOSS = 25;
61
                PPOSAT = 26;
62
                PRELS = 27;
63
                PRELAT = 28;
64
                PRF = 29;
65
                PWS = 30;
66
                PWAT = 31;
67
                PWAV = 32;
68
                PAV = 33;
69
                PTKZU = 34;
70
                PTKNEG = 35;
71
                PTKVZ = 36;
72
                PTKANT = 37;
73
                PTKA = 38;
74
                SGML = 39;
75
                SPELL = 40;
76
                TRUNC = 41;
77
                VVFIN = 42;
78
                VVIMP = 43;
79
                VVINF = 44;
80
                VVIZU = 45;
81
                VVPP = 46;
82
                VAFIN = 47;
83
                VAIMP = 48;
84
                VAINF = 49;
85
                VAPP = 50;
86
                VMFIN = 51;
87
                VMINF = 52;
88
                VMPP = 53;
89
                XY = 54;
90
                KOMM = 55;
91
                END = 56;
92
                IPNCT = 57;
93
        }
94

  
95
        /**
96
         * PartOfSpeech-tag for this word.
97
         */
98
        optional PosTag pos_tag = 3;
35 99
    }
36 100

  
37 101
    /**
......
57 121
     */
58 122
    optional string grammar_tree = 4;
59 123

  
124
    /**
125
     * The dependency tree from corenlp of this speech hypothesis.
126
     */
127
    optional string corenlp_dep_tree = 5;
128

  
129

  
60 130
}
61
-