jneuendorf commited on
Commit
bb8d72b
·
verified ·
1 Parent(s): 529ac17

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +132 -0
README.md CHANGED
@@ -1,4 +1,16 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: image
@@ -35,3 +47,123 @@ configs:
35
  - split: test
36
  path: data/test-*
37
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ task_categories:
4
+ - image-classification
5
+ - zero-shot-image-classification
6
+ pretty_name: RENDR
7
+ size_categories:
8
+ - 10K<n<100K
9
+ tags:
10
+ - 3d
11
+ - synthetic
12
+ - rendered
13
+ - computer-graphics
14
  dataset_info:
15
  features:
16
  - name: image
 
47
  - split: test
48
  path: data/test-*
49
  ---
50
+
51
+
52
+ # RENDR Dataset
53
+
54
+ ## Dataset Description
55
+
56
+ RENDR is a large-scale synthetic dataset of rendered 3D objects across 11 object categories. The dataset contains rendered images from 3D assets sourced from BlenderKit and Haven, designed for training and evaluating computer vision models on synthetic 3D data.
57
+
58
+ ## Dataset Statistics
59
+
60
+ ### Split Overview
61
+
62
+ | Split | Total Images | Rendered | BlenderKit Assets | Haven Assets |
63
+ |-------|--------------|----------|-------------------|--------------|
64
+ | Train | 29,291 | 23,836 | 5,397 | 58 |
65
+ | Test | 5,929 | 4,206 | 1,701 | 22 |
66
+
67
+ ### Class Distribution
68
+
69
+ | Class | Train (Rendered) | Train (BlenderKit) | Train (Haven) | Test (Rendered) | Test (BlenderKit) | Test (Haven) |
70
+ |-------|------------------|--------------------|--------------:|-----------------|-------------------|-------------:|
71
+ | Animals | 2,369 | 133 | 1 | 416 | 103 | 1 |
72
+ | Appliances | 1,966 | 388 | 5 | 346 | 150 | 2 |
73
+ | Architecture | 2,224 | 523 | 7 | 392 | 171 | 3 |
74
+ | Decoration | 2,226 | 731 | 0 | 392 | 188 | 0 |
75
+ | Electronics | 1,905 | 246 | 6 | 336 | 126 | 3 |
76
+ | Furniture | 2,154 | 1,075 | 0 | 380 | 190 | 0 |
77
+ | Lighting | 1,565 | 266 | 1 | 278 | 117 | 0 |
78
+ | Mechanical | 2,150 | 386 | 18 | 380 | 151 | 8 |
79
+ | Nature | 2,782 | 799 | 0 | 492 | 217 | 0 |
80
+ | People | 2,554 | 205 | 0 | 452 | 136 | 0 |
81
+ | Tools | 1,941 | 645 | 20 | 342 | 152 | 5 |
82
+
83
+ ## Dataset Structure
84
+
85
+ ```
86
+ rendr/
87
+ ├── train/
88
+ │ ├── animals/
89
+ │ ├── appliances/
90
+ │ ├── architecture/
91
+ │ ├── decoration/
92
+ │ ├── electronics/
93
+ │ ├── furniture/
94
+ │ ├── lighting/
95
+ │ ├── mechanical/
96
+ │ ├── nature/
97
+ │ ├── people/
98
+ │ └── tools/
99
+ └── test/
100
+ └── [same structure as train]
101
+ ```
102
+
103
+ ## Normalization Statistics
104
+
105
+ For standard ImageNet-style normalization:
106
+
107
+ - **Mean**: `[0.5910, 0.5846, 0.5790]`
108
+ - **Std**: `[0.2724, 0.2733, 0.2781]`
109
+
110
+ ## Usage
111
+
112
+ ```python
113
+ from datasets import load_dataset
114
+
115
+ # Load the dataset
116
+ dataset = load_dataset("jneuendorf/rendr")
117
+
118
+ # Access splits
119
+ train_data = dataset['train']
120
+ test_data = dataset['test']
121
+
122
+ # Example: Load with normalization
123
+ from torchvision import transforms
124
+
125
+ transform = transforms.Compose([
126
+ transforms.ToTensor(),
127
+ transforms.Normalize(
128
+ mean=[0.5910, 0.5846, 0.5790],
129
+ std=[0.2724, 0.2733, 0.2781]
130
+ )
131
+ ])
132
+ ```
133
+
134
+ ## Data Sources
135
+
136
+ - **Rendered Images**: Custom rendered synthetic images
137
+ - **BlenderKit**: 3D assets from BlenderKit library
138
+ - **Haven**: 3D assets from Poly Haven
139
+
140
+ ## Classes
141
+
142
+ The dataset includes 11 object categories:
143
+ 1. Animals
144
+ 2. Appliances
145
+ 3. Architecture
146
+ 4. Decoration
147
+ 5. Electronics
148
+ 6. Furniture
149
+ 7. Lighting
150
+ 8. Mechanical
151
+ 9. Nature
152
+ 10. People
153
+ 11. Tools
154
+
155
+ ## Citation
156
+
157
+ If you use this dataset, please cite:
158
+
159
+ ```bibtex
160
+ @dataset{rendr,
161
+ title={RENDR: A Large-Scale Synthetic 3D Object Dataset},
162
+ author={Jim Neuendorf},
163
+ year={2025}
164
+ }
165
+ ```
166
+
167
+ ## License
168
+
169
+ MIT License - Copyright (c) 2025 Jim Neuendorf