forked from fmacias64/pdd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.conf
More file actions
681 lines (614 loc) · 28.6 KB
/
Copy pathapplication.conf
File metadata and controls
681 lines (614 loc) · 28.6 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
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
139
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
deepdive {
db.default: {
driver: "org.postgresql.Driver"
url: "jdbc:postgresql://"${PGHOST}":"${PGPORT}/${DBNAME}
user: ${PGUSER}
password: ${DBPASSWORD}
dbname:${DBNAME}
port:${PGPORT}
host:${PGHOST}
}
calibration: {
holdout_fraction: 0.5
}
schema.variables:{
entity_formation.is_correct: Boolean
entity_taxon.is_correct: Boolean
entity_location.is_correct: Boolean
entity_temporal.is_correct: Boolean
relation_taxonomy.is_correct: Boolean
relation_formation.is_correct: Boolean
relation_formationtemporal.is_correct: Boolean
relation_formationlocation.is_correct: Boolean
relation_taxonomy_global.is_correct: Boolean
relation_formation_global.is_correct: Boolean
relation_formationtemporal_global.is_correct: Boolean
relation_formationlocation_global.is_correct: Boolean
}
extraction.extractors: {
#comments : {
ext_entity_formation_local : {
output_relation : "entity_formation"
input : """
SELECT docid as docid,
sentid as sentid,
wordidxs as wordidxs,
words as words,
poses as poses,
ners as ners,
lemmas as lemmas,
dep_paths as dep_paths,
dep_parents as dep_parents,
bounding_boxes as bounding_boxes
FROM sentences
"""
udf : ${PALEO_HOME}"/udf/ext_formation_local.py"
parallelism : 46
}
ext_entity_formation_global : {
output_relation : "entity_formation"
input : """
WITH local_entity_names AS (
SELECT docid, array_agg(entity) AS entities, array_agg(type) AS types
FROM entity_formation
GROUP BY docid
)
SELECT t0.docid as docid,
array_agg((t0.sentid) ORDER BY t0.sentid::int) as sentids,
array_stack_int((t0.wordidxs || 0) ORDER BY t0.sentid::int) as wordidxs,
array_stack_text((t0.words) ORDER BY t0.sentid::int) as words,
array_stack_text((t0.poses) ORDER BY t0.sentid::int) as poses,
array_stack_text((t0.ners) ORDER BY t0.sentid::int) as ners,
array_stack_text((t0.lemmas) ORDER BY t0.sentid::int) as lemmas,
array_stack_text((t0.dep_paths) ORDER BY t0.sentid::int) as dep_paths,
array_stack_int((t0.dep_parents) ORDER BY t0.sentid::int) as dep_parents,
array_stack_text((t0.bounding_boxes) ORDER BY t0.sentid::int) as bounding_boxes,
max(t1.entities) as local_entities,
max(t1.types) as local_entity_types
FROM sentences t0, local_entity_names t1
WHERE t0.docid = t1.docid
GROUP BY t0.docid
"""
udf : ${PALEO_HOME}"/udf/ext_formation_global.py"
dependencies : ["ext_entity_formation_local"]
parallelism : 46
}
ext_entity_temporal_local : {
output_relation : "entity_temporal"
input : """
SELECT docid as docid,
sentid as sentid,
wordidxs as wordidxs,
words as words,
poses as poses,
ners as ners,
lemmas as lemmas,
dep_paths as dep_paths,
dep_parents as dep_parents,
bounding_boxes as bounding_boxes
FROM sentences
"""
udf : ${PALEO_HOME}"/udf/ext_temporal_local.py"
parallelism : 46
}
ext_entity_taxon_local : {
output_relation : "entity_taxon"
input : """
SELECT docid as docid,
sentid as sentid,
wordidxs as wordidxs,
words as words,
poses as poses,
ners as ners,
lemmas as lemmas,
dep_paths as dep_paths,
dep_parents as dep_parents,
bounding_boxes as bounding_boxes
FROM sentences
"""
udf : ${PALEO_HOME}"/udf/ext_taxon_local.py"
parallelism : 46
}
ext_entity_taxon_global : {
output_relation : "entity_taxon"
input : """
WITH local_entity_names AS (
SELECT docid, array_agg(entity) AS entities, array_agg(type) AS types
FROM entity_taxon
GROUP BY docid
)
SELECT t0.docid as docid,
array_agg((t0.sentid) ORDER BY t0.sentid::int) as sentids,
array_stack_int((t0.wordidxs || 0) ORDER BY t0.sentid::int) as wordidxs,
array_stack_text((t0.words) ORDER BY t0.sentid::int) as words,
array_stack_text((t0.poses) ORDER BY t0.sentid::int) as poses,
array_stack_text((t0.ners) ORDER BY t0.sentid::int) as ners,
array_stack_text((t0.lemmas) ORDER BY t0.sentid::int) as lemmas,
array_stack_text((t0.dep_paths) ORDER BY t0.sentid::int) as dep_paths,
array_stack_int((t0.dep_parents) ORDER BY t0.sentid::int) as dep_parents,
array_stack_text((t0.bounding_boxes) ORDER BY t0.sentid::int) as bounding_boxes,
max(t1.entities) as local_entities,
max(t1.types) as local_entity_types
FROM sentences t0, local_entity_names t1
WHERE t0.docid = t1.docid
GROUP BY t0.docid
"""
udf : ${PALEO_HOME}"/udf/ext_taxon_global.py"
dependencies : ["ext_entity_taxon_local"]
parallelism : 46
}
ext_relation_same_sent : {
output_relation : "relation_candidates"
input : """
WITH entities AS (
SELECT docid,
array_agg(entity) as entities,
array_agg(type) as types,
array_agg(eid) as eids,
array_stack_text(array[array[prov[1],prov[2],prov[3],prov[4]]]) as provs
FROM
(
(SELECT docid, 'FORMATION' as type, eid, entity, prov FROM entity_formation)
UNION ALL
(SELECT docid, 'TAXON-' || type as type, eid, entity, prov FROM entity_taxon)
UNION ALL
(SELECT docid, 'INTERVAL' as type, eid, entity, prov FROM entity_temporal)
UNION ALL
(SELECT docid, 'LOCATION' as type, eid, entity, prov FROM entity_location)
) nt
GROUP BY docid
)
SELECT t0.docid as docid,
array_agg((t0.sentid) ORDER BY t0.sentid::int) as sentids,
array_stack_int((t0.wordidxs || 0) ORDER BY t0.sentid::int) as wordidxs,
array_stack_text((t0.words) ORDER BY t0.sentid::int) as words,
array_stack_text((t0.poses) ORDER BY t0.sentid::int) as poses,
array_stack_text((t0.ners) ORDER BY t0.sentid::int) as ners,
array_stack_text((t0.lemmas) ORDER BY t0.sentid::int) as lemmas,
array_stack_text((t0.dep_paths) ORDER BY t0.sentid::int) as dep_paths,
array_stack_int((t0.dep_parents) ORDER BY t0.sentid::int) as dep_parents,
array_stack_text((t0.bounding_boxes) ORDER BY t0.sentid::int) as bounding_boxes,
max(t1.entities) as entities,
max(t1.types) as entity_types,
max(t1.eids) as entity_eids,
max(t1.provs) as entity_provs
FROM sentences t0, entities t1
WHERE t0.docid = t1.docid
GROUP BY t0.docid
"""
#udf: util/extractor_input_writer.py /tmp/dd-sample-features.txt
udf : ${PALEO_HOME}"/udf/ext_relation_samesent.py"
dependencies : ["ext_entity_taxon_global","ext_entity_taxon_local","ext_entity_temporal_local","ext_entity_formation_global","ext_entity_formation_local"]
parallelism : 1
}
ext_relation_section_header : {
output_relation : "relation_candidates"
input : """
WITH entities AS (
SELECT docid,
array_agg(entity) as entities,
array_agg(type) as types,
array_agg(eid) as eids,
array_stack_text(array[array[prov[1],prov[2],prov[3],prov[4]]]) as provs
FROM
(
(SELECT docid, 'FORMATION' as type, eid, entity, prov FROM entity_formation)
UNION ALL
(SELECT docid, 'TAXON-' || type as type, eid, entity, prov FROM entity_taxon)
UNION ALL
(SELECT docid, 'INTERVAL' as type, eid, entity, prov FROM entity_temporal)
UNION ALL
(SELECT docid, 'LOCATION' as type, eid, entity, prov FROM entity_location)
) nt
GROUP BY docid
), layouts AS (
SELECT docid,
array_agg(property) as properties,
array_stack_int(array[array[pageid,left_margin,top_margin,right_margin,bottom_margin]]) as boxes
FROM layout_align
GROUP BY docid
)
SELECT t0.docid as docid,
array_agg((t0.sentid) ORDER BY t0.sentid::int) as sentids,
array_stack_int((t0.wordidxs || 0) ORDER BY t0.sentid::int) as wordidxs,
array_stack_text((t0.words) ORDER BY t0.sentid::int) as words,
array_stack_text((t0.poses) ORDER BY t0.sentid::int) as poses,
array_stack_text((t0.ners) ORDER BY t0.sentid::int) as ners,
array_stack_text((t0.lemmas) ORDER BY t0.sentid::int) as lemmas,
array_stack_text((t0.dep_paths) ORDER BY t0.sentid::int) as dep_paths,
array_stack_int((t0.dep_parents) ORDER BY t0.sentid::int) as dep_parents,
array_stack_text((t0.bounding_boxes) ORDER BY t0.sentid::int) as bounding_boxes,
max(t1.entities) as entities,
max(t1.types) as entity_types,
max(t1.eids) as entity_eids,
max(t1.provs) as entity_provs,
max(t2.properties) as layout_properties,
max(t2.boxes) as layout_boxes
FROM sentences t0, entities t1, layouts t2
WHERE t0.docid = t1.docid AND t0.docid = t2.docid
GROUP BY t0.docid
"""
#udf : "util/extractor_input_writer.py /tmp/bbbbbbb"
udf : ${PALEO_HOME}"/udf/ext_relation_sectionheader.py"
dependencies : ["ext_entity_taxon_global","ext_entity_taxon_local","ext_entity_temporal_local","ext_entity_formation_global","ext_entity_formation_local"]
parallelism : 46
}
ext_relation_variable_formationtemporal :{
output_relation : "relation_formationtemporal"
input : """
SELECT DISTINCT docid AS docid,
type AS type,
eid1 AS eid1,
eid2 AS eid2,
entity1 AS entity1,
entity2 AS entity2
FROM relation_candidates
WHERE type = 'FORMATIONINTERVAL'
"""
udf : ${PALEO_HOME}"/udf/supervise_formationtemporal.py"
dependencies : ["ext_relation_same_sent", "ext_relation_section_header","ext_relation_from_table"]
parallelism : 46
}
ext_relation_variable_taxonomy :{
output_relation : "relation_taxonomy"
input : """
SELECT DISTINCT docid AS docid,
type AS type,
eid1 AS eid1,
eid2 AS eid2,
entity1 AS entity1,
entity2 AS entity2
FROM relation_candidates
WHERE type = 'TAXONOMY' or type = 'TAXONOMY2'
"""
udf : ${PALEO_HOME}"/udf/supervise_taxonomy.py"
dependencies : ["ext_relation_same_sent", "ext_relation_section_header","ext_relation_from_table"]
parallelism : 46
}
ext_relation_variable_formation :{
output_relation : "relation_formation"
input : """
SELECT DISTINCT docid AS docid,
type AS type,
eid1 AS eid1,
eid2 AS eid2,
entity1 AS entity1,
entity2 AS entity2
FROM relation_candidates
WHERE type = 'FORMATION'
"""
udf : ${PALEO_HOME}"/udf/supervise_formation.py"
dependencies : ["ext_relation_same_sent", "ext_relation_section_header,"ext_relation_from_table""]
parallelism : 46
}
ext_relation_variable_formation_false :{
style : "sql_extractor"
sql : """
INSERT INTO relation_formation(docid, type, eid1, eid2, entity1, entity2, is_correct)
SELECT DISTINCT docid,
'FORMATION',
eid1,
eid2,
entity1,
entity2,
false
FROM relation_candidates
WHERE type = 'FORMATIONINTERVAL' or type = 'FORMATIONLOCATION' LIMIT 1000000
"""
dependencies : ["ext_relation_same_sent", "ext_relation_section_header","ext_relation_variable_formationtemporal", "ext_relation_variable_taxonomy", "ext_relation_variable_formation","ext_relation_from_table"]
}
ext_relation_from_table : {
output_relation : "relation_candidates"
input : """
WITH entities AS (
SELECT docid,
array_agg(entity) as entities,
array_agg(type) as types,
array_agg(eid) as eids,
array_stack_text(array[array[prov[1],prov[2],prov[3],prov[4]]]) as provs
FROM
(
(SELECT docid, 'FORMATION' as type, eid, entity, prov FROM entity_formation)
UNION ALL
(SELECT docid, 'TAXON-' || type as type, eid, entity, prov FROM entity_taxon)
UNION ALL
(SELECT docid, 'INTERVAL' as type, eid, entity, prov FROM entity_temporal)
UNION ALL
(SELECT docid, 'LOCATION' as type, eid, entity, prov FROM entity_location)
) nt
GROUP BY docid
), table_structures AS (
SELECT docid,
array_agg(tableid) as table_ids,
array_agg(type) as line_types,
array_agg(sentid) as line_sentids
FROM ddtables
GROUP BY docid
)
SELECT t0.docid as docid,
array_agg((t0.sentid) ORDER BY t0.sentid::int) as sentids,
array_stack_int((t0.wordidxs || 0) ORDER BY t0.sentid::int) as wordidxs,
array_stack_text((t0.words) ORDER BY t0.sentid::int) as words,
array_stack_text((t0.poses) ORDER BY t0.sentid::int) as poses,
array_stack_text((t0.ners) ORDER BY t0.sentid::int) as ners,
array_stack_text((t0.lemmas) ORDER BY t0.sentid::int) as lemmas,
array_stack_text((t0.dep_paths) ORDER BY t0.sentid::int) as dep_paths,
array_stack_int((t0.dep_parents) ORDER BY t0.sentid::int) as dep_parents,
array_stack_text((t0.bounding_boxes) ORDER BY t0.sentid::int) as bounding_boxes,
max(t1.entities) as entities,
max(t1.types) as entity_types,
max(t1.eids) as entity_eids,
max(t1.provs) as entity_provs,
max(t2.table_ids) as table_ids,
max(t2.line_types) as line_types,
max(t2.line_sentids) as line_sentids
FROM sentences t0, entities t1, table_structures t2
WHERE t0.docid = t1.docid AND t0.docid = t2.docid
GROUP BY t0.docid
"""
#udf : "util/extractor_input_writer.py /tmp/dddddddd"
udf : ${PALEO_HOME}"/udf/ext_relation_from_table.py"
dependencies : ["ext_entity_taxon_global","ext_entity_taxon_local","ext_entity_temporal_local","ext_entity_formation_global","ext_entity_formation_local"]
parallelism : 46
}
global_temporal_containment:{
output_relation : "interval_containments"
input : """
SELECT DISTINCT
t0.entity1 as formation,
t0.entity2 as interval1,
t1.entity2 as interval2
FROM relation_formationtemporal t0,
relation_formationtemporal t1
WHERE t0.entity1=t1.entity1 AND t0.entity2 <> t1.entity2
"""
udf : ${PALEO_HOME}"/udf/interval_containment.py"
parallelism : 46
}
global_temporal_not_that_possible:{
output_relation : "interval_not_that_possible"
input : """
SELECT DISTINCT
t0.entity1 as formation,
t0.entity2 as interval1,
t1.entity2 as interval2
FROM relation_formationtemporal t0,
relation_formationtemporal t1
WHERE t0.entity1=t1.entity1 AND t0.entity2 <> t1.entity2
"""
udf : ${PALEO_HOME}"/udf/interval_not_that_possible.py"
parallelism : 46
}
ext_global_variables : {
style : "sql_extractor"
sql : """
INSERT INTO relation_taxonomy_global(docid, type, eid1, eid2, entity1, entity2, is_correct)
SELECT DISTINCT docid, type, eid1, eid2, entity1, entity2, NULL::boolean
FROM relation_taxonomy;
INSERT INTO relation_formation_global(docid, type, eid1, eid2, entity1, entity2, is_correct)
SELECT DISTINCT docid, type, eid1, eid2, entity1, entity2, NULL::boolean
FROM relation_formation;
INSERT INTO relation_formationtemporal_global(docid, type, eid1, eid2, entity1, entity2, is_correct)
SELECT DISTINCT docid, type, eid1, eid2, entity1, entity2, NULL::boolean
FROM relation_formationtemporal;
INSERT INTO relation_formationlocation_global(docid, type, eid1, eid2, entity1, entity2, is_correct)
SELECT DISTINCT docid, type, eid1, eid2, entity1, entity2, NULL::boolean
FROM relation_formationlocation;
"""
dependencies : ["ext_relation_variable_formationtemporal","ext_relation_variable_taxonomy","ext_relation_variable_formation"]
}
}
#extraction.extractors: {
#}
comments : {
ext_relation_variable_formationlocation :{
output_relation : "relations_formationlocation"
input : """
SELECT DISTINCT docid AS "relation_candidates.docid",
type AS "relation_candidates.type",
eid1 AS "relation_candidates.eid1",
eid2 AS "relation_candidates.eid2",
entity1 AS "relation_candidates.entity1",
entity2 AS "relation_candidates.entity2"
FROM relation_candidates
WHERE type = 'FORMATIONLOCATION'
"""
udf : ${PALEO_HOME}"/udf/supervise_relations.py"
output_batch_size: 1000000
parallelism : 40
}
}
inference.factors: {
inference_rule_formationinterval : {
input_query: """
SELECT t0.features,
t1.id as "relation_formationtemporal.id",
t1.is_correct as "relation_formationtemporal.is_correct"
FROM relation_candidates t0, relation_formationtemporal t1
WHERE t0.docid=t1.docid AND t0.eid1=t1.eid1 AND t0.eid2=t1.eid2
"""
function: "Imply(relation_formationtemporal.is_correct)"
weight: "?(features)"
}
inference_rule_taxonomy: {
input_query: """
SELECT t0.features,
t1.id as "relation_taxonomy.id",
t1.is_correct as "relation_taxonomy.is_correct"
FROM relation_candidates t0, relation_taxonomy t1
WHERE t0.docid=t1.docid AND t0.eid1=t1.eid1 AND t0.eid2=t1.eid2
"""
function: "Imply(relation_taxonomy.is_correct)"
weight: "?(features)"
}
inference_rule_formationlocation : {
input_query: """
SELECT t0.features,
t1.id as "relation_formationlocation.id",
t1.is_correct as "relation_formationlocation.is_correct"
FROM relation_candidates t0, relation_formationlocation t1
WHERE t0.docid=t1.docid AND t0.eid1=t1.eid1 AND t0.eid2=t1.eid2
"""
function: "Imply(relation_formationlocation.is_correct)"
weight: "?(features)"
}
inference_rule_formation : {
input_query: """
SELECT t0.features,
t1.id as "relation_formation.id",
t1.is_correct as "relation_formation.is_correct"
FROM relation_candidates t0, relation_formation t1
WHERE t0.docid=t1.docid AND t0.eid1=t1.eid1 AND t0.eid2=t1.eid2
"""
function: "Imply(relation_formation.is_correct)"
weight: "?(features)"
}
inference_rule_formation_global : {
input_query: """
SELECT t0.id as "relation_formation.id",
t1.id as "relation_formation_global.id",
t0.is_correct as "relation_formation.is_correct",
t1.is_correct as "relation_formation_global.is_correct",
t2.id as "entity_taxon.id",
t2.is_correct as "entity_taxon.is_correct",
t3.id as "entity_formation.id",
t3.is_correct as "entity_formation.is_correct"
FROM relation_formation t0,
relation_formation_global t1,
entity_taxon t2,
entity_formation t3
WHERE t0.docid=t1.docid AND t0.eid1=t1.eid1 AND t0.eid2=t1.eid2
AND t0.eid1=t2.eid AND t0.eid2=t3.eid
"""
function: "Imply(entity_taxon.is_correct, entity_formation.is_correct, relation_formation.is_correct, relation_formation_global.is_correct)"
weight: "10"
}
inference_rule_formationtemporal_global : {
input_query: """
SELECT t0.id as "relation_formationtemporal.id",
t1.id as "relation_formationtemporal_global.id",
t0.is_correct as "relation_formationtemporal.is_correct",
t1.is_correct as "relation_formationtemporal_global.is_correct",
t2.id as "entity_formation.id",
t2.is_correct as "entity_formation.is_correct",
t3.id as "entity_temporal.id",
t3.is_correct as "entity_temporal.is_correct"
FROM relation_formationtemporal t0,
relation_formationtemporal_global t1,
entity_formation t2,
entity_temporal t3
WHERE t0.docid=t1.docid AND t0.eid1=t1.eid1 AND t0.eid2=t1.eid2
AND t0.eid1=t2.eid AND t0.eid2=t3.eid
"""
function: "Imply(entity_formation.is_correct, entity_temporal.is_correct, relation_formationtemporal.is_correct, relation_formationtemporal_global.is_correct)"
weight: "10"
}
inference_rule_formationlocation_global : {
input_query: """
SELECT t0.id as "relation_formationlocation.id",
t1.id as "relation_formationlocation_global.id",
t0.is_correct as "relation_formationlocation.is_correct",
t1.is_correct as "relation_formationlocation_global.is_correct",
t2.id as "entity_formation.id",
t2.is_correct as "entity_formation.is_correct",
t3.id as "entity_location.id",
t3.is_correct as "entity_location.is_correct"
FROM relation_formationlocation t0,
relation_formationlocation_global t1,
entity_formation t2,
entity_location t3
WHERE t0.docid=t1.docid AND t0.eid1=t1.eid1 AND t0.eid2=t1.eid2
AND t0.eid1=t2.eid AND t0.eid2=t3.eid
"""
function: "Imply(entity_formation.is_correct, entity_location.is_correct, relation_formationlocation.is_correct, relation_formationlocation_global.is_correct)"
weight: "10"
}
inference_rule_taxonomy_global : {
input_query: """
SELECT t0.id as "relation_taxonomy.id",
t1.id as "relation_taxonomy_global.id",
t0.is_correct as "relation_taxonomy.is_correct",
t1.is_correct as "relation_taxonomy_global.is_correct",
t2.id as "entity_taxon1.id",
t2.is_correct as "entity_taxon1.is_correct",
t3.id as "entity_taxon2.id",
t3.is_correct as "entity_taxon2.is_correct"
FROM relation_taxonomy t0,
relation_taxonomy_global t1,
entity_taxon t2,
entity_taxon t3
WHERE t0.docid=t1.docid AND t0.eid1=t1.eid1 AND t0.eid2=t1.eid2
AND t0.eid1=t2.eid AND t0.eid2=t3.eid
"""
function: "Imply(entity_taxon1.is_correct, entity_taxon2.is_correct, relation_taxonomy.is_correct, relation_taxonomy_global.is_correct)"
weight: "10"
}
inference_entity_formation : {
input_query: """
SELECT id as "entity_formation.id",
is_correct as "entity_formation.is_correct"
FROM entity_formation
"""
function: "Imply(entity_formation.is_correct)"
weight: "10"
}
inference_entity_taxon : {
input_query: """
SELECT id as "entity_taxon.id",
is_correct as "entity_taxon.is_correct"
FROM entity_taxon
"""
function: "Imply(entity_taxon.is_correct)"
weight: "10"
}
inference_entity_location : {
input_query: """
SELECT id as "entity_location.id",
is_correct as "entity_location.is_correct"
FROM entity_location
"""
function: "Imply(entity_location.is_correct)"
weight: "10"
}
inference_entity_temporal : {
input_query: """
SELECT id as "entity_temporal.id",
is_correct as "entity_temporal.is_correct"
FROM entity_temporal
"""
function: "Imply(entity_temporal.is_correct)"
weight: "10"
}
inference_rule_formationtemporal_global1 : {
input_query: """
SELECT t0.id as "global1.id",
t1.id as "global2.id",
t0.is_correct as "global1.is_correct",
t1.is_correct as "global2.is_correct"
FROM relation_formationtemporal_global t0,
relation_formationtemporal_global t1,
interval_containments t2
WHERE t0.docid=t1.docid AND t0.entity1=t1.entity1 AND t0.entity1=t2.formation
AND t0.entity2=t2.child AND t1.entity2=t2.parent
"""
function: "Imply(global1.is_correct, !global2.is_correct)"
weight: "10"
}
inference_rule_formationtemporal_global2 : {
input_query: """
SELECT t0.id as "global1.id",
t1.id as "global2.id",
t0.is_correct as "global1.is_correct",
t1.is_correct as "global2.is_correct"
FROM relation_formationtemporal_global t0,
relation_formationtemporal_global t1,
interval_not_that_possible t2
WHERE t0.docid=t1.docid AND t0.entity1=t1.entity1 AND t0.entity1=t2.formation
AND t0.entity2=t2.interval1 AND t1.entity2=t2.interval2
"""
function: "AND(global1.is_correct, global2.is_correct)"
weight: "-10"
}
}
sampler.sampler_args: "-l 1000 -s 1 -i 1000 --alpha 0.1"
}