mean from train

This commit is contained in:
kubapok 2021-06-07 21:57:17 +02:00
parent 561b8d5ec1
commit 66337ac395
3 changed files with 72895 additions and 0 deletions

36274
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')

36602
test-A/out.tsv Normal file

File diff suppressed because it is too large Load Diff