Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Include missing import in TensorRT tutorial #12609

Merged
merged 1 commit into from
Sep 21, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/tutorials/tensorrt/inference_with_trt.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down