Skip to content

Commit 8aa5111

Browse files
committed
typo
1 parent 2c4b608 commit 8aa5111

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/analyzing-object-detection-dataset.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"[![Open in Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/visual-layer/fastdup/blob/main/examples/analyzing-object-detection-dataset.ipynb)\n",
2020
"[![Open in Kaggle](https://kaggle.com/static/images/open-in-kaggle.svg)](https://kaggle.com/kernels/welcome?src=https://github.com/visual-layer/fastdup/blob/main/examples/analyzing-object-detection-dataset.ipynb)\n",
2121
"\n",
22-
"In this tutorial, we will analyze an object detection dataset with bounding boxes and identify potential issues."
22+
"In this tutorial, we will analyze an object detection dataset with bounding boxes and identify potential issues. By the end of the notebook, you'll discover how to load a COCO format bounding box annotations into fastdup and inspect the dataset for issues at the bounding box level."
2323
]
2424
},
2525
{
@@ -133,7 +133,7 @@
133133
"id": "8391ef5e"
134134
},
135135
"source": [
136-
"## Load annotations\n",
136+
"## Load Annotations\n",
137137
"fastdup expects the annotations to be in a specific format.\n",
138138
"\n",
139139
"We will use a simple converter to convert the COCO format JSON annotation file into the fastdup annotation dataframe. This converter is applicable to any dataset which uses COCO format."
@@ -166,7 +166,7 @@
166166
"\n",
167167
"coco_annotations['split'] = 'train' # Only train files were loaded\n",
168168
"coco_annotations['filename'] = coco_annotations['filename'].apply(lambda x: 'coco_minitrain_25k/images/train2017/'+x)\n",
169-
"coco_annotations = coco_annotations.drop_duplicates()\n"
169+
"coco_annotations = coco_annotations.drop_duplicates()"
170170
]
171171
},
172172
{
@@ -184900,7 +184900,7 @@
184900184900
"id": "953af7a0"
184901184901
},
184902184902
"source": [
184903-
"## Component gallery\n",
184903+
"## Components Gallery\n",
184904184904
"View a components gallery and sort by largest objects."
184905184905
]
184906184906
},

0 commit comments

Comments
 (0)