Add dataset README
Browse files
README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
pretty_name: GeomCAD
|
| 4 |
+
size_categories:
|
| 5 |
+
- 1M<n<10M
|
| 6 |
+
---
|
| 7 |
+
|
| 8 |
+
# GeomCAD
|
| 9 |
+
|
| 10 |
+
Dataset for **GeomCAD: A Benchmark for Precision Reconstruction of Generative CAD Operations from Point Clouds**.
|
| 11 |
+
|
| 12 |
+
## Layout
|
| 13 |
+
|
| 14 |
+
```
|
| 15 |
+
extrude_100w/ # training set (to be uploaded)
|
| 16 |
+
loft_100w/ # training set (to be uploaded)
|
| 17 |
+
revolve_100w/ # training set (to be uploaded)
|
| 18 |
+
sweep_100w/ # training set (to be uploaded)
|
| 19 |
+
test/
|
| 20 |
+
extrude/ # 1500 test samples
|
| 21 |
+
test_mesh_paths.json # {"<id>": "<id>/<id>.stl"} relative to test/extrude/
|
| 22 |
+
<id>/<id>.stl # ground-truth mesh
|
| 23 |
+
<id>/<id>.py # CAD-Recode-style code that produces the mesh
|
| 24 |
+
loft/ # 1500 test samples
|
| 25 |
+
revolve/ # 1500 test samples
|
| 26 |
+
sweep/ # 1500 test samples
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
| split | operation | #samples | size |
|
| 30 |
+
|-------|-----------|---------:|------:|
|
| 31 |
+
| test | extrude | 1500 | 61 MB |
|
| 32 |
+
| test | loft | 1500 | 353 MB |
|
| 33 |
+
| test | revolve | 1500 | 409 MB |
|
| 34 |
+
| test | sweep | 1500 | 410 MB |
|
| 35 |
+
|
| 36 |
+
## Usage
|
| 37 |
+
|
| 38 |
+
```python
|
| 39 |
+
from huggingface_hub import snapshot_download
|
| 40 |
+
local = snapshot_download("FanQY/GeomCAD", repo_type="dataset")
|
| 41 |
+
```
|