Class: PROIEL::Converter::Tiger2

Inherits:
Object
  • Object
show all
Defined in:
lib/proiel/cli/converters/tiger2.rb

Constant Summary collapse

SCHEMA_FILE =
File.join('tiger2', 'Tiger2.xsd')

Class Method Summary collapse

Class Method Details

.declare_annotation(builder, features, annotation_schema) ⇒ Object



51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/proiel/cli/converters/tiger2.rb', line 51

def declare_annotation(builder, features, annotation_schema)
  builder.annotation do
    features.each do |name, domain|
      # FIXME: we may want to list possible values for some of these
      builder.feature(name: name, domain: domain)
    end

    builder.edgelabel do
      builder.value(name: '--')

      annotation_schema.primary_relations.each do |tag, features|
        builder.value({ name: tag }, features.summary)
      end
    end

    builder.secedgelabel do
      annotation_schema.secondary_relations.each do |tag, features|
        builder.value({name: tag }, features.summary)
      end
    end
  end
end

.declare_edgelabels(builder) ⇒ Object



74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/proiel/cli/converters/tiger2.rb', line 74

def declare_edgelabels(builder)
  builder.feature(name: 'label', type: 'prim', domain: 'edge') do
    declare_primary_edges(builder)
  end

  builder.feature(name: 'label', type: 'sec', domain: 'edge') do
    declare_secedges(builder)
  end

  builder.feature(name: 'label', type: 'coref', domain: 'edge') do
    builder.value(name: 'antecedent')
    builder.value(name: 'inference')
  end
end

.process(tb, _) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/proiel/cli/converters/tiger2.rb', line 6

def process(tb, _)
  selected_features = [] # TODO
  @features = selected_features.map { |f| [f, 'FREC'] }

  builder = Builder::XmlMarkup.new(target: STDOUT, indent: 2)
  builder.instruct! :xml, version: '1.0', encoding: 'UTF-8'

  tb.sources.each do |source|
    @hack = tb.annotation_schema
    write_source(builder, source, tb) do
      source.divs.each do |div|
        div.sentences.each do |sentence|
          write_sentence(builder, sentence)
        end
      end
    end
  end
end

.token_attrs(t, type) ⇒ Object



106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# File 'lib/proiel/cli/converters/tiger2.rb', line 106

def token_attrs(t, type)
  attrs = {}

  @features.each do |name, domain|
    if domain == 'FREC' or domain == type
      case name
      when :word, :cat
        attrs[name] = t.pro? ? "PRO-#{t.relation.upcase}" : t.form
      when *@semantic_features
        attrs[name] = t.sem_tags_to_hash[attr]
      when :lemma
        attrs[name] = t.lemma
      when :pos
        if t.empty_token_sort
          attrs[name] = t.empty_token_sort + '-'
        else
          attrs[name] = t.pos
        end
      when *MORPHOLOGICAL_FEATURES
        attrs[name] = name.to_s.split('_').map { |a| t.morphology_hash[a.to_sym] || '-' }.join
      else
        if t.respond_to?(name)
          attrs[name] = t.send(name)
        else
          raise "Do not know how to get required attribute #{name}"
        end
      end
      attrs[name] ||= '--'
    end
  end

  attrs
end

.write_edges(t, builder) ⇒ Object



174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# File 'lib/proiel/cli/converters/tiger2.rb', line 174

def write_edges(t, builder)
  # Add an edge between this node and the correspoding terminal node unless
  # this is not a morphtaggable node.
  builder.edge('tiger2:type' => 'prim', 'tiger2:target' => "w#{t.id}", :label => '--') if t.is_morphtaggable? or t.empty_token_sort == 'P'

  # Add primary dependency edges including empty pro tokens if we are exporting info structure as well
  t.dependents.each { |d| builder.edge('tiger2:type' => 'prim', 'tiger2:target' => "p#{d.id}", :label => d.relation.tag) }

  # Add secondary dependency edges
  get_slashes(t).each do |se|
    builder.edge('tiger2:type' => 'sec', 'tiger2:target' => "p#{se.slashee_id}", :label => se.relation.tag)
  end

  builder.edge('tiger2:type' => 'coref', 'tiger2:target' => t.antecedent_id, :label => (t.information_status_tag == 'acc_inf' ? 'inference' : 'antecedent'))
end

.write_nonterminals(builder, s) ⇒ Object



140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# File 'lib/proiel/cli/converters/tiger2.rb', line 140

def write_nonterminals(builder, s)
  builder.nonterminals do
    # Add an empty root node
    h = @features.select { |_, domain| ['FREC', 'NT'].include?(domain) }.map { |name, _| [name, '--'] }.to_h
    h['xml:id'] = "s#{s.id}_root"

    builder.nt(h) do
      s.tokens.reject { |t| t.head or t.pro? }.each do |t|
        builder.edge(idref: "p#{t.id}", label: t.relation)
      end
    end

    # Add other NTs
    s.tokens.each do |t|
      builder.nt(token_attrs(t, 'NT').merge('xml:id' => "p#{t.id}")) do
        # Add an edge to the correspoding terminal node
        builder.edge(idref: "w#{t.id}", label: '--')

        # Add primary dependency edges
        t.children.each { |d| builder.edge(idref: "p#{d.id}", label: d.relation) }

        # Add secondary dependency edges
        t.slashes.each do |relation, target_id|
          builder.secedge(idref: "p#{target_id}", label: relation)
        end
      end
    end
  end
end

.write_root_edge(t, builder) ⇒ Object



170
171
172
# File 'lib/proiel/cli/converters/tiger2.rb', line 170

def write_root_edge(t, builder)
  builder.edge('tiger2:type' => 'prim', 'tiger2:target' => "p#{t.id}", :label => t.relation.tag)
end

.write_sentence(builder, s) ⇒ Object



89
90
91
92
93
94
95
96
# File 'lib/proiel/cli/converters/tiger2.rb', line 89

def write_sentence(builder, s)
  builder.s('xml:id' => "s#{s.id}") do
    builder.graph(root: "s#{s.id}_root") do
      write_terminals(builder, s)
      write_nonterminals(builder, s)
    end
  end
end

.write_source(builder, s, tb) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/proiel/cli/converters/tiger2.rb', line 25

def write_source(builder, s, tb)
  builder.corpus('xml:id' => s.id,
                'xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance',
                'xsi:schemaLocation' => 'http://korpling.german.hu-berlin.de/tiger2/V2.0.5/ http://korpling.german.hu-berlin.de/tiger2/V2.0.5/Tiger2.xsd',
                'xmlns:tiger2' => 'http://korpling.german.hu-berlin.de/tiger2/V2.0.5/',
                'xmlns' => 'http://korpling.german.hu-berlin.de/tiger2/V2.0.5/') do
    builder.head do
      builder.meta do
        builder.name(s.title)
        builder.author('The PROIEL project')
        builder.date(s.export_time.strftime('%F %T %z'))
        builder.description
        builder.format
        builder.history
      end

      declare_annotation(builder, @features,
        tb.annotation_schema)
    end

    builder.body do
      yield builder
    end
  end
end

.write_terminals(builder, s) ⇒ Object



98
99
100
101
102
103
104
# File 'lib/proiel/cli/converters/tiger2.rb', line 98

def write_terminals(builder, s)
  builder.terminals do
    s.tokens.each do |t|
      builder.t(token_attrs(t, 'T').merge({ 'xml:id' => "w#{t.id}"}))
    end
  end
end