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
Copy file name to clipboardExpand all lines: docs/quickstart.rst
+24-4Lines changed: 24 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
⏳ Quick Start
1
+
🚀 Quick Start
2
2
==============
3
3
4
4
**1. Create segmentation model**
@@ -16,8 +16,9 @@ Segmentation model is just a PyTorch nn.Module, which can be created as easy as:
16
16
classes=3, # model output channels (number of classes in your dataset)
17
17
)
18
18
19
-
- see table with available model architectures
20
-
- see table with avaliable encoders and its corresponding weights
19
+
- Check the page with available :doc:`model architectures <models>`.
20
+
- Check the table with :doc:`available ported encoders and its corresponding weights <encoders>`.
21
+
- `Pytorch Image Models (timm) <https://github.com/huggingface/pytorch-image-models>`_ encoders are also supported, check it :doc:`here<encoders_timm>`.
21
22
22
23
**2. Configure data preprocessing**
23
24
@@ -33,4 +34,23 @@ All encoders have pretrained weights. Preparing your data the same way as during
33
34
**3. Congratulations!** 🎉
34
35
35
36
36
-
You are done! Now you can train your model with your favorite framework!
37
+
You are done! Now you can train your model with your favorite framework, or as simple as:
- Finetuning notebook on Oxford Pet dataset with `PyTorch Lightning <https://github.com/qubvel/segmentation_models.pytorch/blob/master/examples/binary_segmentation_intro.ipynb>`_ |colab-badge|
56
+
- Finetuning script for cloth segmentation with `PyTorch Lightning <https://github.com/ternaus/cloths_segmentation>`_
0 commit comments