Skip to content

Commit 4e95d87

Browse files
authored
Update README.md
- min python version 3.7 -> 3.9 - minor spelling fixes
1 parent 4781c7f commit 4e95d87

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ Segmentation based on [PyTorch](https://pytorch.org/).**
1212
[![PyPI - Downloads](https://img.shields.io/pypi/dm/segmentation-models-pytorch?style=for-the-badge&color=blue)](https://pepy.tech/project/segmentation-models-pytorch)
1313
<br>
1414
[![PyTorch - Version](https://img.shields.io/badge/PYTORCH-1.4+-red?style=for-the-badge&logo=pytorch)](https://pepy.tech/project/segmentation-models-pytorch)
15-
[![Python - Version](https://img.shields.io/badge/PYTHON-3.7+-red?style=for-the-badge&logo=python&logoColor=white)](https://pepy.tech/project/segmentation-models-pytorch)
15+
[![Python - Version](https://img.shields.io/badge/PYTHON-3.9+-red?style=for-the-badge&logo=python&logoColor=white)](https://pepy.tech/project/segmentation-models-pytorch)
1616

1717
</div>
1818

1919
The main features of this library are:
2020

21-
- High level API (just two lines to create a neural network)
21+
- High-level API (just two lines to create a neural network)
2222
- 9 models architectures for binary and multi class segmentation (including legendary Unet)
2323
- 124 available encoders (and 500+ encoders from [timm](https://github.com/rwightman/pytorch-image-models))
2424
- All encoders have pre-trained weights for faster and better convergence
2525
- Popular metrics and losses for training routines
2626

2727
### [📚 Project Documentation 📚](http://smp.readthedocs.io/)
2828

29-
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
3030

3131
### 📋 Table of content
3232
1. [Quick start](#start)
@@ -49,7 +49,7 @@ Visit [Read The Docs Project Page](https://smp.readthedocs.io/) or read followin
4949

5050
#### 1. Create your first Segmentation model with SMP
5151

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:
5353

5454
```python
5555
import segmentation_models_pytorch as smp
@@ -66,7 +66,7 @@ model = smp.Unet(
6666

6767
#### 2. Configure data preprocessing
6868

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.
7070

7171
```python
7272
from segmentation_models_pytorch.encoders import get_preprocessing_fn
@@ -484,7 +484,7 @@ make fixup # Ruff for formatting and lint checks
484484
#### Update table with encoders
485485

486486
```bash
487-
make table # generate table with encoders and print to stdout
487+
make table # generate a table with encoders and print to stdout
488488
```
489489

490490
### 📝 Citing
@@ -500,4 +500,4 @@ make table # generate table with encoders and print to stdout
500500
```
501501

502502
### 🛡️ License <a name="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

Comments
 (0)