gsaltintas commited on
Commit
d0f9257
·
verified ·
1 Parent(s): ec39b0b

Add dataset documentation derived from DatasetInfo

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md CHANGED
@@ -55,3 +55,37 @@ dataset_info:
55
  download_size: 924092
56
  dataset_size: 1335442
57
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  download_size: 924092
56
  dataset_size: 1335442
57
  ---
58
+
59
+ # Parametric Shapes Dataset
60
+ This is a synthetic dataset of images containing geometric shapes with controllable parameters generated for educational purposes at the University of Toronto.
61
+
62
+ This dataset contains 7000 synthetic images (32x32) of geometric shapes including circles, rectangles, hexagons, stars, and triangles. Each image is generated with random parameters such as position, size, color, and rotation.
63
+
64
+ ## Dataset Splits
65
+
66
+ Train: 5,000 images (1,000 per shape)
67
+ Validation: 1,000 images (200 per shape)
68
+ Test: 1,000 images (200 per shape)
69
+
70
+ All splits are non-overlapping and generated with different random seeds.
71
+
72
+ ## Parameters
73
+
74
+ Each image is parameterized by 6 independent factors:
75
+
76
+ | Factor | Type | Range | Description |
77
+ |--------|------|-------|-------------|
78
+ | `shape_type` | Categorical | 0-4 | Shape class (0=circle, 1=rectangle, 2=hexagon, 3=star, 4=triangle) |
79
+ | `pos_x` | Continuous | 0.2-0.8 | Horizontal position of shape center (normalized) |
80
+ | `pos_y` | Continuous | 0.2-0.8 | Vertical position of shape center (normalized) |
81
+ | `size` | Continuous | 0.1-0.35 | Size of shape relative to image (radius/width) |
82
+ | `color` | Continuous | 0-1 | Hue value (converted to RGB with high saturation) |
83
+ | `rotation` | Continuous | 0-2π | Rotation angle in radians (no effect on circles) |
84
+
85
+
86
+
87
+ ## License
88
+
89
+ This dataset is released under the MIT License. Feel free to use it for educational and research purposes.
90
+
91
+