removing encoding in another spot

This commit is contained in:
William Darling 2016-05-04 13:37:45 +02:00
Родитель 67ffdc3e26
Коммит 2274d0bf92
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -165,7 +165,7 @@ def calc_accuracy(test_file, output_filename_base):
# load predicted answers
predicted=[]
with open(output_filename_base + ".z", 'r', encoding='utf8') as f_in:
with open(output_filename_base + ".z", 'r') as f_in:
for l in f_in:
predicted.append(np.argmax(l.strip().split(' ')))