wufeim nielsr HF Staff commited on
Commit
00d2658
·
1 Parent(s): 0e666e5

Add paper link, project page, and sample usage (#1)

Browse files

- Add paper link, project page, and sample usage (2707d1770d0096b88a5816606d0e84458465a91b)


Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +22 -4
README.md CHANGED
@@ -1,4 +1,9 @@
1
  ---
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: category
@@ -42,14 +47,27 @@ configs:
42
  data_files:
43
  - split: all
44
  path: data/all-*
45
- license: cc-by-4.0
46
- size_categories:
47
- - n<1K
48
  ---
49
 
50
  # LychSim Objects Dataset
51
 
52
- See [homepage](https://lychsim.github.io/).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
 
54
  ## License
55
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - other
5
+ size_categories:
6
+ - n<1K
7
  dataset_info:
8
  features:
9
  - name: category
 
47
  data_files:
48
  - split: all
49
  path: data/all-*
 
 
 
50
  ---
51
 
52
  # LychSim Objects Dataset
53
 
54
+ This dataset provides annotations for 3D assets used in **LychSim**, a controllable and interactive simulation framework for vision research.
55
+
56
+ For each 3D asset that appears in LychSim scenes, we annotate its semantic category, canonical scale, and pose alignment (the calibration yaw that puts the asset's "front" along +X), together with a precomputed `mesh_offset` so that spawning at `location + mesh_offset` lands the visual bounding box bottom-center exactly on the target location. These annotations are critical for producing semantically aligned ground-truth 3D object poses and for programmatic object placement and scene manipulation.
57
+
58
+ - **Paper:** [LychSim: A Controllable and Interactive Simulation Framework for Vision Research](https://huggingface.co/papers/2605.12449)
59
+ - **Project Page:** [https://lychsim.github.io/](https://lychsim.github.io/)
60
+ - **Repository:** [https://github.com/wufeim/LychSim](https://github.com/wufeim/LychSim)
61
+
62
+ ## Sample Usage
63
+
64
+ You can load this dataset using the Hugging Face `datasets` library:
65
+
66
+ ```python
67
+ from datasets import load_dataset
68
+
69
+ objects = load_dataset("wufeim/lychsim_objects")
70
+ ```
71
 
72
  ## License
73