Skip to content

Commit 771f5f1

Browse files
committed
Run pre-commit and remove unnecessary blank lines in documentation files
1 parent f9078f0 commit 771f5f1

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

docs/source/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
[TODO]
2525
:::
2626

27-
2827
::::
2928

3029
## Python API Reference

docs/source/python/descriptions/detection_model.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ Detection model aims to detect objects in an image. The model outputs a list of
1010

1111
A single input image of shape (H, W, 3) where H and W are the height and width of the image, respectively.
1212

13-
1413
### Outputs
1514

1615
Detection model outputs a list of detection objects (i.e `list[Detection]`) wrapped in `DetectionResult`, each object containing the following attributes:
@@ -40,4 +39,4 @@ for pred_obj in predictions.objects:
4039
pred_score = pred_obj.score
4140
label_id = pred_obj.id
4241
bbox = [pred_obj.xmin, pred_obj.ymin, pred_obj.xmax, pred_obj.ymax]
43-
```
42+
```

docs/source/python/descriptions/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@
5252
[todo]
5353
:::
5454

55-
::::
55+
::::

docs/source/python/descriptions/instance_segmentation.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ Instance segmentation model outputs a list of segmented objects (i.e `list[Segme
2323
- `xmax` (int) - X-coordinate of the bottom-right corner of the bounding box.
2424
- `ymax` (int) - Y-coordinate of the bottom-right corner of the bounding box.
2525

26-
2726
## Example
2827

2928
```python

0 commit comments

Comments
 (0)