-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabeling.py
More file actions
291 lines (226 loc) · 12.7 KB
/
labeling.py
File metadata and controls
291 lines (226 loc) · 12.7 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
import os
import re
import csv
import sys
import json
import fire
import torch
import random
import pprint
import numpy as np
import importlib.util
import logging as log
from datetime import datetime
import wrench
from wrench.dataset import load_dataset
from wrench._logging import LoggingHandler
from wrench.endmodel import EndClassifierModel, LogRegModel
from wrench.labelmodel import Snorkel, MajorityVoting, MajorityWeightedVoting, DawidSkene, FlyingSquid, HyperLM
class Labeler:
def __init__(self, args):
self.args = args
self.dataset = args["dataset"]
self.device = torch.device('cuda:0')
self.LM_NAMES = ["FS", "DS", "WMV", "MV", "Snorkel"]
self.EM_NAMES = ["MLP", "LR"]
self.total_cost = 0
self.final_result = {"Dataset" : args["dataset"],
"Mode" : args["mode"],
"Model" : args["codellm"]}
if "prior_type" in args:
self.final_result["Heuristic Mode"] = args["prior_type"]
def get_model(self, name):
if name == "FS":
return FlyingSquid()
elif name == "DS":
return DawidSkene()
elif name == "WMV":
return MajorityWeightedVoting()
elif name == "MV":
return MajorityVoting()
elif name == "Snorkel":
return Snorkel()
elif name == "MLP":
return EndClassifierModel(backbone='MLP')
elif name == "LR":
return LogRegModel()
def get_data(self):
train_data, valid_data, test_data = load_dataset(
self.args['dataset_LF_saved_path'].replace(self.dataset, ""),
self.dataset,
extract_feature=True,
extract_fn='bert',
model_name='bert-base-cased',
cache_name='bert'
)
return train_data, valid_data, test_data
def sort_filenames(self, filename):
return int(re.search(r'\d+', filename).group())
def get_LF_file_paths(self):
file_path_collection = []
for f in os.listdir(self.args["LF_saving_exact_dir"]):
file_path = os.path.join(self.args["LF_saving_exact_dir"], f)
if os.path.isfile(file_path) and f.endswith(".py"):
file_path_collection.append(f)
file_path_collection = sorted(file_path_collection, key=self.sort_filenames)
for i, f in enumerate(file_path_collection):
exact_file_path = os.path.join(self.args["LF_saving_exact_dir"], f)
file_path_collection[i] = exact_file_path
return file_path_collection
def get_weak_labels(self, data, type):
module_spec = importlib.util.spec_from_loader("temp_module", loader=None)
module = importlib.util.module_from_spec(module_spec)
weak_label_matrix = []
for file_path in self.file_path_collection:
print(f"Read {file_path} for {type} data")
with open(file_path, "r") as f:
code_string = f.read()
exec(code_string, module.__dict__)
sys.modules["temp_module"] = module
from temp_module import label_function
weak_labels = []
for i in range(len(data.examples)):
example = data.examples[i]["text"]
weak_label = label_function(example)
weak_labels.append(weak_label)
weak_label_matrix.append(weak_labels)
weak_label_matrix = np.array(weak_label_matrix).T
return weak_label_matrix
def get_LF_summary(self):
self.logger.info(f"Training Data LF summary:\n{self.train_data.lf_summary()}")
self.logger.info(f"Validation Data LF summary:\n{self.valid_data.lf_summary()}")
self.logger.info(f"Testing Data LF summary:\n{self.test_data.lf_summary()}")
def label_time(self):
## filter out uncovered training data ##
train_data_covered = self.train_data.get_covered_subset()
lm_coverage = len(train_data_covered) / len(self.train_data)
self.final_result["lm_coverage"] = lm_coverage
self.logger.info(f'label model train coverage: {round(lm_coverage, 5)}')
## run label model for 5 times ##
TIMES = 5
for label_model_name in self.LM_NAMES:
self.logger.info("=====================================")
lm_acc_array = np.zeros(TIMES)
lm_f1_array = np.zeros(TIMES)
lm_collection = []
for T1 in range(TIMES):
## train the label model using weak labels ##
label_model = self.get_model(label_model_name)
label_model.fit(dataset_train=self.train_data, dataset_valid=self.valid_data)
lm_acc = label_model.test(self.test_data, 'acc')
if self.train_data.n_class == 2:
lm_f1 = label_model.test(self.test_data, 'f1_binary')
elif self.train_data.n_class > 2:
lm_f1 = label_model.test(self.test_data, 'f1_weighted')
lm_acc_array[T1] = lm_acc
lm_f1_array[T1] = lm_f1
lm_collection.append(label_model)
self.logger.info(f'{T1} - {label_model_name} testing accuracy: {round(lm_acc, 5)}')
self.logger.info(f'{T1} - {label_model_name} testing f1: {round(lm_f1, 5)}')
## Overall Evaluation ##
self.logger.info("=====================================")
lm_acc_mean, lm_acc_std, lm_f1_mean, lm_f1_std = np.mean(lm_acc_array, axis=0), np.std(lm_acc_array, axis=0), np.mean(lm_f1_array, axis=0), np.std(lm_f1_array, axis=0)
self.logger.info(f'Overall - {label_model_name} testing accuracy mean: {round(lm_acc_mean, 5)}')
self.logger.info(f'Overall - {label_model_name} testing accuracy std: {round(lm_acc_std, 5)}')
self.logger.info(f'Overall - {label_model_name} testing f1 mean: {round(lm_f1_mean, 5)}')
self.logger.info(f'Overall - {label_model_name} testing f1 std: {round(lm_f1_std, 5)}')
self.final_result[f"{label_model_name}_acc_mean"] = round(lm_acc_mean, 5)
self.final_result[f"{label_model_name}_acc_std"] = round(lm_acc_std, 5)
self.final_result[f"{label_model_name}_f1_mean"] = round(lm_f1_mean, 5)
self.final_result[f"{label_model_name}_f1_std"] = round(lm_f1_std, 5)
## Use best label model to predict soft label ##
if self.dataset == "sms":
best_label_model_index = np.argmax(lm_f1_array)
else:
best_label_model_index = np.argmax(lm_acc_array)
best_label_model = lm_collection[best_label_model_index]
train_soft_label_covered = best_label_model.predict_proba(train_data_covered)
## run end model with soft labels for 5 times ##
for end_model_name in self.EM_NAMES:
self.logger.info("=====================================")
em_acc_array = np.zeros(TIMES)
em_f1_array = np.zeros(TIMES)
em_collection = []
m = "acc"
if self.dataset == "sms":
m = "f1_weighted"
for T2 in range(TIMES):
end_model = self.get_model(end_model_name)
end_model.fit(dataset_train=train_data_covered, y_train=train_soft_label_covered,
dataset_valid=self.valid_data, evaluation_step=10,
metric=m, verbose=False,
device=self.device)
em_acc = end_model.test(self.test_data, 'acc')
if self.train_data.n_class == 2:
em_f1 = end_model.test(self.test_data, 'f1_binary')
elif self.train_data.n_class > 2:
em_f1 = end_model.test(self.test_data, 'f1_weighted')
em_acc_array[T2] = em_acc
em_f1_array[T2] = em_f1
em_collection.append(end_model)
self.logger.info(f'{T2} - {label_model_name} + {end_model_name} testing accuracy: {round(em_acc, 5)}')
self.logger.info(f'{T2} - {label_model_name} + {end_model_name} testing f1: {round(em_f1, 5)}')
## Overall Evaluation ##
self.logger.info("=====================================")
em_acc_mean, em_acc_std, em_f1_mean, em_f1_std = np.mean(em_acc_array, axis=0), np.std(em_acc_array, axis=0), np.mean(em_f1_array, axis=0), np.std(em_f1_array, axis=0)
self.logger.info(f'Overall - {label_model_name} + {end_model_name} testing accuracy mean: {round(em_acc_mean, 5)}')
self.logger.info(f'Overall - {label_model_name} + {end_model_name} testing accuracy std: {round(em_acc_std, 5)}')
self.logger.info(f'Overall - {label_model_name} + {end_model_name} testing f1 mean: {round(em_f1_mean, 5)}')
self.logger.info(f'Overall - {label_model_name} + {end_model_name} testing f1 std: {round(em_f1_std, 5)}')
self.final_result[f"{label_model_name}_{end_model_name}_acc_mean"] = round(em_acc_mean, 5)
self.final_result[f"{label_model_name}_{end_model_name}_acc_std"] = round(em_acc_std, 5)
self.final_result[f"{label_model_name}_{end_model_name}_f1_mean"] = round(em_f1_mean, 5)
self.final_result[f"{label_model_name}_{end_model_name}_f1_std"] = round(em_f1_std, 5)
def get_total_cost(self):
self.logger.info("=====================================")
for file_path in self.file_path_collection:
with open(file_path, "r") as f:
code_string = f.read()
pattern = re.compile(r'\$\[(.*?)\]')
matches = pattern.findall(code_string)
self.total_cost += float(matches[0])
self.final_result["total_cost"] = round(self.total_cost, 5)
self.logger.info(f'Total cost of {len(self.file_path_collection)} LFs: ${round(self.total_cost, 5)}')
def run(self):
## get training, validation, testing data with bert features ##
self.train_data, self.valid_data, self.test_data = self.get_data()
## get LF file paths ##
self.file_path_collection = self.get_LF_file_paths()
self.final_result["num_of_LF"] = len(self.file_path_collection)
## produce weak labels ##
self.train_data.weak_labels = self.get_weak_labels(self.train_data, type="train")
self.valid_data.weak_labels = self.get_weak_labels(self.valid_data, type="valid")
self.test_data.weak_labels = self.get_weak_labels(self.test_data, type="test")
## log result saved place ##
if not os.path.exists(self.args["exp_result_saved_path"]):
os.mkdir(self.args["exp_result_saved_path"])
if self.args["mode"] == "ScriptoriumWS":
log_file_name = os.path.join(self.args["exp_result_saved_path"], self.args["mode"] + "_" + self.args["codellm"] + ".txt")
else:
log_file_name = os.path.join(self.args["exp_result_saved_path"], self.args["mode"] + "_" + self.args["prior_type"] + "_" + self.args["codellm"] + ".txt")
## get logger ##
for handler in log.root.handlers[:]:
log.root.removeHandler(handler)
log.basicConfig(level=log.INFO, format='%(asctime)s : %(levelname)s : %(message)s', \
datefmt='%Y-%m-%d %H:%M:%S', handlers=[log.FileHandler(log_file_name, mode='w'), LoggingHandler()])
self.logger = log.getLogger(__name__)
self.logger.info(f'Running {self.dataset} Dataset')
self.logger.info(f'Running with {len(self.file_path_collection)} labeling funcions')
## get LF summary ##
self.get_LF_summary()
## run label model and end model ##
self.label_time()
## get total cost of LFs ##
self.get_total_cost()
## show final results ##
# pp = pprint.PrettyPrinter(depth=4)
# pp.pprint(self.final_result)
if self.args["mode"] == "ScriptoriumWS":
self.final_result["Heuristic Mode"] = None
else:
self.final_result["Heuristic Mode"] = self.args["prior_type"]
with open('temp_for_copy_comb.csv', 'a') as f:
w = csv.DictWriter(f, self.final_result.keys())
# w.writeheader()
w.writerow(self.final_result)
return self.final_result