Add task category to metadata
Browse filesThis PR adds `task_categories: [other]` to the YAML metadata block of the dataset card to improve its discoverability on the Hugging Face Hub. The markdown content of the dataset card is already very comprehensive and remains unchanged.
README.md
CHANGED
|
@@ -1,11 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
pretty_name: ClothTransformer Dataset
|
| 3 |
-
license: cc-by-4.0
|
| 4 |
-
viewer: false
|
| 5 |
language:
|
| 6 |
- en
|
|
|
|
| 7 |
size_categories:
|
| 8 |
- 1K<n<10K
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
tags:
|
| 10 |
- cloth-simulation
|
| 11 |
- physics
|
|
@@ -139,4 +141,4 @@ third-party assets with their own terms:
|
|
| 139 |
journal = {arXiv preprint arXiv:2605.27852},
|
| 140 |
year = {2026}
|
| 141 |
}
|
| 142 |
-
```
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
+
license: cc-by-4.0
|
| 5 |
size_categories:
|
| 6 |
- 1K<n<10K
|
| 7 |
+
pretty_name: ClothTransformer Dataset
|
| 8 |
+
viewer: false
|
| 9 |
+
task_categories:
|
| 10 |
+
- other
|
| 11 |
tags:
|
| 12 |
- cloth-simulation
|
| 13 |
- physics
|
|
|
|
| 141 |
journal = {arXiv preprint arXiv:2605.27852},
|
| 142 |
year = {2026}
|
| 143 |
}
|
| 144 |
+
```
|