LLLebin commited on
Commit
a10370f
β€’
1 Parent(s): 083d662

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +89 -0
README.md ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - image-to-image
5
+ - image-to-3d
6
+ language:
7
+ - en
8
+ pretty_name: GameIR
9
+ size_categories:
10
+ - 100B<n<1T
11
+ ---
12
+ # GameIR
13
+
14
+ Image restoration techniques such as super-resolution and image synthesis are used in products like NVIDIA's DLSS but are less understood by the public when applied to gaming. This is due to a shortage of relevant ground-truth training data for gaming, which differs from typical content with its distinct, sharp low-resolution images.
15
+
16
+ In this case, we develop GameIR, a large-scale high-quality computer-synthesized ground-truth dataset to fill in the blanks, targeting at 2 different applications.
17
+ - The first is super-resolution (SR) with deferred rendering, to support the gaming solution of rendering and transferring LR images only and restoring HR images on the client side.
18
+ - The second is novel view synthesis (NVS), to support the multiview gaming solution of rendering and transferring part of the multiview frames and generating the remaining frames on the client side.
19
+
20
+ In addition to the RGB frames, the GBuffers during the deferred rendering stage (i.e., segmentation maps, and depth maps) are also provided, which can be used to help restoration.
21
+
22
+ ### Dataset Sources
23
+
24
+ - **Repository:** [GameIR](https://huggingface.co/datasets/LLLebin/GameIR)
25
+ - **Paper:** [More Information Needed]
26
+
27
+ ## Dataset Details
28
+ GameIR is collected using CARLA, which provids 8 towns: Town01, Town02, Town03, Town04, Town05, Town06, Town07, and Town08. For each town, we collected two types of scenes:
29
+ - the static scene: no other moving vehicles in the scene.
30
+ - the dynamic scene: some other moving vehicles in the scene.
31
+
32
+ In addition, each town has many different spawn points, and we will randomly select them from the town to collect data.
33
+
34
+ ### GameIR-SR: Dataset for Super-Resolution
35
+ | Dataset | Full Dataset (train)| Full Dataset (test) | Mini Dataset (train) | Mini Dataset (test) |
36
+ | :----------- | :-----------: | :-----------: | :-----------: | :-----------: |
37
+ | Town | static town {01-04, 06-08}, <br>dynamic town {01-04, 06-08} | - | static town {01-04, 06-08}, <br>dynamic town {01-04, 06-08} | - |
38
+ | Spawn Site | 20 | - | 20 | - |
39
+ | Sampling Rate | 100% | - | 10% | - |
40
+ | Resolution | 1920x1440 / 960x720 | - | 1920x1440 / 960x720 | - |
41
+ | Data Path | full_dataset/train/GameIR-SR | - | mini_dataset/train/GameIR-SR | - |
42
+ | GBuffer | βœ“ | - | βœ“ | - |
43
+ | Camera Parameters | βœ“ | - | βœ“ | - |
44
+
45
+ ### GameIR-NVS: Dataset for Novel View Synthesis
46
+ | Dataset | Full Dataset (train)| Full Dataset (test) | Mini Dataset (train) | Mini Dataset (test) |
47
+ | :----------- | :-----------: | :-----------: | :-----------: | :-----------: |
48
+ | Town | static town {01-08} | - | static town {01-08} | - |
49
+ | Spawn Site | 20 | - | 2 | - |
50
+ | Sampling Rate | 90% / 10% | - | 90% / 10% | - |
51
+ | Resolution | 1920x1440 | - | 1920x1440 | - |
52
+ | Data Path | full_dataset/train/GameIR-NVS | - | mini_dataset/train/GameIR-NVS | - |
53
+ | GBuffer | βœ“ | - | βœ“ | - |
54
+ | Camera Parameters | βœ“ | - | βœ“ | - |
55
+
56
+ ## How to Download
57
+
58
+ [Use Hugging Face Command Line Interface (CLI)](https://huggingface.co/docs/huggingface_hub/guides/cli#huggingface-cli-download)
59
+
60
+ ```
61
+ Download Entire Dataset
62
+
63
+ $ huggingface-cli download LLLebin/GameIR --repo-type dataset --local-dir .
64
+
65
+
66
+ Download Specified Folder
67
+
68
+ $ huggingface-cli download LLLebin/GameIR --repo-type dataset --include mini_dataset/train/* --local-dir .
69
+ ```
70
+
71
+ [Use Git](https://huggingface.co/docs/hub/datasets-downloading#using-git)
72
+ ```
73
+ $ git lfs install
74
+ $ git clone https://huggingface.co/datasets/LLLebin/GameIR
75
+ ```
76
+
77
+ After download the dataset, you can use following codes to extract the files in each subfolder (take the mini_data/train/GameIR-SR as an example):
78
+
79
+ ```
80
+ $ cd mini_dataset/train/GameIR-SR
81
+ $ for tarfile in GameIR-SR-*.tar; do tar -xf "$tarfile"; done
82
+ ```
83
+
84
+ ## How to Use
85
+
86
+ - For GameIR-SR, please refer to [GameIR-SR_demo](https://huggingface.co/datasets/LLLebin/GameIR/blob/main/demo/gameir_sr_demo.ipynb)
87
+ - For GameIR-NVS, please refer to [GameIR-NVS_demo](https://huggingface.co/datasets/LLLebin/GameIR/blob/main/demo/gameir_nvs_demo.ipynb)
88
+
89
+ # Citation