Add dataset card and metadata for Garment Particles
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,45 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-to-3d
|
| 5 |
+
- image-to-3d
|
| 6 |
---
|
| 7 |
+
|
| 8 |
+
# Garment Particles: A 2D–3D Symmetric Garment Representation for Generation and Editing
|
| 9 |
+
|
| 10 |
+
[Project Page](https://garment-particles.github.io) | [Paper](https://huggingface.co/papers/2605.26391) | [GitHub](https://github.com/garment-particles/GarmentParticles)
|
| 11 |
+
|
| 12 |
+
Garment Particles is a 5D point-cloud representation that jointly encodes 2D sewing patterns and 3D geometry. This representation enables Garment Particles Flow (GPF), a framework that supports intuitive garment generation from high-level inputs such as text, images, and sketches, as well as various editing operations.
|
| 13 |
+
|
| 14 |
+
## Dataset Structure
|
| 15 |
+
|
| 16 |
+
The dataset consists of:
|
| 17 |
+
- `data/particles-*.tar`: 26 shards of per-garment particle data (`rand_<id>/garment_particles_rand_<id>.h5` + `stats.txt`).
|
| 18 |
+
- `splits/garment_particle_v2_{train,test}_11182025.txt`: Train and test split files.
|
| 19 |
+
|
| 20 |
+
## Usage
|
| 21 |
+
|
| 22 |
+
As described in the [official repository](https://github.com/garment-particles/GarmentParticles), you can download and unpack the shards using the Hugging Face CLI:
|
| 23 |
+
|
| 24 |
+
```bash
|
| 25 |
+
# Download the shards
|
| 26 |
+
huggingface-cli download georgeNakayama/GarmentParticles --repo-type dataset --local-dir garment_data
|
| 27 |
+
|
| 28 |
+
# Unpack the shards
|
| 29 |
+
cd garment_data
|
| 30 |
+
for t in data/*.tar; do tar -xf "$t"; done
|
| 31 |
+
cd ..
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
This will extract the data into a structure like `garment_data/rand_<id>/garment_particles_rand_<id>.h5`.
|
| 35 |
+
|
| 36 |
+
## Citation
|
| 37 |
+
|
| 38 |
+
```bibtex
|
| 39 |
+
@article{garmentparticles2026,
|
| 40 |
+
title={Garment Particles: A 2D--3D Symmetric Garment Representation for Generation and Editing},
|
| 41 |
+
author={Nakayama, George and others},
|
| 42 |
+
journal={SIGGRAPH Conference Papers},
|
| 43 |
+
year={2026}
|
| 44 |
+
}
|
| 45 |
+
```
|