mean from train
This commit is contained in:
parent
d2b8e19b23
commit
0b0e9c05f6
149134
dev-0/out.tsv
Normal file
149134
dev-0/out.tsv
Normal file
File diff suppressed because it is too large
Load Diff
19
mean_from_train/mean_from_train.py
Normal file
19
mean_from_train/mean_from_train.py
Normal file
@ -0,0 +1,19 @@
|
||||
import numpy as np
|
||||
|
||||
train_exp_f = open('../train/expected.tsv')
|
||||
train_mean = np.mean([float(a.rstrip()) for a in train_exp_f])
|
||||
train_mean_line = str(train_mean) + '\n'
|
||||
|
||||
|
||||
def pred(in_f_path, out_f_path):
|
||||
f_in = open(in_f_path, 'r')
|
||||
f_out = open(out_f_path, 'w')
|
||||
|
||||
for l in f_in:
|
||||
f_out.write(train_mean_line)
|
||||
|
||||
f_in.close()
|
||||
f_out.close()
|
||||
|
||||
pred('../dev-0/in.tsv', '../dev-0/out.tsv')
|
||||
pred('../test-A/in.tsv', '../test-A/out.tsv')
|
148308
test-A/out.tsv
Normal file
148308
test-A/out.tsv
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user