From fa4c673309767d4190aaa283c9d8d05330b5f90a Mon Sep 17 00:00:00 2001 From: Bartusiak Date: Wed, 8 Apr 2020 15:15:48 +0200 Subject: [PATCH] Regression --- code_regression.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code_regression.py b/code_regression.py index aabcd09..2825cf6 100644 --- a/code_regression.py +++ b/code_regression.py @@ -90,8 +90,8 @@ def main(): vocabulary = define_vocabulary('train/in.tsv') readed_words = read_input('dev-0/in.tsv') readed_words_test_a = read_input('test-A/in.tsv/in.tsv') - training(vocabulary, readed_words, 'test.tsv') - training(vocabulary, readed_words_test_a, 'test_a.tsv') + training(vocabulary, readed_words, 'dev-0/out.tsv') + training(vocabulary, readed_words_test_a, 'test-A/out.tsv') # def cost_function(y_hat,y):