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
Visit [Read The Docs Project Page](https://smp.readthedocs.io/) or read following README to know more about Segmentation Models Pytorch (SMP for short) library
29
+
Visit [Read The Docs Project Page](https://smp.readthedocs.io/) or read the following README to know more about Segmentation Models Pytorch (SMP for short) library
30
30
31
31
### 📋 Table of content
32
32
1.[Quick start](#start)
@@ -49,7 +49,7 @@ Visit [Read The Docs Project Page](https://smp.readthedocs.io/) or read followin
49
49
50
50
#### 1. Create your first Segmentation model with SMP
51
51
52
-
Segmentation model is just a PyTorch nn.Module, which can be created as easy as:
52
+
The segmentation model is just a PyTorch `torch.nn.Module`, which can be created as easy as:
53
53
54
54
```python
55
55
import segmentation_models_pytorch as smp
@@ -66,7 +66,7 @@ model = smp.Unet(
66
66
67
67
#### 2. Configure data preprocessing
68
68
69
-
All encoders have pretrained weights. Preparing your data the same way as during weights pre-training may give you better results (higher metric score and faster convergence). It is **not necessary** in case you train the whole model, not only decoder.
69
+
All encoders have pretrained weights. Preparing your data the same way as during weights pre-training may give you better results (higher metric score and faster convergence). It is **not necessary** in case you train the whole model, not only the decoder.
70
70
71
71
```python
72
72
from segmentation_models_pytorch.encoders import get_preprocessing_fn
@@ -484,7 +484,7 @@ make fixup # Ruff for formatting and lint checks
484
484
#### Update table with encoders
485
485
486
486
```bash
487
-
make table # generate table with encoders and print to stdout
487
+
make table # generate a table with encoders and print to stdout
488
488
```
489
489
490
490
### 📝 Citing
@@ -500,4 +500,4 @@ make table # generate table with encoders and print to stdout
500
500
```
501
501
502
502
### 🛡️ License <aname="license"></a>
503
-
Project is distributed under [MIT License](https://github.com/qubvel/segmentation_models.pytorch/blob/main/LICENSE)
503
+
The project is distributed under [MIT License](https://github.com/qubvel/segmentation_models.pytorch/blob/main/LICENSE)
0 commit comments