blinjrm commited on
Commit
c6c7f23
·
1 Parent(s): b28f356

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -64
README.md CHANGED
@@ -7,67 +7,6 @@ sdk: static
7
  pinned: false
8
  ---
9
 
10
- <div align="center">
11
- <p><em>Easily load and transform datasets for object detection.</em></p>
12
- </div>
13
- <br></p>
14
- <hr>
15
- <p><strong>Documentation</strong>: <a href="https://blinjrm.github.io/detection-datasets/">https://blinjrm.github.io/detection-datasets/</a></p>
16
- <p><strong>Source Code</strong>: <a href="https://github.com/blinjrm/detection-datasets">https://github.com/blinjrm/detection-datasets</a></p>
17
- <p><strong>Datasets on Hugging Face Hub</strong>: <a href="https://huggingface.co/detection-datasets">https://huggingface.co/detection-datasets</a></p>
18
- <hr>
19
- <p><br></p>
20
- <p><code>detection_datasets</code> aims to make it easier to work with detection datasets. </p>
21
- <p>This library works alongside the <a href="https://huggingface.co/detection-datasets">Detection dataset</a> organisation on the 🤗 Hub, where some detection datasets have been uploaded in the format expected by the library, and are ready to use. </p>
22
- <p>The main features are:</p>
23
- <ul>
24
- <li>
25
- <strong>Read</strong> the dataset :
26
- <ul>
27
- <li>From disk if it has already been downloaded.</li>
28
- <li>Directly from the Hugging Face Hub if it <a href="https://huggingface.co/detection-datasets">already exist</a>.</li>
29
- </ul>
30
- </li>
31
- <li>
32
- <strong>Transform</strong> the dataset:
33
- <ul>
34
- <li>Select a subset of data.</li>
35
- <li>Remap categories.</li>
36
- <li>Create new train-val-test splits.</li>
37
- </ul>
38
- </li>
39
- <li><strong>Visualize</strong> the annotations and images.</li>
40
- <li>
41
- <strong>Write</strong> the dataset:
42
- <ul>
43
- <li>To disk, selecting the target detection format: <code>COCO</code>, <code>YOLO</code> and more to come.</li>
44
- <li>To the Hugging Face Hub for easy reuse in a different environment and share with the community.</li>
45
- </ul>
46
- </li>
47
- </ul>
48
- <p><br></p>
49
- <div align="center">
50
- <hr>
51
- <p><em>Read the <a href="https://github.com/blinjrm/detection-datasets/blob/main/README.md#getting-started">quick start</a>, or directly jump to the tutorials:</em></p>
52
- <table>
53
- <thead>
54
- <tr>
55
- <th>Goal</th>
56
- <th style="text-align:center">Tutorial</th>
57
- <th style="text-align:center">Colab</th>
58
- </tr>
59
- </thead>
60
- <tbody>
61
- <tr>
62
- <td>Load from disk and upload to the Hub</td>
63
- <td style="text-align:center"><a href="https://blinjrm.github.io/detection-datasets/tutorials/1_Read/">Open in the docs</a></td>
64
- <td style="text-align:center"><a href="https://colab.research.google.com/github/blinjrm/detection-datasets/blob/main/docs/tutorials/1_Read.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"></a></td>
65
- </tr>
66
- <tr>
67
- <td>Load from the Hub and transform</td>
68
- <td style="text-align:center"><a href="https://blinjrm.github.io/detection-datasets/tutorials/2_Transform/">Open in the docs</a></td>
69
- <td style="text-align:center"><a href="https://colab.research.google.com/github/blinjrm/detection-datasets/blob/main/docs/tutorials/2_Transform.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"></a></td>
70
- </tr>
71
- </tbody>
72
- </table>
73
- <hr>
 
7
  pinned: false
8
  ---
9
 
10
+ Easily load, transform and export detection dataset to work with many object detection frameworks or models.
11
+
12
+ Check the [source code](https://github.com/blinjrm/detection-datasets) and [documentation](https://blinjrm.github.io/detection-datasets/).