Skip to content

Commit 7158279

Browse files
committed
copy edit, add CV and inferencing sections
1 parent 3a68b0d commit 7158279

File tree

1 file changed

+11
-1
lines changed
  • docs/guides/applications/big-data/ai-inferencing-with-tensorrt-and-pytorch

1 file changed

+11
-1
lines changed

docs/guides/applications/big-data/ai-inferencing-with-tensorrt-and-pytorch/index.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,16 @@ The primary AI model used in this guide is a ResNet50 computer vision (CV) model
2727
In some cases, a $100 deposit may be required to deploy GPU Linodes. This may include new accounts that have been active for less than 90 days and accounts that have spent less than $100 on services. If you are unable to deploy GPU Linodes, contact [Support](https://www.linode.com/support/) for assistance.
2828
{{< /note >}}
2929

30+
## AI Inferencing
31+
32+
### What is AI Inference?
33+
34+
35+
36+
### What is Computer Vision (CV)?
37+
38+
Computer vision is a type of artificial intelligence that interprets images and outputs physical information about what is detected in the image. This guide uses a CV model (ResNet50) that uses a specific pre-trained set of images and runs an example image against that set. In this example, inferencing occurs when the CV model returns information about the example image (i.e. "this is a picture of a dog") based on its pre-trained knowledge base of millions of sample images.
39+
3040
## What are TensorRT and PyTorch?
3141

3242
### TensorRt
@@ -217,7 +227,7 @@ Create and run a Python script using a pre-trained ResNet50 computer vision mode
217227

218228
- Imports the PyTorch framework and its pre-trained models
219229

220-
- Pulls an example sample image of a dog from PyTorch's GitHub repository
230+
- Pulls an example sample image of a dog from PyTorch's GitHub repository on which to run AI inference
221231
222232
- Preprocessing for the sample image: Image resizing for compatibility with the ResNet50 model, format conversion for PyTorch, add a "batch dimension" to emulate multiple images, moves the processed data to the GPU
223233

0 commit comments

Comments
 (0)