diff --git a/code_regression2 b/code_regression2 index 5aeb4f6..41be07e 100644 --- a/code_regression2 +++ b/code_regression2 @@ -47,10 +47,10 @@ def prediction(input,output): y_hat += weights[word[token]] * line_vocabulary[token] if y_hat > 0.5: output_f.write("1\n") - print(y_hat) + #print(y_hat) else: output_f.write("0\n") - print(y_hat) + #print(y_hat) output_f.close()