mean from train

This commit is contained in:
Jakub Pokrywka 2021-09-17 09:36:20 +02:00
parent d2b8e19b23
commit 0b0e9c05f6
3 changed files with 297461 additions and 0 deletions

149134
dev-0/out.tsv Normal file

File diff suppressed because it is too large Load Diff

View 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

File diff suppressed because it is too large Load Diff