mayaweiz commited on
Commit
df09f51
·
verified ·
1 Parent(s): 2b318a0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +73 -25
README.md CHANGED
@@ -1,27 +1,75 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: sequence
5
- dtype: large_string
6
- - name: step
7
- dtype: int64
8
- - name: image
9
- dtype: image
10
- - name: cp.svg
11
- dtype: large_string
12
- - name: cp.fold
13
- dtype: large_string
14
- - name: flat_folder
15
- dtype: large_string
16
- splits:
17
- - name: train
18
- num_bytes: 35464185
19
- num_examples: 337
20
- download_size: 32642953
21
- dataset_size: 35464185
22
- configs:
23
- - config_name: default
24
- data_files:
25
- - split: train
26
- path: data/train-*
27
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - image-to-3d
5
+ - other
6
+ language:
7
+ - en
8
+ tags:
9
+ - origami
10
+ - geometry
11
+ - crease-pattern
12
+ - fold
13
+ - computer-vision
14
+ - procedural-generation
15
+ pretty_name: PurelandFold
16
+ size_categories:
17
+ - n<1K
 
 
 
 
 
 
 
 
 
18
  ---
19
+
20
+ # PurelandFold
21
+
22
+ PurelandFold is the ground-truth benchmark introduced in **FoldingAgent: Inferring Parametric Origami Procedures from Demonstration Videos** (Maya Moriya, Sigal Raab, Yael Vinker, Tali Dekel — Weizmann Institute of Science / MIT). It pairs real photos from instructional origami videos with the exact geometric state of the paper at each photographed step.
23
+
24
+ - Project page: https://maya-moriya.github.io/origami-page
25
+
26
+ ## Why this dataset exists
27
+
28
+ FoldingAgent's task is to infer a parametric, executable folding procedure directly from a sequence of video keyframes — a step-by-step reconstruction of how a flat square of paper turns into a finished origami model. Existing origami datasets provide either static crease patterns or final folded forms, but none pairs real demonstration photos with ground-truth *procedural* folding states. PurelandFold was curated to close that gap and to serve as an evaluation benchmark for this task.
29
+
30
+ The scope is **Pureland origami** — a well-studied subset (Smith, 1980) in which every fold is a simple mountain or valley fold along a straight crease, combined with `unfold`, `rotate`, and `flip`. Pureland keeps the representation compact (every intermediate state is a flat-folded layout of polygonal faces) while still covering a wide range of real instructional folding sequences.
31
+
32
+ ## How it was collected
33
+
34
+ - Sourced from the *Easy Origami* category on the [OrigamiWay](https://www.origamiway.com/) website, which offers a clean, diverse set of models; the Pureland-compatible subset was selected.
35
+ - All 27 demonstration videos were filmed by the authors themselves (front-facing LED ring light, ambient daylight, iPhone 12, black Bristol board background) rather than scraped from noisy online sources — this avoids filtering/curation bias.
36
+ - Keyframes marking meaningful hand-paper interactions were manually extracted from each video.
37
+ - Each keyframe was annotated with the full ground-truth geometric state of the paper at that moment: vertex/face geometry, paper topology, crease (mountain/valley/flat/boundary) assignments, per-face front/back orientation, and the layer stacking order.
38
+ - Sequences average 12 frames, ranging from 5 to 21.
39
+
40
+ See Sec. 4.1 and Sec. 5.2.1 of the paper for the full formal state representation and dataset construction details.
41
+
42
+ ## Dataset structure
43
+
44
+ One row per `(sequence, step)` — i.e., per annotated keyframe. 337 rows across 27 sequences.
45
+
46
+ | column | type | description |
47
+ |---|---|---|
48
+ | `sequence` | string | Short, normalized name of the folding sequence (e.g. `ladybug`, `gift_card_holder`, `tulip_stem`) |
49
+ | `step` | int | Keyframe index within the sequence (1 = flat starting square) |
50
+ | `image` | image | The real photo for this keyframe |
51
+ | `cp.svg` | string (SVG) | Rendered crease pattern (unfolded 2D layout) for this state |
52
+ | `cp.fold` | string (JSON) | Crease pattern in [FOLD format](https://github.com/edemaine/fold) — vertices, faces, edges, mountain/valley/flat assignment, fold angles, and face stacking order |
53
+ | `flat_folder` | string (JSON) | Diagnostic output from compiling `cp.fold` with the [Flat-Folder](https://github.com/origamimagiro/flat-folder) crease-pattern solver (Jason Ku, 2022): folded vertex/face positions, face order, and counts of the taco-taco / taco-tortilla / tortilla-tortilla / transitivity conditions used to certify flat-foldability |
54
+
55
+ All rows in this release come from ground truth (ordinary photographs paired with hand-annotated geometry) rather than from any model's predictions.
56
+
57
+ ### `flat_folder` and Compilation Validity
58
+
59
+ The paper's primary validity metric, **Compilation Validity (CV)**, checks whether a predicted geometry can be compiled by Flat-Folder into a definite, self-intersection-free folded state — i.e., whether it is syntactically valid, geometrically foldable, and produces a consistent layer ordering. The `flat_folder` column contains that same compiler's output for every ground-truth state in this dataset (all of which compile successfully, as expected for verified ground truth), so it can be used directly to reproduce or extend that metric.
60
+
61
+ ## Citation
62
+
63
+ If you use PurelandFold, please cite the FoldingAgent paper:
64
+
65
+ ```bibtex
66
+ @article{moriya2026foldingagent,
67
+ title = {FoldingAgent: Inferring Parametric Origami Procedures from Demonstration Videos},
68
+ author = {Moriya, Maya and Raab, Sigal and Vinker, Yael and Dekel, Tali},
69
+ year = {2026},
70
+ }
71
+ ```
72
+
73
+ ## License
74
+
75
+ Released under CC-BY-4.0. Please provide attribution to the FoldingAgent paper and project page above.