-
Notifications
You must be signed in to change notification settings - Fork 0
/
src_Main_local_ge_fi.py
892 lines (695 loc) · 33.6 KB
/
src_Main_local_ge_fi.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
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
#!/usr/bin/env python
# coding: utf-8
#****Log***
#* 1st milestone for samples of NewEyes dataset: German, Finnish
from googletrans import Translator
from nltk.corpus import sentiwordnet as swn
import codecs, re
import os, string, json
import spacy
from stop_words import get_stop_words
import xml.dom.minidom
import sklearn.metrics as metrics
import unicodedata
import csv
#************* Global variables
# --server
data_folder = "/data/tnguye01/STANCE_DETECTION/"
# dataset = "NLF_data_dev"
# lang = 'fi' # 'de';#'fr'
dataset = "German_data_dev"#"NLF_data_test"
lang = 'de'#'fi' # 'de';#'fr'
# senti_file_path = "senti_dict.json" # polarity score
senti_file_path = "senti_dict_no_trans.json" # positive (1.0) or negative (1.0)
pre_input_folder = data_folder+dataset+"/"
input_folder = data_folder+dataset+"_input/"
output_folder = data_folder+dataset+"_output/"
if not os.path.exists(input_folder):
os.mkdir(input_folder)
if not os.path.exists(output_folder):
os.mkdir(output_folder)
# --local
# data_folder = "../"
# dataset = "NLF_data"#"German_data_test"
# lang = 'fi'#'de' # 'de';#'fr'
# pre_input_folder = data_folder + dataset + "/"
# input_folder = data_folder + dataset + "_input/"
# output_folder = data_folder + dataset + "_output/"
# if not os.path.exists(input_folder):
# os.mkdir(input_folder)
# if not os.path.exists(output_folder):
# os.mkdir(output_folder)
results_folder = data_folder + dataset + "/results/"
if not os.path.exists(results_folder):
os.mkdir(results_folder)
translator = Translator()
# pol_threshold = 0.05
num_context_word = 15#13#11#9#7#5#3
senti_folder = "../senti_lexicon/"
senti_trans_folder = "../senti_lexicon_trans/"
# nlp = spacy.load(lang+'_core_news_md')
stop_words = set(get_stop_words(lang))
xml_bilexicon_path = "../XML_translation/"
puncts = "—"
#************* List of functions
def convert_file_dicts(file_name):
dict_toks = {}
dict_NEs = {}
dict_global_local_index = {}
dict_lines_words = {}
if file_name not in dict_toks:
dict_toks[file_name] = []
dict_NEs[file_name] = []
dict_lines_words[file_name] = []
dict_global_local_index[file_name] = {}
file_path = input_folder + file_name
text = codecs.open(file_path, 'rb', encoding="utf-8").read().split("\n")
tok_index = 0
tmp_NE = ""; tmp_NE_index = -1; tmp_NE_offset = 1
count_line = 0
for line in text:
list_line_tokens = []
if line.strip() == '':
# print("######");
count_line += 1;
dict_lines_words[file_name].append(list_line_tokens)
# if tmp_NE != "":
# tmp_NE_upper = tmp_NE.strip().upper()
# dict_NEs[file_name].append((str(tmp_NE_index) + ":" + str(tmp_NE_offset), tmp_NE_upper))
continue
lastTokenPos = 0
local_tok_index = 0
for spacePos in re.finditer(r"$|\ ", line):
tokenEndPos = spacePos.start()
tokenNE = line[lastTokenPos:tokenEndPos]
list_line_tokens.append(tokenNE)
# print(tokenNE)
token = tokenNE.split("__")[0]
tag_NE = tokenNE.split("__")[1]
if len(tag_NE) > 0:
if tag_NE[0] == 'B':
if tmp_NE != "":
tmp_NE_upper = tmp_NE.strip().upper()
dict_NEs[file_name].append((str(tmp_NE_index) + ":" + str(tmp_NE_offset), tmp_NE_upper))
# else:
tmp_NE = token + " "; tmp_NE_offset = 1; tmp_NE_index = tok_index
elif tag_NE[0] == 'O':
if tmp_NE != "":
tmp_NE_upper = tmp_NE.strip().upper();
dict_NEs[file_name].append((str(tmp_NE_index) + ":" + str(tmp_NE_offset), tmp_NE_upper))
tmp_NE = ""; tmp_NE_offset = 1; tmp_NE_index = -1
elif tag_NE[0] == 'I' and tmp_NE != '':
tmp_NE += token + " "; tmp_NE_offset += 1
lastTokenPos = tokenEndPos + 1
dict_toks[file_name].append((tok_index, token))
dict_global_local_index[file_name][tok_index] = (count_line, local_tok_index)
local_tok_index += 1; tok_index += 1
# if tmp_NE != "":
# tmp_NE_upper = tmp_NE.strip().upper()
# dict_NEs[file_name].append((str(tmp_NE_index) + ":" + str(tmp_NE_offset), tmp_NE_upper))
count_line += 1
dict_lines_words[file_name].append(list_line_tokens)
if tmp_NE != "":
tmp_NE_upper = tmp_NE.strip().upper()
dict_NEs[file_name].append((str(tmp_NE_index) + ":" + str(tmp_NE_offset), tmp_NE_upper))
return dict_toks, dict_NEs, dict_global_local_index, dict_lines_words
def translate_sentence(translator, src_txt, src_lang='fr', tgt_lang='en'):
translation = translator.translate(src_txt, dest=tgt_lang, src=src_lang)
print(translation.origin, ' -> ', translation.text)
return translation.text
def get_sentiment(word, senti_dict, src_lang='fr'):
pos_score, neg_score = 0, 0
key_len = str(len(word))
if src_lang in senti_dict and key_len in senti_dict[src_lang] and word in senti_dict[src_lang][key_len]:
pos_score, neg_score = senti_dict[src_lang][key_len][word]
# print(word, pos_score, neg_score)
return pos_score, neg_score
# word = 'crazy'
# list_senti = list(swn.senti_synsets(word))
# sum_pos = 0; sum_neg = 0
#
# for senti in list_senti:
# sum_pos += senti.pos_score(); sum_neg += senti.neg_score()
#
#
# avg_pos = sum_pos * 1.0 / len(list_senti) if len(list_senti) > 0 else 0
# avg_neg = sum_neg * 1.0 / len(list_senti) if len(list_senti) > 0 else 0
#
# print(''.join([word,' (', str(round(avg_pos,3)),', ', str(round(avg_neg,3)),')']))
#
# return avg_pos, avg_neg
def get_senti_sent(list_sent, lang):
'''
1: POS
0: NEU
-1: NEG
'''
src_txt = ' '.join([tok[1].lower().strip(string.punctuation).strip(puncts) for sent in list_sent for tok in sent])
# print('len_src_txt ', len([tok[1] for sent in list_sent for tok in sent]))
# sent_trans = translate_sentence(translator, src_txt)
# print("sent ", src_txt)
# print('sent_trans ', sent_trans)
list_sentiments = []
# doc = nlp(u"voudrais non animaux yeux dors couvre.")
# for token in doc:
# print(token, token.lemma_)
# list_tok_lemma = [tok.lemma_ for tok in nlp(src_txt)]
if lang == 'en':
for tok in src_txt.split():
list_sentiments.append(get_sentiment_wordnet(tok))
else:
for tok in src_txt.split():
list_sentiments.append(get_sentiment(tok, senti_dict, lang))
assert len(list_sentiments) > 0, '%d' % (len(list_sentiments))
number_bearing_words = len([i for i, j in list_sentiments if (i > 0 or j > 0)])
if number_bearing_words > 0:
avg_pos = round(1.0 * sum([i for i, _ in list_sentiments]) / number_bearing_words, 1)
avg_neg = round(1.0 * sum([j for _, j in list_sentiments]) / number_bearing_words, 1)
else:
avg_pos = avg_neg = 0.0
print(avg_pos, avg_neg, abs(avg_pos - avg_neg))
if avg_pos > avg_neg: return 1
if avg_pos < avg_neg: return -1
else: return 0
# if abs(avg_pos - avg_neg)>pol_threshold: return 1
# if abs(avg_pos - avg_neg)<pol_threshold: return -1
# return 0
# if avg_pos > 0.25 and avg_neg > 0.25:
# if avg_pos > avg_neg: return 1
# if avg_pos < avg_neg: return -1
# else: return 0
# elif avg_pos > 0.25: return 1
# elif avg_neg > 0.25: return -1
# else: return 0
# return max(avg_pos, avg_neg, 1-(avg_pos+avg_neg))
def create_NEs_senti(file_name, dict_NEs, dict_toks, dict_NEs_senti,num_context_word, lang):
if file_name not in dict_NEs_senti:
dict_NEs_senti[file_name] = []
for ne_item in dict_NEs[file_name]:
ne_pos = int(ne_item[0].split(":")[0])
ne_offset = int(ne_item[0].split(":")[1])
ne_val = ne_item[1]
# if ne_pos == 11960:
# print()
count_tok = 0; list_context_word = []
if dict_toks[file_name][: ne_pos] != None and len(dict_toks[file_name][: ne_pos]) > 0:
for tok in dict_toks[file_name][: ne_pos][::-1]:
tok_clean = tok[1].lower().strip(string.punctuation).strip(puncts)
if len(tok_clean) > 0 and tok_clean not in stop_words:
list_context_word.append(tok); count_tok += 1
if count_tok >= num_context_word:
break
count_tok = 0
if dict_toks[file_name][ne_pos + ne_offset:] != None:
for tok in dict_toks[file_name][ne_pos + ne_offset:]:
tok_clean = tok[1].lower().strip(string.punctuation).strip(puncts)
if len(tok_clean) > 0 and tok_clean not in stop_words:
list_context_word.append(tok); count_tok += 1
if count_tok >= num_context_word:
break
# list_context_word = dict_toks[file_name][ne_pos - num_context_word: ne_pos]\
# + dict_toks[file_name][ne_pos + ne_offset: ne_pos + ne_offset + num_context_word]
if list_context_word != None and len(list_context_word) > 0:
# print(ne_val, ne_pos, ne_offset)
ne_senti = get_senti_sent([list_context_word], lang)
dict_NEs_senti[file_name].append((ne_item[0], ne_senti))
return dict_NEs_senti
def create_file_senti(file_name, num_context_word, lang):
dict_toks, dict_NEs, dict_global_local_index, dict_lines_words = convert_file_dicts(file_name)
dict_NEs_senti = {}
dict_NEs_senti = create_NEs_senti(file_name, dict_NEs, dict_toks, dict_NEs_senti, num_context_word, lang)
for ne_senti in dict_NEs_senti[file_name]:
itok, ioffset = ne_senti[0].split(':')
itok, ioffset = int(itok), int(ioffset)
for count_offset in range(0, ioffset):
(iline, iword) = dict_global_local_index[file_name][itok + count_offset]
dict_lines_words[file_name][iline][iword] += "__" + str(ne_senti[1])
if ne_senti[1] == 0:
dict_lines_words[file_name][iline][iword] += '__NEU'
elif ne_senti[1] == 1:
dict_lines_words[file_name][iline][iword] += '__POS'
else:
dict_lines_words[file_name][iline][iword] += '__NEG'
list_lines = []
for line in dict_lines_words[file_name]:
list_lines.append(' '.join(line))
output_file_path = output_folder + file_name
print(output_file_path)
codecs.open(output_file_path, "wb", encoding='utf-8').write('\n'.join(list_lines))
def write_dict(dict_tmp, dict_file_path):
with codecs.open(dict_file_path, 'wb', encoding='utf-8') as myfile:
myfile.write(json.dumps(dict_tmp, indent=4, sort_keys=True))
def read_dict(dict_file_path):
with codecs.open(dict_file_path, encoding='ascii') as myfile:
dict_tmp = json.load(myfile)
return dict_tmp
def create_senti_dict(senti_dict, lang='fr'):
'''
GLOBAL: senti_folder, senti_file_path
'''
senti_flags = ['nega', 'posi']
for senti_flag in senti_flags:
pos_score, neg_score = 0, 0
if senti_flag == 'nega':
neg_score = 1.0
elif senti_flag == 'posi':
pos_score = 1.0
senti_neg_file_name = senti_folder + senti_flag + "tive_words_" + lang + '.txt'
text = codecs.open(senti_neg_file_name, 'rb', encoding='utf-8').read().strip().split("\n")
if lang not in senti_dict:
senti_dict[lang] = {}
# if senti_flag not in senti_dict:
# senti_dict[lang][senti_flag] = {}
for tok in text:
tok = tok.strip()
key_len = str(len(tok))
if key_len not in senti_dict[lang]:
senti_dict[lang][key_len] = {tok:(pos_score, neg_score)}
else:
if tok not in senti_dict[lang][key_len]:
senti_dict[lang][key_len][tok] = (pos_score, neg_score)
else:
(pos_score, neg_score) = senti_dict[lang][key_len][tok]
if senti_flag == 'nega':
neg_score += 1.0
elif senti_flag == 'nega':
pos_score += 1.0
senti_dict[lang][key_len][tok] = (pos_score, neg_score)
write_dict(senti_dict, senti_file_path)
def create_senti_dict_translation(senti_dict):
'''
GLOBAL: xml_bilexicon_path, senti_file_path
'''
for file_name in os.listdir(xml_bilexicon_path):
if '.ipynb_checkpoints' in file_name: continue
file_path = xml_bilexicon_path + file_name
lang_tmp = file_name[:2]
if lang_tmp not in senti_dict:
senti_dict[lang_tmp] = {}
# use the parse() function to load and parse an XML file
doc = xml.dom.minidom.parse(file_path)
# print out the document node and the name of the first child tag
print ('doc.nodeName ', doc.nodeName)
# get a list of XML tags from the document and print each one
entries = doc.getElementsByTagName("entry")
print ("%d entries:" % entries.length)
for entry in entries:
orths = entry.getElementsByTagName('orth')
for orth in orths: # only one orth
tok = orth.firstChild.nodeValue
print(tok)
pos_score, neg_score = 0, 0
quotes = entry.getElementsByTagName('quote')
for quote in quotes:
en_words = quote.firstChild.nodeValue.split()
print('**', en_words)
for en_word in en_words:
pos_score_tmp, neg_score_tmp = get_sentiment_wordnet(en_word)
pos_score += pos_score_tmp
neg_score += neg_score_tmp
pos_score = pos_score / len(quotes)
neg_score = neg_score / len(quotes)
if pos_score > 0 or neg_score > 0:
key_len = str(len(tok))
if key_len not in senti_dict[lang_tmp]:
senti_dict[lang_tmp][key_len] = {tok:(pos_score, neg_score)}
else:
if tok not in senti_dict[lang_tmp][key_len]:
senti_dict[lang_tmp][key_len][tok] = (pos_score, neg_score)
else:
(pos_score_tmp, neg_score_tmp) = senti_dict[lang_tmp][key_len][tok]
senti_dict[lang_tmp][key_len][tok] = (pos_score + pos_score_tmp, neg_score + neg_score_tmp)
write_dict(senti_dict, senti_file_path)
def create_senti_dict_googletrans(senti_dict):
'''
GLOBAL: xml_bilexicon_path, senti_file_path, senti_trans_folder
file is translated by google translate before compute NE sentiment
'''
for file_name in os.listdir(senti_folder):
if '.ipynb_checkpoints' in file_name: continue
file_path = senti_folder + file_name
lang_tmp = file_name.split('.txt')[0][-2:]
print(lang_tmp)
if lang_tmp not in senti_dict:
senti_dict[lang_tmp] = {}
text = codecs.open(file_path, 'rb', encoding='utf-8').read().split('\n')
text_trans = codecs.open(senti_trans_folder + file_name, 'rb', encoding='utf-8').read().split('\n')
toks = [tok.strip() for tok in text]
toks_trans = [tok_trans.strip() for tok_trans in text_trans]
for i in range(len(toks_trans)):
tok = toks[i]
en_words = toks_trans[i].split()
for en_word in en_words:
pos_score, neg_score = 0, 0
pos_score_tmp, neg_score_tmp = get_sentiment_wordnet(en_word)
pos_score += pos_score_tmp; neg_score += neg_score_tmp
if pos_score > 0 or neg_score > 0:
key_len = str(len(tok))
if key_len not in senti_dict[lang_tmp]:
senti_dict[lang_tmp][key_len] = {tok:(pos_score, neg_score)}
else:
if tok not in senti_dict[lang_tmp][key_len]:
senti_dict[lang_tmp][key_len][tok] = (pos_score, neg_score)
else:
(pos_score_tmp, neg_score_tmp) = senti_dict[lang_tmp][key_len][tok]
senti_dict[lang_tmp][key_len][tok] = (pos_score + pos_score_tmp, neg_score + neg_score_tmp)
write_dict(senti_dict, senti_file_path)
def get_sentiment_wordnet(word):
# word = 'crazy'
list_senti = list(swn.senti_synsets(word))
sum_pos = 0; sum_neg = 0
for senti in list_senti:
sum_pos += senti.pos_score(); sum_neg += senti.neg_score()
avg_pos = sum_pos * 1.0 / len(list_senti) if len(list_senti) > 0 else 0
avg_neg = sum_neg * 1.0 / len(list_senti) if len(list_senti) > 0 else 0
print(''.join([word, ' (', str(round(avg_pos, 3)), ', ', str(round(avg_neg, 3)), ')']))
return avg_pos, avg_neg
# import sklearn.metrics
def create_input():
'''
convert from pre_input into input (correct format suggested by Ahmed)
global variables: pre_input_folder, input_folder
'''
for file_name in os.listdir(pre_input_folder):
print(file_name)
if '.ipynb_checkpoints' in file_name: continue
file_path = pre_input_folder + file_name
input_file_path = input_folder + file_name
texts = codecs.open(file_path, 'r', encoding='utf-8').read().split('\n')
output_texts = codecs.open(input_file_path, 'wb', encoding='utf-8')
for line in texts:
if line.strip() == '': continue
line = re.sub("\s+", "__", line)
output_texts.write(line + "\n")
output_texts.close()
def eval_stance_result():
'''
evaluate results of stance detection
global variable: output_folder, data_folder
'''
y_true = [] # 1 pos, -1 neg, 0 neu, 2 unk (noisy data)
y_pred = []
count_all_noisy, count_null, count_itag, count_null_itag = 0, 0, 0, 0
count_file = 1
set_null = set()
set_itag = set()
# eval_result_file = codecs.open('eval_result.text', 'wb')
for file_name in os.listdir(output_folder):
print(file_name)
if '.ipynb_checkpoints' in file_name or '.json' in file_name:
count_file += 1; continue
file_path = output_folder + file_name
texts = codecs.open(file_path, 'r', encoding='utf-8').read().split() # .split('\n')
count_line = 1
for line in texts:
if line.strip() == '': count_line += 1; continue
toks = line.split('__')
# print(toks)
# if toks[1][:2] in ('I-'):#,'O-'):
# set_itag.add(str(count_file)+":"+str(count_line))
if len(toks[1]) > 0 and toks[1][:2] in ('B-'): # ,'I-'):#,'O-'):
# print(count_line, toks[1])
if toks[3] in ('+', 'n', '-', 'null', '^n', 'g', 'p'):
y_true.append(int(toks[3].replace('+', '0').replace('-', '1').replace('null', '2').replace('^n', '2')\
.replace('n', '2').replace('g', '2').replace('p', '0')))
# elif toks[3] in ('null'):
# y_true.append(int(toks[3].replace('null','2')))
# set_null.add(str(count_file)+":"+str(count_line))
if toks[-1] in ('POS', 'NEG', 'NEU'):
y_pred.append(int(toks[-1].replace('POS', '0').replace('NEG', '1').replace('NEU', '2')))
# else:
# if toks[3] in ('null'):
# y_pred.append(3)
# if toks[1][:2] in ('I-'):#,'O-'):
# set_itag.add(str(count_file)+":"+str(count_line))
assert len(y_true) == len(y_pred), "len(y_true) == len(y_pred) %d, %d, %s, %s %s" % (len(y_true), len(y_pred), file_name, count_line, toks)
count_line += 1
assert len(y_true) == len(y_pred), "len(y_true) == len(y_pred) %d, %d" % (len(y_true), len(y_pred))
count_file += 1
# eval_result_dict = metrics.classification_report(y_true, y_pred, target_names=['pos','neg','neu'], output_dict=True)
eval_result_dict = metrics.classification_report(y_true, y_pred, output_dict=True)
# print(result)
# print('Noisy input', len([i for i in y_pred if i==3]))
len_intersection = len(set_null.intersection(set_itag))
len_null = len(set_null)
len_itag = len(set_itag)
count_all_noisy += len_null + len_itag - len_intersection; count_null += len_null - len_intersection;
count_itag += len_itag - len_intersection; count_null_itag += len_intersection
print('Input noisy: all (%d), only null (%d), only itag (%d), null&itag (%d)'
% (count_all_noisy, count_null, count_itag, count_null_itag))
eval_result_dict['all_noisy'] = count_all_noisy
eval_result_dict['only_null'] = count_null
eval_result_dict['only_itag'] = count_itag
eval_result_dict['only_null_itag'] = count_null_itag
print(results_folder)
write_dict(eval_result_dict, results_folder + "eval_result_dict_"+str(num_context_word)+".json")
def eval_stance_result_check():
'''
evaluate results of stance detection
global variable: output_folder
'''
y_true = [] # 1 pos, -1 neg, 0 neu, 2 unk (noisy data)
y_pred = []
count_all_noisy, count_null, count_itag, count_null_itag = 0, 0, 0, 0
count_file = 1
set_null = set()
set_itag = set()
# eval_result_file = codecs.open('eval_result.text', 'wb')
for file_name in os.listdir(output_folder):
print(file_name)
if '.ipynb_checkpoints' in file_name or '.json' in file_name:
count_file += 1; continue
file_path = output_folder + file_name
texts = codecs.open(file_path, 'r', encoding='utf-8').read().split() # .split('\n')
count_line = 1
for line in texts:
if line.strip() == '': count_line += 1; continue
toks = line.split('__')
print(toks)
# if toks[1][:2] in ('I-'):#,'O-'):
# set_itag.add(str(count_file)+":"+str(count_line))
if len(toks[1]) > 0 and toks[1][:2] in ('B-'): # ,'I-'):#,'O-'):
print(count_line, toks[1])
if toks[3] in ('+', 'n', '-', 'null', '^n', 'g', 'p'):
y_true.append(int(toks[3].replace('+', '0').replace('-', '1').replace('null', '2').replace('^n', '2')\
.replace('n', '2').replace('g', '2').replace('p', '0')))
# elif toks[3] in ('null'):
# y_true.append(int(toks[3].replace('null','2')))
# set_null.add(str(count_file)+":"+str(count_line))
# if toks[-1] in ('POS', 'NEG', 'NEU'):
y_pred.append(toks[-1])
# else:
# if toks[3] in ('null'):
# y_pred.append(3)
# if toks[1][:2] in ('I-'):#,'O-'):
# set_itag.add(str(count_file)+":"+str(count_line))
assert len(y_true) == len(y_pred), "len(y_true) == len(y_pred) %d, %d, %s, %s %s" % (len(y_true), len(y_pred), file_name, count_line, toks)
count_line += 1
assert len(y_true) == len(y_pred), "len(y_true) == len(y_pred) %d, %d" % (len(y_true), len(y_pred))
count_file += 1
print(y_true)
print(y_pred)
def unicode_to_ascii(s):
return ''.join(
c for c in unicodedata.normalize('NFD', s)
if unicodedata.category(c) != 'Mn'
)
# text = 'editing by Andrea Shalal and Adrian Croft)\n\xa9 Thomson Reuters'
# text = 'Bank pays out \xa32.5m'
# text = '\xb0C'
# print(text)
# # text = unicode_to_ascii('editing by Andrea Shalal and Adrian Croft)\n\xa9 Thomson Reuters')
# # print(text);
# text = json.dumps(text)
# print(text)
# exit()
def convert2json():
dict_file_path = "../json_data/polarity_data.js"
text = codecs.open(dict_file_path, 'rb', encoding='utf-8').read()
# text = text.replace("'",'"').replace('u"', '"').replace('\\"', "'")
text = text.replace("'content'", '"content"')
text = text.replace("'docnoId'", '"docnoId"')
text = text.replace("'entities'", '"entities"')
text = text.replace("'entityId'", '"entityId"')
text = text.replace("'name'", '"name"')
text = text.replace("'offsets'", '"offsets"')
text = text.replace("u'end'", '"end"')
text = text.replace("u'start'", '"start"')
text = text.replace("'polarity'", '"polarity"')
text = text.replace("'headline'", '"headline"')
text = text.replace("'url'", '"url"')
open(dict_file_path.replace(".js", "_.js"), 'w').write(text)
lines = open(dict_file_path.replace(".js", "_.js"), 'r').readlines()
wtext = open(dict_file_path.replace(".js", ".json"), 'w')
count = 1
for line in lines:
if '{"content"' in line[:len('[{"content"')]:
# line = line.replace(r'\\', r'\\');
line = line.replace("u'", '"').replace('u"', '"').replace("\\'", "'")
line = line[:-3] + '",'
# line=line[:15]+ json.dumps(line[15: -2])[1:-1] + line[-2:]
# print(line[15: -2])
# print(json.dumps(line[15: -2]))
line = line[:15] + line[15:-2].replace('"', '\\"') + line[-2:]
# line = unicode_to_ascii(line)
# line = json.dumps(line)#, ensure_ascii=False).encode('utf8')
elif '"name":' in line:
line = line.replace("u'", '"').replace('u"', '"')
line = line[:-3] + '",'
line.split(":")[1][1:-2]
elif '"url":' in line:
line = line.replace("u'", '"').replace('u"', '"')
if count == len(lines):
line = line[:-4] + '"}]'
else:
line = line[:-4] + '"},'
else:
line = line.rstrip().replace("u'", '"').replace("'", '"')
# print(lines[0])
wtext.write(line + "\n")
count += 1
def convert_to_right_format():
postprocess_data = "../english_polarity_data/"
dict_file_path = "../json_data/polarity_data.json"
dict_tmp = read_dict(dict_file_path)
for item in dict_tmp:
content = item['content']; print(content)
docnoid = item['docnoId']
dict_nepos_replace = {}
# content = content.replace('\n', ' ')
for ne in item['entities']:
if ne['polarity'] == 'contradiction': polarity = 'c'
elif ne['polarity'] > 0.5:
polarity = '+'
elif ne['polarity'] == 0.5:
polarity = 'n'
else:
polarity = '-'
for ne_pos in ne['offsets']:
ne_beg = ne_pos['start']; ne_end = ne_pos['end']
ne_txt = content[ne_beg:ne_end]
toks = ne_txt.split()
if len(toks) == 0: continue
print(ne_txt)
ch_index = ne_beg
new_tok = toks[0] + "__B-x__x__" + polarity
dict_nepos_replace[ch_index] = new_tok
ch_index += len(toks[0]) + 1
for tok in toks[1:]:
new_tok = tok + "__I-x__x__" + polarity
dict_nepos_replace[ch_index] = new_tok
ch_index += len(tok) + 1
char_index = 0; toks = content.split()
new_content = []
for tok_index in range(len(toks)):
tok = toks[tok_index]
if char_index in dict_nepos_replace:
new_content.append(dict_nepos_replace[char_index])
else:
new_content.append(tok + "__O")
char_index += len(tok) + 1
print(' '.join(new_content))
open(postprocess_data + docnoid + ".txt", 'w').write(' '.join(new_content))
def create_csv_BERT():
dict_file_path = "../json_data/polarity_data.json"
dict_tmp = read_dict(dict_file_path)
with open("../json_data/polarity_data_ex.csv", mode='w') as polar_data:
polar_writer = csv.writer(polar_data, delimiter=',', quotechar='"')
polar_writer.writerow(['Content', 'NamedEntity', 'Polarity'])
for item in dict_tmp[:200]:
content = item['content'] # .replace("\n", ' ')
for ne in item['entities']:
ne_name = ne['name']
if ne['polarity'] != 'contradiction':
if ne['polarity'] > 0.5:
polarity = 0
elif ne['polarity'] == 0.5:
polarity = 2
else:
polarity = 1
ne_beg = ne['offsets'][0]['start']
polar_writer.writerow([content[ne_beg:], ne_name, polarity])
def split_data_part(file_name, start_train, start_dev, start_test):
#***
#global var: data_folder, pre_input_folder
#***
lines = open(pre_input_folder + file_name, 'r', encoding='utf-8').read().split("\n")
list_parts = ['_train', '_dev', '_test']
list_positions = [start_train, start_dev, start_test, -1]
for i in range(3):
data_path = data_folder + dataset + list_parts[i] +"/"
if not os.path.exists(data_path):
os.mkdir(data_path)
data_path+=file_name.replace('.txt', list_parts[i]+'.txt')
data_text = '\n'.join(lines[list_positions[i]:list_positions[i+1]])
open(data_path, 'w', encoding='utf-8').write(data_text)
def open_csv_file(file_name, list_headers):
csv_data = open(file_name, mode='w')
csv_writer = csv.writer(csv_data, delimiter=',', quotechar='"')
csv_writer.writerow(list_headers)#['Content', 'NamedEntity', 'Polarity']
return csv_writer
def get_f1(results_folder):
csv_writer = open_csv_file(results_folder + 'f1_avg.csv', ['num_context', 'f1_avg'])
for num_context_word in range(3, 30, 2):
file_path = results_folder + "eval_result_dict_"+str(num_context_word)+".json"
dict_results = read_dict(file_path)
f1_avg = round(dict_results["macro avg"]["f1-score"]*100,2)
csv_writer.writerow([num_context_word, f1_avg])
if __name__ == '__main__':
# convert2json(); #\x -> \u00 only for pre-processing English PULS
#*** prepare data ***
# file_name = "nlf_data_orig.txt";start_train=0; start_dev=21981;start_test=27642
# split_data_part(file_name, start_train, start_dev, start_test); exit()
#--- prepare data ---
# create_input(); exit() # only for sample NewEyes dataset
#**** stance analysis ***
senti_dict = {}
if lang != 'en' and os.path.exists(senti_file_path):
senti_dict = read_dict(senti_file_path)
for num_context_word in range(3, 30, 2):
for file_name in os.listdir(input_folder):
if '.ipynb_checkpoints' in file_name or '.txt' not in file_name:
continue
create_file_senti(file_name,num_context_word, lang)
eval_stance_result()
get_f1(results_folder)
#---- stance analysis ---
#***test create_senti_dict from one of three ways
# print('test create_senti_dict')
# senti_dict = {}
# for lang in ['de', 'fi', 'fr','en']:
# create_senti_dict(senti_dict, lang)
# # create_senti_dict_translation(senti_dict); exit()
# # create_senti_dict_googletrans(senti_dict); exit()
# print('test create_senti_dict'); exit()
#---test create_senti_dict
# for file_name in os.listdir(input_folder):
# create_file_senti(file_name)
#
# word = "totalement"
# list_sent = [[(0, 'totalement'), (1, 'discipline')]]
# print(get_senti_sent(list_sent))
# print(get_sentiment(word, senti_dict, src_lang='fr'))
#***test create_senti_dict
# print('test create_senti_dict')
# for lang in ['de','fi','fr']:
# create_senti_dict(senti_dict, lang)
# print('test create_senti_dict')
#---test create_senti_dict
#***create_file_senti
# file_name = "l_oeuvre_12148.txt"
# create_file_senti(file_name)
#---create_file_senti
#***test translateSent
# src_txt = "J'ai un chat"
# tgt_txt = translate_sentence(translator, src_txt)
# print(tgt_txt)
#---test translateSent
#*** test get_sentiment
# word = 'crazy'
# print(get_sentiment(word))
#--- test get_sentiment
#*** test sentiment for the sentence
# list_sent = list_sents[0:2]
# get_senti_sent(list_sent)
#--- test sentiment for the sentence