|
20 | 20 | "\n", |
21 | 21 | "Any implemented dataset on this repository run the following pipeline\n", |
22 | 22 | "\n", |
23 | | - "- **Dataset specific** loading: The first step is specific to a dataset. This repository provide method to load dataset that follow the coco, voc or Tensorflow csv format. If you want to support an other format you can considere to implement your own pipeline following our tutorial (DETR Tensorflow - How to setup a custom dataset.ipynb) or post a feature request on the github. \n", |
| 23 | + "- **Dataset specific** loading: The first step is specific to a dataset. This repository provides method to load dataset that follow the coco, voc or Tensorflow csv format. If you want to support an other format you can considere to implement your own pipeline following our tutorial (DETR Tensorflow - How to setup a custom dataset.ipynb) or post a feature request on the github. \n", |
24 | 24 | "\n", |
25 | 25 | "- **DETR transformations/augmentations**: the provided methods apply the transformations and augmentations needed on your data\n", |
26 | 26 | "- **Image normalization**: The pipeline will also normalizations your image before to call return the final data\n", |
|
38 | 38 | "\n", |
39 | 39 | "## Coco Dataset\n", |
40 | 40 | "\n", |
41 | | - "If you're dataset follow the Coco Dataset format, then detr_tf provide you with a method to automaticly load your dataset. Any coco dataset is made of at least one image's directory and one json annotation file following the coco instance json format.\n", |
| 41 | + "If you're dataset follow the Coco Dataset format, then detr_tf provide you with a method to automatically load your dataset. Any coco dataset is made of at least one image's directory and one json annotation file following the coco instance json format.\n", |
42 | 42 | "\n", |
43 | 43 | "### Training config for a coco dataset\n" |
44 | 44 | ] |
|
145 | 145 | "source": [ |
146 | 146 | "## Voc Dataset\n", |
147 | 147 | "\n", |
148 | | - "If you're dataset follow the Voc Dataset format, then detr_tf provide you with a method to automaticly load your dataset.A voc dataset is at least made of one image folder and one xml folder (XMLs and Images can be stored in the same directory)\n", |
| 148 | + "If you're dataset follow the Voc Dataset format, then detr_tf provide you with a method to automaticly load your dataset. A voc dataset is at least made of one image folder and one xml folder (XMLs and Images can be stored in the same directory)\n", |
149 | 149 | "\n", |
150 | 150 | "### ### Training config for a VOC dataset" |
151 | 151 | ] |
|
241 | 241 | "source": [ |
242 | 242 | "## Tensorflow csv Dataset\n", |
243 | 243 | "\n", |
244 | | - "If you're dataset follow the Tensorflow csv format, then detr_tf provide you with a method to automaticly load your dataset. Any tfcsv dataset is made of at least one image's directory and one csv annotation file following the tensorflow csv format object detection format.\n", |
| 244 | + "If you're dataset follow the Tensorflow csv format, then detr_tf provide you with a method to automatically load your dataset. Any tfcsv dataset is made of at least one image's directory and one csv annotation file following the tensorflow csv format object detection format.\n", |
245 | 245 | " \n", |
246 | 246 | "\n", |
247 | 247 | "\n", |
|
0 commit comments