marcoabreu closed pull request #12609: Include missing import in TensorRT tutorial URL: https://github.com/apache/incubator-mxnet/pull/12609
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/docs/tutorials/tensorrt/inference_with_trt.md b/docs/tutorials/tensorrt/inference_with_trt.md index c0098275a5e..489a92ec101 100644 --- a/docs/tutorials/tensorrt/inference_with_trt.md +++ b/docs/tutorials/tensorrt/inference_with_trt.md @@ -29,6 +29,7 @@ TensorRT is an inference only library, so for the purposes of this blog post we import mxnet as mx from mxnet.gluon.model_zoo import vision import time +import os batch_shape = (1, 3, 224, 224) resnet18 = vision.resnet18_v2(pretrained=True) ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
