You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ***ResNet50 v1.5*** model is a modified version of the [original ResNet50 v1 model](https://arxiv.org/abs/1512.03385).
22
+
The **_ResNet50 v1.5_** model is a modified version of the [original ResNet50 v1 model](https://arxiv.org/abs/1512.03385).
24
23
25
24
The difference between v1 and v1.5 is that, in the bottleneck blocks which requires
26
25
downsampling, v1 has stride = 2 in the first 1x1 convolution, whereas v1.5 has stride = 2 in the 3x3 convolution.
@@ -33,12 +32,12 @@ This model is trained with mixed precision using Tensor Cores on Volta, Turing,
33
32
34
33
Note that the ResNet50 v1.5 model can be deployed for inference on the [NVIDIA Triton Inference Server](https://github.com/triton-inference-server/server) using TorchScript, ONNX Runtime or TensorRT as an execution backend. For details check [NGC](https://ngc.nvidia.com/catalog/resources/nvidia:resnet_for_triton_from_pytorch)
35
34
36
-
37
35
### Example
38
36
39
-
In the example below we will use the pretrained ***ResNet50 v1.5*** model to perform inference on ***image*** and present the result.
37
+
In the example below we will use the pretrained **_ResNet50 v1.5_** model to perform inference on **_image_** and present the result.
40
38
41
39
To run the example you need some extra python packages installed. These are needed for preprocessing images and visualization.
40
+
42
41
```python
43
42
!pip install validators matplotlib
44
43
```
@@ -60,6 +59,7 @@ print(f'Using {device} for inference')
0 commit comments