Skip to content

Commit 77a698f

Browse files
committed
fix data-augumentation docs
1 parent 63aae4c commit 77a698f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ TorchSat is an open-source deep learning framework for satellite imagery analysi
2828
tutorials/semantic-segmentation.md
2929
tutorials/object-detection.md
3030
tutorials/change-detection.md
31+
tutorials/data-augumentation.md
3132
tools.md
3233
api/api.rst
3334

docs/source/tutorials/data-augumentation.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11

2+
# Data Augumentation
23
This notebook show the data augmentation for classification, detection and segmentation.
34

45

@@ -12,7 +13,7 @@ from torchsat.transforms import transforms_cls, transforms_det, transforms_seg
1213
from torchsat.utils.visualizer import plot_img, plot_bbox, plot_mask
1314
```
1415

15-
## classification
16+
## Image classification
1617

1718
### 3 channel image
1819

@@ -95,7 +96,7 @@ plot_img(result, channels=(8,3,1))
9596
![png](./data-augumentation/output_8_1.png)
9697

9798

98-
# Object detection
99+
## Object detection
99100

100101

101102
```python
@@ -147,7 +148,7 @@ plot_bbox(result_img, result_bboxes, labels=result_labels, classes=classes)
147148
![png](./data-augumentation/output_11_0.png)
148149

149150

150-
# Semantic Segmentation
151+
# Semantic segmentation
151152

152153

153154
```python

0 commit comments

Comments
 (0)