-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquery_conllu_ss30syn.rb
197 lines (161 loc) · 7.81 KB
/
query_conllu_ss30syn.rb
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
#year_of_interest = 2009
years_of_interest = [2008, 2009, 2010]
#require_relative "queries\\#{variable}.rb"
require_relative "queries\\query_tools.rb"
#subforums = ["adoption"]
subforums = ["adoption","allmanna-ekonomi","allmanna-familjeliv","allmanna-fritid","allmanna-husdjur","allmanna-hushem","allmanna-kropp","allmanna-noje","allmanna-samhalle","allmanna-sandladan","anglarum","foralder","gravid","kansliga","medlem-allmanna","medlem-foraldrar","medlem-planerarbarn","medlem-vantarbarn","pappagrupp","planerarbarn","sexsamlevnad","svartattfabarn","expert"]
#PATH = "C:\\Sasha\\D\\DGU\\CassandraMy\\SMCorpora\\familjeliv-age\\"
PATH = "D:\\D\\DGU\\CassandraMy\\SMCorpora\\familjeliv-age\\"
token_threshold = 10000
firstage = 18
total_threshold = 0
agebinhash_v1 = Hash.new(0.0)
agebinhash_v2 = Hash.new(0.0)
agebinhash_v3 = Hash.new(0.0)
authorhash = Hash.new{|hash,key| hash[key] = Hash.new(0.0)}
authorhash_gen = {}
tokencounter = 0
#verblist = ["komma","anse"]
#verblist = ["komma", "anse", "avse", "behaga", "behöva", "besluta", "bruka", "börja", "fortsätta", "förefalla", "förmå", "försöka", "glömma", "hinna", "hota", "idas", "lova", "lyckas", "låtsas", "orka", "planera", "riskera", "råka", "slippa", "sluta", "tendera", "våga", "vägra", "ämna", "önska"]
verblist = ["försöka", "fortsätta", "glömma", "komma", "slippa", "sluta", "vägra", "behaga", "lova", "planera", "riskera"]
oo = File.open("results\\ss30_#{years_of_interest.join(",")}\\summary_t#{total_threshold}.tsv","w:utf-8")
oo.puts "verb\tnprolific_speakers\ttotal_prolific\tmicroave_v2rel_prolific\tnspeakers\ttotal\tmicroave_v2rel"
verblist.each do |verb_of_interest|
STDERR.puts verb_of_interest
#require_relative "queries\\#{variable}.rb"
#subforums = ["kansliga"]
agebinhash_v1 = Hash.new(0.0)
agebinhash_v2 = Hash.new(0.0)
agebinhash_v3 = Hash.new(0.0)
yearhash = Hash.new(0.0)
yearhash_v2 = Hash.new(0.0)
authorhash = Hash.new{|hash,key| hash[key] = Hash.new(0.0)}
#authorhash_gen = {}
tokencounter = 0
subforums.each do |subforum|
STDERR.puts subforum
f = File.open("#{PATH}familjeliv-#{subforum}_sentence_age#{token_threshold}_#{firstage}.conllu","r:utf-8")
current_age = ""
current_agebin = ""
current_username = ""
current_year = ""
yob = ""
prevprev_tokenc = ""
prev_tokenc = ""
prev_pos = ""
prevprev_pos = ""
prevprev_deprel = ""
prev_deprel = ""
prev_lemma = []
prevprev_lemma = []
prevprevprev_lemma = []
prev_msd = ""
prevprev_msd = ""
prevprevprev_msd = ""
f.each_line do |line|
line1 = line.strip
if line1 == "" #not necessary to reset all variables, but may be worth it for safety's sake
current_age = ""
current_agebin = ""
current_username = ""
current_year = ""
yob = ""
prevprev_tokenc = ""
prev_tokenc = ""
prev_pos = ""
prevprev_pos = ""
prevprev_deprel = ""
prev_deprel = ""
elsif line1[0] == "#"
if line1.include?("# agebin")
current_agebin = line1.split(" = ")[1]
elsif line1.include?("# age")
current_age = line1.split(" = ")[1]
elsif line1.include?("# yob")
yob = line1.split(" = ")[1].to_i
elsif line1.include?("# username")
current_username = line1.split(" = ")[1]
elsif line1.include?("# post_date")
current_year = line1.split(" = ")[1].split("-")[0].to_i
#authorhash[current_username] = true
end
else
if yob != 1970 and years_of_interest.include?(current_year)
tokencounter += 1
line2 = line1.split("\t")
id = line2[0]
token = line2[1]
tokenc = token.downcase
lemma = line2[2][1..-2].split("|")
pos = line2[3]
msd = line2[5]
dephead = line2[6]
deprel = line2[7]
condition = apply_criteria_ss30(tokenc, lemma, prev_lemma, prevprev_lemma, prevprevprev_lemma, pos, msd, prev_msd, prevprev_msd, prevprevprev_msd, dephead, deprel, prev_tokenc, prevprev_tokenc, prev_pos, prevprev_pos, prev_deprel, prevprev_deprel, verb_of_interest)
if condition == 1
#yearhash[current_year] += 1
#agebinhash_v1[current_agebin] += 1
authorhash[[current_username,yob]]["v1"] += 1
authorhash[[current_username,yob]]["total"] += 1
elsif condition == 2
#yearhash_v2[current_year] += 1
#yearhash[current_year] += 1
#agebinhash_v2[current_agebin] += 1
authorhash[[current_username,yob]]["v2"] += 1
authorhash[[current_username,yob]]["total"] += 1
end
prevprev_tokenc = prev_tokenc.clone
prev_tokenc = tokenc.clone
prevprev_pos = prev_pos.clone
prev_pos = pos.clone
prevprev_deprel = prev_deprel.clone
prev_deprel = deprel.clone
prevprevprev_lemma = prevprev_lemma.clone
prevprev_lemma = prev_lemma.clone
prev_lemma = lemma.clone
prevprevprev_msd = prevprev_msd.clone
prevprev_msd = prev_msd.clone
prev_msd = msd.clone
end
end
end
end
o = File.open("results\\ss30_#{years_of_interest.join(",")}\\familjeliv_#{verb_of_interest}_t#{total_threshold}_#{years_of_interest.join(",")}.tsv","w:utf-8")
o.puts "period\tusername\tyob\tagebin\ttotal\tv1abs\tv2abs\tv1rel\tv2rel"
nprolific = 0.0
sum_v2rel = 0.0
totaltotal = 0.0
totaltotal_all = 0.0
v2abstotal = 0.0
v2abstotal_all = 0.0
nspeakers = authorhash.keys.length
authorhash.each_pair do |key,value|
#year = key[3]
username = key[0]
yob = key[1]
#bin = key[2]
total = value["total"]
v2abs = value["v2"]
if total >= total_threshold
nprolific += 1
v1abs = value["v1"]
#v3abs = value["v3"]
v1rel = v1abs/total
v2rel = v2abs/total
#sum_v2rel += v2rel
#v3rel = v3abs/total
#o.puts "#{year}\t#{username}\t#{age}\t#{bin}\t#{total}\t#{v1abs}\t#{v2abs}\t#{v3abs}\t#{v1rel}\t#{v2rel}\t#{v3rel}"
#o.puts "#{year}\t#{username}\t#{age}\t#{bin}\t#{total}\t#{v1abs}\t#{v2abs}\t#{v1rel}\t#{v2rel}"
o.puts "\t#{username}\t#{yob}\t\t#{total}\t#{v1abs}\t#{v2abs}\t#{v1rel}\t#{v2rel}"
totaltotal += total
v2abstotal += v2abs
end
totaltotal_all += total
v2abstotal_all += v2abs
end
o.close
oo.puts "#{verb_of_interest}\t#{nprolific}\t#{totaltotal}\t#{v2abstotal/totaltotal}\t#{nspeakers}\t#{totaltotal_all}\t#{v2abstotal_all/totaltotal_all}"
#if nprolific >= 10 and sum_v2rel/nprolific >= 0.01 and sum_v2rel/nprolific <= 0.90
# File.rename("results\\ss30_#{year_of_interest}\\familjeliv_#{variable}_t#{total_threshold}_#{year_of_interest}.tsv", "results\\ss30_#{year_of_interest}\\familjeliv_#{variable}_t#{total_threshold}_#{year_of_interest}_a.tsv")
#end
end