Skip to content

Commit 54ca872

Browse files
author
Baichuan Sun
committed
fix: typos
1 parent 559b8b7 commit 54ca872

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ array([[26, 26, 26, ..., 4, 4, 4],
172172

173173
### PyTorch Model from FastAI Source Code
174174

175-
Next, we need to define the model in pure pytorch. In [Jupyter](https://jupyter.org/) notebook, one can investigate the FastAI source code by adding `??` in front of a function name. Here we look into `unet_learner` and `DynamicUnet`, by:
175+
Next, we need to define the model in pure PyTorch. In [Jupyter](https://jupyter.org/) notebook, one can investigate the FastAI source code by adding `??` in front of a function name. Here we look into `unet_learner` and `DynamicUnet`, by:
176176

177177
```python
178178
>> ??unet_learner
@@ -442,7 +442,7 @@ As described in the previous section, we re-define the image transform steps and
442442

443443
#### `inference`
444444

445-
Now convert image into Pytorch Tensor, load it into GPU if available, and pass it through the model.
445+
Now convert image into PyTorch Tensor, load it into GPU if available, and pass it through the model.
446446

447447
```python
448448
def inference(self, img):

0 commit comments

Comments
 (0)