patryk-bartkowiak commited on
Commit
677e11d
·
verified ·
1 Parent(s): 2cef859

Add files using upload-large-folder tool

Browse files
README.md CHANGED
@@ -17,10 +17,6 @@ configs:
17
  data_files:
18
  - split: train
19
  path: data/default/train-*
20
- - config_name: scene-metadata
21
- data_files:
22
- - split: train
23
- path: metadata/default/train-*
24
  ---
25
 
26
  # SynGallery: A Synthetic Gallery of Real Paintings for Instance-Level Artwork Recognition
@@ -28,8 +24,8 @@ configs:
28
  A synthetic dataset for **instance-level artwork recognition**: **4,898 real
29
  paintings** (MET Open Access) hung in a procedurally randomized 3D art-gallery
30
  scene, each rendered from **5 camera viewpoints** at 512×512 — **24,490
31
- synthetic RGB images** paired with their source photos. The environment is
32
- randomized per scene — wall/floor/roof textures, lighting, frame molding and color,
33
  optional protective glass, placard, painting scale, and camera-pose jitter.
34
 
35
  Rendered headlessly with **Blender 5.1.2 / Cycles** by the
@@ -37,24 +33,19 @@ Rendered headlessly with **Blender 5.1.2 / Cycles** by the
37
  scene variety is driven by Scene-Time-seeded **Geometry Nodes**, so every
38
  painting gets an independently randomized room.
39
 
40
- ## Configs
41
-
42
- | config | rows | one row per | contents |
43
- |---|---|---|---|
44
- | `default` | 4,898 | scene (painting datapoint) | source photo + all 5 rendered views + per-camera poses |
45
- | `scene-metadata` | 4,898 | scene (painting datapoint) | full Blender scene dump (raw JSON) |
46
 
47
  ```python
48
  from datasets import load_dataset
49
 
50
- ds = load_dataset("patryk-bartkowiak/SynGallery", "default", split="train") # scenes
51
- meta = load_dataset("patryk-bartkowiak/SynGallery", "scene-metadata", split="train") # scene dumps
52
  ```
53
 
54
- ### `default` schema
55
 
56
- One row bundles everything about one scene: the MET source photo and the five
57
- camera views rendered from it.
 
58
 
59
  | column | type | meaning |
60
  |---|---|---|
@@ -62,6 +53,15 @@ camera views rendered from it.
62
  | `met_object_id` | `int32` | MET museum object id of the source painting |
63
  | `source_image` | `Image` | the MET source photo itself (web-size JPEG) |
64
  | `image_30` … `image_150` | `Image` ×5 | the 512×512 RGBA PNG renders from cameras `30`, `60`, `90`, `120`, `150` |
 
 
 
 
 
 
 
 
 
65
  | `camera_location_30` … `_150` | `float32[3]` ×5 | each camera's world position at render time (after per-datapoint jitter) |
66
  | `camera_rotation_euler_30` … `_150` | `float32[3]` ×5 | each camera's world rotation (radians) at render time |
67
 
@@ -70,17 +70,9 @@ and the source painting by `met_object_id`. Rows are ordered by `index`. There i
70
  split — any row-level split is automatically painting-level, since all 5
71
  views live in the same row.
72
 
73
- ### `scene-metadata` schema
74
-
75
- | column | type | meaning |
76
- |---|---|---|
77
- | `index` | `int32` | join key to `default` |
78
- | `met_object_id` | `int32` | as in `default` |
79
- | `scene_json` | `string` | the datapoint's full `metadata.json`: every visible object (incl. jittered camera poses) and material (Principled BSDF values resolved through node links and Geometry-Nodes attributes) |
80
-
81
- Factors randomized *inside* Geometry Nodes (frame variant/color, glass
82
- presence, painting scale, placard) are baked into the renders but not
83
- individually labeled; `scene_json` records what Blender exposes.
84
 
85
  ## Randomization (this config = ladder rung 5, "all variety")
86
 
@@ -100,9 +92,12 @@ added here later as extra configs.
100
  Source paintings are photographs of artworks from the
101
  [MET Open Access](https://www.metmuseum.org/about-the-met/policies-and-documents/open-access)
102
  collection (CC0). One representative photo per MET object
103
- (`paintings_train_images_unique.json` manifest, consumed in order). The 3D
104
- scene uses commercial PBR texture assets, which appear only baked into the
105
- rendered pixels.
 
 
 
106
 
107
  ## Reproduction
108
 
 
17
  data_files:
18
  - split: train
19
  path: data/default/train-*
 
 
 
 
20
  ---
21
 
22
  # SynGallery: A Synthetic Gallery of Real Paintings for Instance-Level Artwork Recognition
 
24
  A synthetic dataset for **instance-level artwork recognition**: **4,898 real
25
  paintings** (MET Open Access) hung in a procedurally randomized 3D art-gallery
26
  scene, each rendered from **5 camera viewpoints** at 512×512 — **24,490
27
+ synthetic RGB images** paired with their source photos and museum metadata
28
+ (title, artist, date, medium, …). The environment is randomized per scene — wall/floor/roof textures, lighting, frame molding and color,
29
  optional protective glass, placard, painting scale, and camera-pose jitter.
30
 
31
  Rendered headlessly with **Blender 5.1.2 / Cycles** by the
 
33
  scene variety is driven by Scene-Time-seeded **Geometry Nodes**, so every
34
  painting gets an independently randomized room.
35
 
36
+ ## Loading
 
 
 
 
 
37
 
38
  ```python
39
  from datasets import load_dataset
40
 
41
+ ds = load_dataset("patryk-bartkowiak/SynGallery", split="train")
 
42
  ```
43
 
44
+ ## Schema
45
 
46
+ A single `train` split, **4,898 rows one row per scene**, bundling
47
+ everything about that scene: the MET source photo, the five camera views
48
+ rendered from it, and the artwork's museum metadata.
49
 
50
  | column | type | meaning |
51
  |---|---|---|
 
53
  | `met_object_id` | `int32` | MET museum object id of the source painting |
54
  | `source_image` | `Image` | the MET source photo itself (web-size JPEG) |
55
  | `image_30` … `image_150` | `Image` ×5 | the 512×512 RGBA PNG renders from cameras `30`, `60`, `90`, `120`, `150` |
56
+ | `title` | `string` | artwork title (MET Open Access) |
57
+ | `artist` / `artist_bio` | `string` | artist display name / bio (may be empty) |
58
+ | `object_date` | `string` | display date, e.g. `ca. 1580–85` |
59
+ | `object_begin_date` / `object_end_date` | `int32` | machine-readable date range (null if unknown) |
60
+ | `medium` | `string` | e.g. `Oil on copper` |
61
+ | `classification` | `string` | MET classification, e.g. `Paintings` |
62
+ | `culture` / `department` | `string` | culture (may be empty) / MET curatorial department |
63
+ | `met_url` | `string` | the object's page at metmuseum.org |
64
+ | *+ 42 more MET columns* | `string` / `bool` | every remaining `MetObjects.csv` field as its own column: `object_number`, `is_highlight` / `is_timeline_work` / `is_public_domain` (bool), `gallery_number`, `accession_year`, `object_name`, `period`, `dynasty`, `reign`, `portfolio`, `constituent_id`, the `artist_*` details (role, nationality, dates, gender, ULAN/Wikidata URLs, …), `dimensions`, `credit_line`, geography (`city` … `river`), `rights_and_reproduction`, `object_wikidata_url`, `metadata_date`, `repository`, `tags` + tag URLs. Sparse fields are empty strings / nulls |
65
  | `camera_location_30` … `_150` | `float32[3]` ×5 | each camera's world position at render time (after per-datapoint jitter) |
66
  | `camera_rotation_euler_30` … `_150` | `float32[3]` ×5 | each camera's world rotation (radians) at render time |
67
 
 
70
  split — any row-level split is automatically painting-level, since all 5
71
  views live in the same row.
72
 
73
+ Scene-randomization factors (wall/floor/roof textures, lighting, frame
74
+ variant/color, glass presence, painting scale, placard) are baked into the
75
+ renders but not individually labeled.
 
 
 
 
 
 
 
 
76
 
77
  ## Randomization (this config = ladder rung 5, "all variety")
78
 
 
92
  Source paintings are photographs of artworks from the
93
  [MET Open Access](https://www.metmuseum.org/about-the-met/policies-and-documents/open-access)
94
  collection (CC0). One representative photo per MET object
95
+ (`paintings_train_images_unique.json` manifest, consumed in order). Museum
96
+ metadata is joined from the official
97
+ [MET Open Access `MetObjects.csv`](https://github.com/metmuseum/openaccess)
98
+ (also CC0) by object id — the complete record, every field as its own
99
+ column. The 3D scene uses commercial PBR texture assets,
100
+ which appear only baked into the rendered pixels.
101
 
102
  ## Reproduction
103
 
data/default/train-00000-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3e93f7e5bae6070940bd8568249e7c108a6467a857dedcbfc97bf0e5542c2c79
3
- size 502853720
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02daee0dd677cf6bd4e1ae5ef9cd1dc55d3ac8f055ae9418f4d8718508e2c6d6
3
+ size 502992420
data/default/train-00001-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a8bf557608253e5421090366fdcc9971402ce5ffb9ac56e7cb4b247e9ddb9fd9
3
- size 502417877
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52e01909939c8e98d0a8a02a1525112ca8d310c759ee7ffcccd0c48a97001c56
3
+ size 502563595
data/default/train-00002-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:98867d16dfa4925f8711e310c925b2d5592bb84e37fe4e63c1e14a71132b6963
3
- size 502658450
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6d3fbe20cbcaf70927f651342d86b62c24a76df8268df4ef26c3cf6bc3dfac3
3
+ size 502815895
data/default/train-00003-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e1b9462f64ff27721ba7132a604dbfef0368f53d7d96abfd7a3083fd60e1b46d
3
- size 502104041
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f10f948f9610e6a062ffaa94a25023133c7790e9bb3bc1284df85560fc0abc43
3
+ size 502252552
data/default/train-00004-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d27acd73e20ba6cab626f8583767608ea5f16d9a6d6b1f9f08e0f8c566e97dff
3
- size 502351174
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2811ade6aaa53cab788d5c91e39be0c541996a8380deed24d88ca51b4c48cc5a
3
+ size 502503564
data/default/train-00005-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:250d20eb05d2444c3f7724e541737cfca996526d72b35e3e161aaa14d28f67ff
3
- size 501972154
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88ea02a262ccde05ffe1976118d316f32afcb8d07a7da5f1d9636bc7a154763b
3
+ size 502127060
data/default/train-00006-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b4a9d770c335e5372f6673a83452088fac4143ab6226e114e4603a37941eefdb
3
- size 501881396
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98fcb021a26191c6e874beae2c1c1f817dce3cc9b72aeb2fe740177248e4098d
3
+ size 502040112
data/default/train-00007-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:fae16ac3d0331e80048d7bda0515677638116dd771b48a45a412890b1f31c415
3
- size 501725037
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10583566451373f338c97008fb6dcb4ddde5bfc2cb28f96a5f920c462d3e5074
3
+ size 501874751
data/default/train-00008-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:53d40a0c1b938b5ac49b1392b3447a8917d962a2f2e3a1275c33b6962a98370b
3
- size 502262699
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66208542062d4b41d69a26a7066ad9351c12aa85643ae77e035ce2508570743b
3
+ size 502416738
data/default/train-00009-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:53708ad67418f3221021f843d9aa25de6d4492f4cff0bb1ab4b284d2f4000a9b
3
- size 501969331
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c020f612c9acbf76ab47a90ca22cd89f1592646d88d8efa2285df57adebcd09
3
+ size 502135964
data/default/train-00010-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e1b3d0e792868afebd522a62244002ee1463bdefc47ae1876cc4f060259de5f1
3
- size 501684510
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3b114863786a34f5d62e0d310b4622d3712c886d852d9df6e435d89c8e5c2a3
3
+ size 501842067
data/default/train-00011-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a286e8bd9e989843754aac2f9ec3a3df642e9b12e788a38c28fc1a51db62080d
3
- size 502648750
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9288939865c34e16d468a09a2a8cb53bd45a07252d2ba9a69d1d8ffcca46daf1
3
+ size 502797601
data/default/train-00012-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ca953a6dbf0d64f7b8ecbfd93e8d9c5c7248db2bbcf0e68129213900c9266c81
3
- size 503382658
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c79c3d8123b9f97962d433af33eb398b06d15858fa3d85d1d156c7efb6dc87b0
3
+ size 503530153
data/default/train-00013-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8142b4dd8231bd67f640f460d7688326473aff94f104c5afcc102c98552b74e7
3
- size 502213192
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:685454ff824ad406e73775959cf0faf48ff871802030a02d8a2d5dae348d7357
3
+ size 502354170
data/default/train-00014-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c602a0dca8d9718f690e8dd9c351ee9564977f7dccf1d06856d7ca87cb181cdf
3
- size 501613271
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d93f73a77d7eb5b4c70607545ffc43940689052ba32ab1128c9012f0d0ebc8a
3
+ size 501758262
data/default/train-00015-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c8b2ee3cebcaae6066961e2302ab8448ceea6c5445ffc0145e713e5e54d12237
3
- size 501797865
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:869499a8019fdea228f64f12b0a22a973d1ac57fe78892b0aeb5da04a69e7ba1
3
+ size 501919012
data/default/train-00016-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:35d75d8cdb98f367c592ef1848d9efc1b7cfaaab24ef0c4ff32e39372bf624a7
3
- size 501783855
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f52960eaafafbf93888bbb8216e26753a36b5441da0840b1ca18cebfc2a0f059
3
+ size 501947282
data/default/train-00017-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b5fef179bf4ec31d8421c67afe4a1c4dafcd023f52dd051595da905074ff42ed
3
- size 501792319
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1417ac64a69cb6d3e6c7736884627982973a8b57d3543618061e87ca4dcb6747
3
+ size 501917474
data/default/train-00018-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:df7f8d79ce8e40d19ac8b49a7dc246c91ebc7736718357b7541c7f3f801f18cc
3
- size 502572107
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6cfb0900d392ffeeb8e6382bc58b102674ea0ec1579e744955d0617806face22
3
+ size 502706184
data/default/train-00019-of-00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cba05d4f5ed70601d70b556c61c8947713c23c0f141e234c88bc679530c266d2
3
- size 33183068
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f265f0fa715f881db5ce0a82d3da188ae0b0f16e44dc4bbda44d7ffbcf611421
3
+ size 33211754