Add task category and improve dataset documentation

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +37 -6
README.md CHANGED
@@ -1,19 +1,50 @@
1
  ---
2
- license: apache-2.0
3
  language:
4
  - en
5
- tags:
6
- - code
7
- pretty_name: st3d
8
  size_categories:
9
  - 10K<n<100K
 
 
 
 
 
 
10
  configs:
11
  - config_name: default
12
  data_files:
13
  - split: train
14
- path: "train.jsonl"
15
  ---
16
 
 
 
 
 
17
  This is the training dataset for the CVPR 2026 🎉 paper **SeeThrough3D: Occlusion Aware 3D-Control in Text-to-Image Generation**.
18
 
19
- The training code expects shuffled versions of the jsonls (`train_shuffled{0..3}.jsonl`). These files are only the shuffled versions of `train.jsonl` with no additional content.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
2
  language:
3
  - en
4
+ license: apache-2.0
 
 
5
  size_categories:
6
  - 10K<n<100K
7
+ pretty_name: st3d
8
+ task_categories:
9
+ - text-to-image
10
+ tags:
11
+ - 3D-layout
12
+ - controllable-generation
13
  configs:
14
  - config_name: default
15
  data_files:
16
  - split: train
17
+ path: train.jsonl
18
  ---
19
 
20
+ # SeeThrough3D Dataset
21
+
22
+ [**Project Page**](https://seethrough3d.github.io/) | [**Paper**](https://huggingface.co/papers/2602.23359) | [**GitHub**](https://github.com/va1bhavagrawal/seethrough3d)
23
+
24
  This is the training dataset for the CVPR 2026 🎉 paper **SeeThrough3D: Occlusion Aware 3D-Control in Text-to-Image Generation**.
25
 
26
+ SeeThrough3D is a model for 3D layout-conditioned generation that explicitly models occlusions. This dataset consists of diverse multi-object scenes with strong inter-object occlusions, using an occlusion-aware 3D scene representation (OSCR) where objects are depicted as translucent 3D boxes.
27
+
28
+ ## Dataset Information
29
+
30
+ The primary training data is contained in `train.jsonl`.
31
+
32
+ The training code expects shuffled versions of the jsonls (`train_shuffled{0..3}.jsonl`). These files are shuffled versions of `train.jsonl` with no additional content.
33
+
34
+ For detailed instructions on environment setup and training, please refer to the [official GitHub repository](https://github.com/va1bhavagrawal/seethrough3d).
35
+
36
+ ## Citation
37
+
38
+ If you find this work or dataset useful, please cite:
39
+
40
+ ```bibtex
41
+ @misc{agrawal2026seethrough3docclusionaware3d,
42
+ title={SeeThrough3D: Occlusion Aware 3D Control in Text-to-Image Generation},
43
+ author={Vaibhav Agrawal and Rishubh Parihar and Pradhaan Bhat and Ravi Kiran Sarvadevabhatla and R. Venkatesh Babu},
44
+ year={2026},
45
+ eprint={2602.23359},
46
+ archivePrefix={arXiv},
47
+ primaryClass={cs.CV},
48
+ url={https://arxiv.org/abs/2602.23359},
49
+ }
50
+ ```