-
Notifications
You must be signed in to change notification settings - Fork 0
/
featurizer_dbpedia.py
179 lines (159 loc) · 5.9 KB
/
featurizer_dbpedia.py
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
"""A feature extractor for crfsuite"""
import crfutils, sys, os, re
import string
from collections import defaultdict
# For dbpedia spotlight api:
import requests
# For postagging:
from nltk import pos_tag
# Separator of field values.
separator = '\t'
templates = []
fields = 'w y'
templates = (
(('w', -2), ),
(('w', -1), ),
(('w', 0), ),
(('w', 0), ('w', 1)),
(('w', -1), ('w', 0)),
(('w', 0), ('w', 1)),
(('w', -2), ('w', -1), ('w', 0)),
(('w', -1), ('w', 0), ('w', 1)),
(('w', 0), ('w', 1), ('w', 2)),
)
DF = None
class DictionaryFeatures:
def __init__(self, dictDir):
self.word2dictionaries = {}
self.dictionaries = []
i = 0
for d in os.listdir(dictDir):
print("read dict %s"%d, file=sys.stderr)
self.dictionaries.append(d)
if d == '.svn':
continue
for line in open(dictDir + "/" + d):
word = line.rstrip('\n')
word = word.strip(' ').lower()
try:
self.word2dictionaries.get(word)
self.word2dictionaries[word] = str(i)
except KeyError:
self.word2dictionaries[word] += "\t%s" % i
i += 1
MAX_WINDOW_SIZE=6
def GetDictFeatures(self, words, i):
features = []
for window in range(self.MAX_WINDOW_SIZE):
for start in range(max(i-window+1, 0), i+1):
end = start + window
phrase = ' '.join(words[start:end]).lower().strip(string.punctuation)
try:
self.word2dictionaries.get(phrase)
for j in self.word2dictionaries[phrase].split('\t'):
features.append('DICT=%s' % self.dictionaries[int(j)])
if window > 1:
features.append('DICTWIN=%s' % window)
except KeyError:
pass
return list(set(features))
def GetOrthographicFeatures(word, goodCap=True):
features = []
features.append("word=%s" % word)
features.append("word_lower=%s" % word.lower())
if(len(word) >= 4):
features.append("prefix=%s" % word[0:1].lower())
features.append("prefix=%s" % word[0:2].lower())
features.append("prefix=%s" % word[0:3].lower())
features.append("suffix=%s" % word[len(word)-1:len(word)].lower())
features.append("suffix=%s" % word[len(word)-2:len(word)].lower())
features.append("suffix=%s" % word[len(word)-3:len(word)].lower())
if re.search(r'^[A-Z]', word):
features.append('INITCAP')
if re.search(r'^[A-Z]', word) and goodCap:
features.append('INITCAP_AND_GOODCAP')
if re.match(r'^[A-Z]+$', word):
features.append('ALLCAP')
if re.match(r'^[A-Z]+$', word) and goodCap:
features.append('ALLCAP_AND_GOODCAP')
if re.match(r'.*[0-9].*', word):
features.append('HASDIGIT')
if re.match(r'[0-9]', word):
features.append('SINGLEDIGIT')
if re.match(r'[0-9][0-9]', word):
features.append('DOUBLEDIGIT')
if re.match(r'.*-.*', word):
features.append('HASDASH')
if re.match(r'[.,;:?!-+\'"]', word):
features.append('PUNCTUATION')
return features
def GetWikipediaFeatures(text, confidence=0.5):
if isinstance(confidence, float):
confidence = str(confidence)
headers = {'Accept': 'application/json'}
data = {'confidence': confidence}
data.update({'text': text})
sentence = text.split()
response = requests.post('http://spotlight.sztaki.hu:2222/rest/annotate',
headers=headers, data=data)
labeled_ws = defaultdict(list)
if response.ok:
#import ipdb; ipdb.set_trace()
r = response.json()
try:
resources = r['Resources']
except KeyError:
return labeled_ws
#import ipdb; ipdb.set_trace()
for resource in resources:
wiki_labels = []
surface = resource['@surfaceForm']
types = resource['@types']
if len(types) > 0:
types = types.split(',')
for t in types:
if 'http' not in t:
s = t.split(':')
wiki_type = s[0]
wiki_label = s[1]
wiki_labels.append('WIKI_LABEL_%s=%s' % (wiki_type, wiki_label))
surface_ws = surface.split()
try:
surface_ix = [sentence.index(m) for m in surface_ws]
for ix in surface_ix:
labeled_ws.update({ix: wiki_labels})
except ValueError:
pass
return labeled_ws
def Featurizer(X):
global DF
if X:
# For postagging:
sentence = []
for x_ in X:
sentence.append(x_['w'])
tagged = pos_tag(sentence)
# Wikipedia labels:
text = ' '.join(sentence)
wiki_labels = GetWikipediaFeatures(text)
for t in range(len(X)):
w = X[t]['w']
feats = DF.GetDictFeatures(w,t) + GetOrthographicFeatures(w)
X[t]['F'].append('POSTAG_NLTK=%s'%(tagged[t][1]))
wiki_label = wiki_labels.get(t)
if wiki_label:
X[t]['F'].extend(wiki_label)
else:
X[t]['F'].append('WIKI_LABEL=NO_WIKI_LABEL')
for f in feats:
X[t]['F'].append('%s'%(f))
def FeatureExtractor(X):
"""apply attribute templates to obtain features (in fact, attributes)"""
crfutils.apply_templates(X, templates)
Featurizer(X)
if X:
X[0]['F'].append('__BOS__') # BOS feature
X[-1]['F'].append('__EOS__') # EOS feature
if __name__ == '__main__':
DF = DictionaryFeatures("./lexicon")
crfutils.main(FeatureExtractor, fields=fields, sep=separator)