Skip to content
Snippets Groups Projects
Commit f9036439 authored by Franck Dary's avatar Franck Dary
Browse files

Corrected a bug in print_results.py where lines where not grouped by lang

parent 395b0474
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ if __name__ == "__main__" :
score = score.replace('-','').replace('%','')
output.append(outputByModelScore[corpus][model][metric][0])
output[-1][2] = score
output[-1] = [baseScore] + output[-1]
output[-1] = [output[-1][0]] + [baseScore] + output[-1][1:]
if len(output) == 0 :
print("ERROR : Output length is 0", file=sys.stderr)
......@@ -68,7 +68,7 @@ if __name__ == "__main__" :
exit(1)
output.sort()
output = [val[1:] for val in output]
output = [[val[0]] + val[2:] for val in output]
maxColLens = [0 for _ in range(len(output[0]))]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment