Skip to content

Commit

Permalink
fixed run_time type
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinXPN committed Feb 3, 2021
1 parent 67aa6c7 commit c4c7575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion predict.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def predict(model_path: Union[str, IO],

res = model.validation_step(graph, batch_idx=0)[0]
end = time.time()
res['run_time'] = end - start,
res['run_time'] = end - start
pprint(res, sort_dicts=False)


Expand Down

0 comments on commit c4c7575

Please sign in to comment.