-
Notifications
You must be signed in to change notification settings - Fork 25
/
dependency_tree.py
executable file
·50 lines (42 loc) · 1.7 KB
/
dependency_tree.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
# -*- coding: utf-8 -*-
import numpy as np
import spacy
import pickle
nlp = spacy.load('en_core_web_sm')
def dependency_adj_matrix(text):
# https://spacy.io/docs/usage/processing-text
document = nlp(text)
seq_len = len(text.split())
matrix = np.zeros((seq_len, seq_len)).astype('float32')
for token in document:
if token.i < seq_len:
matrix[token.i][token.i] = 1
# https://spacy.io/docs/api/token
for child in token.children:
if child.i < seq_len:
matrix[token.i][child.i] = 1
return matrix
def process(filename):
fin = open(filename, 'r', encoding='utf-8', newline='\n', errors='ignore')
lines = fin.readlines()
fin.close()
idx2graph = {}
fout = open(filename+'.tree', 'wb')
for i in range(0, len(lines), 3):
text_left, _, text_right = [s.lower().strip() for s in lines[i].partition("$T$")]
aspect = lines[i + 1].lower().strip()
adj_matrix = dependency_adj_matrix(text_left+' '+aspect+' '+text_right)
idx2graph[i] = adj_matrix
pickle.dump(idx2graph, fout)
fout.close()
if __name__ == '__main__':
process('./datasets/acl-14-short-data/train.raw')
process('./datasets/acl-14-short-data/test.raw')
process('./datasets/semeval14/restaurant_train.raw')
process('./datasets/semeval14/restaurant_test.raw')
process('./datasets/semeval14/laptop_train.raw')
process('./datasets/semeval14/laptop_test.raw')
process('./datasets/semeval15/restaurant_train.raw')
process('./datasets/semeval15/restaurant_test.raw')
process('./datasets/semeval16/restaurant_train.raw')
process('./datasets/semeval16/restaurant_test.raw')