forked from brightmart/text_classification
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata_util.py
More file actions
164 lines (146 loc) · 6.36 KB
/
data_util.py
File metadata and controls
164 lines (146 loc) · 6.36 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
# -*- coding: utf-8 -*-
import codecs
import random
import numpy as np
from tflearn.data_utils import pad_sequences
from collections import Counter
import os
import pickle
PAD_ID = 0
UNK_ID=1
_PAD="_PAD"
_UNK="UNK"
def load_data_multilabel(traning_data_path,vocab_word2index, vocab_label2index,sentence_len,training_portion=0.95):
"""
convert data as indexes using word2index dicts.
:param traning_data_path:
:param vocab_word2index:
:param vocab_label2index:
:return:
"""
file_object = codecs.open(traning_data_path, mode='r', encoding='utf-8')
lines = file_object.readlines()
random.shuffle(lines)
label_size=len(vocab_label2index)
X = []
Y = []
for i,line in enumerate(lines):
raw_list = line.strip().split("__label__")
input_list = raw_list[0].strip().split(" ")
input_list = [x.strip().replace(" ", "") for x in input_list if x != '']
x=[vocab_word2index.get(x,UNK_ID) for x in input_list]
label_list = raw_list[1:]
label_list=[l.strip().replace(" ", "") for l in label_list if l != '']
label_list=[vocab_label2index[label] for label in label_list]
y=transform_multilabel_as_multihot(label_list,label_size)
X.append(x)
Y.append(y)
if i<10:print(i,"line:",line)
X = pad_sequences(X, maxlen=sentence_len, value=0.) # padding to max length
number_examples = len(lines)
training_number=int(training_portion* number_examples)
train = (X[0:training_number], Y[0:training_number])
valid_number=min(1000,number_examples-training_number)
test = (X[training_number+ 1:training_number+valid_number+1], Y[training_number + 1:training_number+valid_number+1])
return train,test
def transform_multilabel_as_multihot(label_list,label_size):
"""
convert to multi-hot style
:param label_list: e.g.[0,1,4], here 4 means in the 4th position it is true value(as indicate by'1')
:param label_size: e.g.199
:return:e.g.[1,1,0,1,0,0,........]
"""
result=np.zeros(label_size)
#set those location as 1, all else place as 0.
result[label_list] = 1
return result
#use pretrained word embedding to get word vocabulary and labels, and its relationship with index
def create_vocabulary(training_data_path,vocab_size,name_scope='cnn'):
"""
create vocabulary
:param training_data_path:
:param vocab_size:
:param name_scope:
:return:
"""
cache_vocabulary_label_pik='cache'+"_"+name_scope # path to save cache
if not os.path.isdir(cache_vocabulary_label_pik): # create folder if not exists.
os.makedirs(cache_vocabulary_label_pik)
# if cache exists. load it; otherwise create it.
cache_path =cache_vocabulary_label_pik+"/"+'vocab_label.pik'
print("cache_path:",cache_path,"file_exists:",os.path.exists(cache_path))
if os.path.exists(cache_path):
with open(cache_path, 'rb') as data_f:
return pickle.load(data_f)
else:
vocabulary_word2index={}
vocabulary_index2word={}
vocabulary_word2index[_PAD]=PAD_ID
vocabulary_index2word[PAD_ID]=_PAD
vocabulary_word2index[_UNK]=UNK_ID
vocabulary_index2word[UNK_ID]=_UNK
vocabulary_label2index={}
vocabulary_index2label={}
#1.load raw data
file_object = codecs.open(training_data_path, mode='r', encoding='utf-8')
lines=file_object.readlines()
#2.loop each line,put to counter
c_inputs=Counter()
c_labels=Counter()
for line in lines:
raw_list=line.strip().split("__label__")
input_list = raw_list[0].strip().split(" ")
input_list = [x.strip().replace(" ", "") for x in input_list if x != '']
label_list=[l.strip().replace(" ","") for l in raw_list[1:] if l!='']
c_inputs.update(input_list)
c_labels.update(label_list)
#return most frequency words
vocab_list=c_inputs.most_common(vocab_size)
label_list=c_labels.most_common()
#put those words to dict
for i,tuplee in enumerate(vocab_list):
word,_=tuplee
vocabulary_word2index[word]=i+2
vocabulary_index2word[i+2]=word
for i,tuplee in enumerate(label_list):
label,_=tuplee;label=str(label)
vocabulary_label2index[label]=i
vocabulary_index2label[i]=label
#save to file system if vocabulary of words not exists.
if not os.path.exists(cache_path):
with open(cache_path, 'ab') as data_f:
pickle.dump((vocabulary_word2index,vocabulary_index2word,vocabulary_label2index,vocabulary_index2label), data_f)
return vocabulary_word2index,vocabulary_index2word,vocabulary_label2index,vocabulary_index2label
def load_data(cache_file_h5py,cache_file_pickle):
"""
load data from h5py and pickle cache files, which is generate by take step by step of pre-processing.ipynb
:param cache_file_h5py:
:param cache_file_pickle:
:return:
"""
if not os.path.exists(cache_file_h5py) or not os.path.exists(cache_file_pickle):
raise RuntimeError("############################ERROR##############################\n. "
"please download cache file, it include training data and vocabulary & labels. "
"link can be found in README.md\n download zip file, unzip it, then put cache files as FLAGS."
"cache_file_h5py and FLAGS.cache_file_pickle suggested location.")
print("INFO. cache file exists. going to load cache file")
f_data = h5py.File(cache_file_h5py, 'r')
print("f_data.keys:",list(f_data.keys()))
train_X=f_data['train_X'] # np.array(
print("train_X.shape:",train_X.shape)
train_Y=f_data['train_Y'] # np.array(
print("train_Y.shape:",train_Y.shape,";")
vaild_X=f_data['vaild_X'] # np.array(
valid_Y=f_data['valid_Y'] # np.array(
test_X=f_data['test_X'] # np.array(
test_Y=f_data['test_Y'] # np.array(
#print(train_X)
#f_data.close()
word2index, label2index=None,None
with open(cache_file_pickle, 'rb') as data_f_pickle:
word2index, label2index=pickle.load(data_f_pickle)
print("INFO. cache file load successful...")
return word2index, label2index,train_X,train_Y,vaild_X,valid_Y,test_X,test_Y
#training_data_path='../data/sample_multiple_label3.txt'
#vocab_size=100
#create_voabulary(training_data_path,vocab_size)