nielsr HF Staff commited on
Commit
d9fd8fb
·
verified ·
1 Parent(s): ba008cc

Add comprehensive dataset card for Light-Syn

Browse files

This PR adds a comprehensive dataset card for Light-Syn. It includes links to the associated paper, project page, and GitHub repository. It also specifies the `image-to-video` task category and provides sample usage instructions for preparing the dataset for training, as found in the GitHub README.

Files changed (1) hide show
  1. README.md +42 -0
README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - image-to-video
4
+ ---
5
+
6
+ # Light-Syn Dataset
7
+
8
+ This repository contains the **Light-Syn** dataset, introduced in the paper [Light-X: Generative 4D Video Rendering with Camera and Illumination Control](https://huggingface.co/papers/2512.05115).
9
+
10
+ **Project Page:** [https://lightx-ai.github.io/](https://lightx-ai.github.io/)
11
+
12
+ **Code:** [https://github.com/TQTQliu/Light-X](https://github.com/TQTQliu/Light-X)
13
+
14
+ ## Dataset Description
15
+
16
+ Light-Syn is a degradation-based pipeline with inverse-mapping that synthesizes training pairs from in-the-wild monocular footage. This strategy yields a dataset covering static, dynamic, and AI-generated scenes, ensuring robust training for the Light-X framework, which enables controllable rendering from monocular videos with both viewpoint and illumination control.
17
+
18
+ ## Sample Usage
19
+
20
+ This dataset is used for training the Light-X model. The following steps outline how to prepare the data and start training as described in the associated GitHub repository.
21
+
22
+ ### 1. Prepare Training Data
23
+
24
+ Download the dataset.
25
+
26
+ ### 2. Generate Metadata
27
+
28
+ Generate the metadata JSON file describing the training samples.
29
+
30
+ ```bash
31
+ python tools/gen_json.py -r <DATA_PATH>
32
+ ```
33
+
34
+ Then Update the `DATASET_META_NAME` in your config to the path of the newly generated JSON file.
35
+
36
+ ### 3. Start Training
37
+
38
+ Begin the training process. Checkpoints will be saved in the `output_train/` directory.
39
+
40
+ ```bash
41
+ bash train.sh
42
+ ```