Skip to content
Snippets Groups Projects
Commit a92d1ce8 authored by Ota Mikušek's avatar Ota Mikušek
Browse files

Fixed typo.

parent 06e3b3d6
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,7 @@ print("Loaded: %d" % (loaded)) ...@@ -63,7 +63,7 @@ print("Loaded: %d" % (loaded))
print("All success: %d - %.2f %%" % (success, success/loaded * 100)) print("All success: %d - %.2f %%" % (success, success/loaded * 100))
print("All failed: %d - %.2f %%" % (failed, failed/loaded * 100)) print("All failed: %d - %.2f %%" % (failed, failed/loaded * 100))
for i in range(input_count): for i in range(input_count):
print("Method %s" % (model_name_tlb[i])) print("Method %s:" % (model_name_tlb[i]))
print("\tsuccess: %d - %.2f %%" % (statistics[i]["success"], statistics[i]["success"]/loaded * 100)) print("\tsuccess: %d - %.2f %%" % (statistics[i]["success"], statistics[i]["success"]/loaded * 100))
print("\tfailed: %d - %.2f %%" % (statistics[i]["failed"], statistics[i]["failed"]/loaded * 100)) print("\tfailed: %d - %.2f %%" % (statistics[i]["failed"], statistics[i]["failed"]/loaded * 100))
print("\terrors: ") print("\terrors: ")
......
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