File size: 3,179 Bytes
aaed6d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from .oieReader import OieReader
from .extraction import Extraction
import math
import os
import ipdb

class AllennlpReader(OieReader):
    
    def __init__(self, threshold=None):
        self.name = 'Allennlp'
        self.threshold = threshold
    
    def read(self, fn):
        d = {}
        # with open(fn) as fin:
        if os.path.exists(fn):
            # print("reading from file")
            fin = open(fn)
        else:
            # print("reading from string")
            fin = fn.strip().split('\n')
        
        for line in fin:
            '''
            data = line.strip().split('\t')
            confidence = data[0]
            if not all(data[2:5]):
                continue
            arg1, rel = [s[s.index('(') + 1:s.index(',List(')] for s in data[2:4]]
            #args = data[4].strip().split(');')
            #print arg2s
            args = [s[s.index('(') + 1:s.index(',List(')] for s in data[4].strip().split(');')]
            # if arg1 == "the younger La Flesche":
            #    print len(args)
            text = data[5]
            if data[1]:
                #print arg1, rel
                s = data[1]
                if not (arg1 + ' ' + rel).startswith(s[s.index('(') + 1:s.index(',List(')]):
                    #print "##########Not adding context" 
                    arg1 = s[s.index('(') + 1:s.index(',List(')] + ' ' + arg1
                    #print arg1 + rel, ",,,,, ", s[s.index('(') + 1:s.index(',List(')] 
            '''
            # print(line)
            line = line.strip().split('\t')
            # print(line)
            text = line[0]
            try:
                confidence = line[2]
            except:
                confidence = 0
                # raise Exception('Unable to find confidence in line: ',line)
            line = line[1]
            try:
                arg1 = line[line.index('<arg1>') + 6:line.index('</arg1>')]
            except:
                arg1 = ""
            try:
                rel = line[line.index('<rel>') + 5:line.index('</rel>')]
            except:
                rel = ""
            try:
                arg2 = line[line.index('<arg2>') + 6:line.index('</arg2>')]
            except:
                arg2 = ""

            if(type(self.threshold) != type(None) and float(confidence) < self.threshold):
                continue

            if not ( arg1 or arg2 or rel):
                continue
            #confidence = 1
            #print(arg1, rel, arg2, confidence)
            # curExtraction = Extraction(pred = rel, head_pred_index = -1, sent = text, confidence = -1/float(confidence))
            # curExtraction = Extraction(pred = rel, head_pred_index = -1, sent = text, confidence = math.exp(float(confidence)))
            curExtraction = Extraction(pred = rel, head_pred_index = -1, sent = text, confidence = float(confidence))
            curExtraction.addArg(arg1)
            curExtraction.addArg(arg2)
            #for arg in args:
            #    curExtraction.addArg(arg)
            d[text] = d.get(text, []) + [curExtraction]
        
        if os.path.exists(fn):
            fin.close()
        # print(d)
        self.oie = d