gsaltintas commited on
Commit
6d6e812
·
verified ·
1 Parent(s): 29102c1

Delete README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +0 -91
README.md DELETED
@@ -1,91 +0,0 @@
1
- ---
2
- configs:
3
- - config_name: default
4
- data_files:
5
- - split: train
6
- path: data/train-*
7
- - split: validation
8
- path: data/validation-*
9
- - split: test
10
- path: data/test-*
11
- dataset_info:
12
- features:
13
- - name: image
14
- dtype: image
15
- - name: shape_type
16
- dtype:
17
- class_label:
18
- names:
19
- '0': 0
20
- '1': 1
21
- '2': 2
22
- '3': 3
23
- '4': 4
24
- - name: shape_name
25
- dtype:
26
- class_label:
27
- names:
28
- '0': circle
29
- '1': rectangle
30
- '2': hexagon
31
- '3': star
32
- '4': triangle
33
- - name: pos_x
34
- dtype: float32
35
- - name: pos_y
36
- dtype: float32
37
- - name: size
38
- dtype: float32
39
- - name: color
40
- dtype: float32
41
- - name: rotation
42
- dtype: float32
43
- - name: id
44
- dtype: int32
45
- splits:
46
- - name: train
47
- num_bytes: 1142673
48
- num_examples: 5000
49
- - name: validation
50
- num_bytes: 229901
51
- num_examples: 1000
52
- - name: test
53
- num_bytes: 227908
54
- num_examples: 1000
55
- download_size: 1234825
56
- dataset_size: 1600482
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 (48x48) 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
-