Commit a92d1ce8 authored by Ota Mikušek's avatar Ota Mikušek
Browse files

Fixed typo.

parent 06e3b3d6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ print("Loaded: %d" % (loaded))
print("All success: %d - %.2f %%" % (success, success/loaded * 100))
print("All failed: %d - %.2f %%" % (failed, failed/loaded * 100))
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("\tfailed: %d - %.2f %%" % (statistics[i]["failed"], statistics[i]["failed"]/loaded * 100))
    print("\terrors: ")