Skip to content

Commit

Permalink
Fix bug in run_pretrained_models for large models (#1327)
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Wildenhain <tomwi@microsoft.com>
  • Loading branch information
TomWildenhain-Microsoft authored Feb 11, 2021
1 parent c551408 commit fea121d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/run_pretrained_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,7 @@ def run_tflite():
tf_results = list(tf_results_d.values())
else:
tf_results = [tf_results_d[output] for output in self.structured_outputs]
tf_results = [tf_res.numpy() for tf_res in tf_results]
if self.perf:
logger.info("Running TF perf")
start = time.time()
Expand Down

0 comments on commit fea121d

Please sign in to comment.