Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
@@ -8,13 +8,8 @@ pinned: false
|
|
8 |
---
|
9 |
|
10 |
<div align="center">
|
11 |
-
|
12 |
-
|
13 |
-
<p><br></p>
|
14 |
-
<h1 id="detection-datasets">Detection datasets</h1>
|
15 |
-
<p><br></p>
|
16 |
-
<p><em>Easily load and transform datasets for object detection.</em></p>
|
17 |
-
<p></div>
|
18 |
<br></p>
|
19 |
<hr>
|
20 |
<p><strong>Documentation</strong>: <a href="https://blinjrm.github.io/detection-datasets/">https://blinjrm.github.io/detection-datasets/</a></p>
|
@@ -26,48 +21,53 @@ pinned: false
|
|
26 |
<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>
|
27 |
<p>The main features are:</p>
|
28 |
<ul>
|
29 |
-
<li
|
30 |
-
<
|
31 |
-
<
|
32 |
-
|
33 |
-
</li>
|
34 |
-
|
35 |
-
|
36 |
-
<li>
|
37 |
-
<
|
38 |
-
|
39 |
-
|
40 |
-
<li
|
41 |
-
<li
|
42 |
-
|
43 |
-
|
44 |
-
</
|
45 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
</ul>
|
47 |
<p><br></p>
|
48 |
<div align="center">
|
49 |
-
|
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>
|
|
|
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>
|
|
|
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>
|