Skip to content

Commit

Permalink
typo bug in qnn test
Browse files Browse the repository at this point in the history
  • Loading branch information
siju-samuel committed Apr 13, 2020
1 parent 86c756e commit 10bee0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/python/frontend/pytorch/qnn_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ def get_imagenet_input():
max_abs_diff = np.max(np.abs(tvm_result - pt_result))
mean_abs_diff = np.mean(np.abs(tvm_result - pt_result))
num_identical = np.sum(tvm_result == pt_result)
pt_top3_labels = np.argsort(pt_result)[::-1][:3]
pt_top3_labels = np.argsort(tvm_result)[::-1][:3]
tvm_top3_labels = np.argsort(pt_result)[::-1][:3]

print("\nModel name: %s" % model_name)
Expand Down

0 comments on commit 10bee0b

Please sign in to comment.