Commit df98d883 authored by Taddeus Kroes's avatar Taddeus Kroes

Added newline to string.

parent 3312cd28
...@@ -119,7 +119,7 @@ s += '\nBest result: %.3f%% for C = %f and gamma = %f' % best[:3] ...@@ -119,7 +119,7 @@ s += '\nBest result: %.3f%% for C = %f and gamma = %f' % best[:3]
print 'Saving results...' print 'Saving results...'
f = open(results_file, 'w+') f = open(results_file, 'w+')
f.write(s) f.write(s + '\n')
f.close() f.close()
print 'Saving best classifier...' print 'Saving best classifier...'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment