Update pytorch.md (#12865)

Fix code snippet type to get correct code syntax highlighting
This commit is contained in:
Nat Kershaw (MSFT) 2022-10-12 20:10:01 -05:00 committed by GitHub
parent 0979270ca2
commit a614c31457
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,7 +28,7 @@ At the heart of PyTorch is the `nn.Module`, a class that represents an entire de
To code an image processing model using PyTorch itself:
```bash
```python
import torch
import torch.nn as nn
import torchvision.transforms as T