Update README
Browse files
README.md
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
-
|
|
|
|
|
|
|
2 |
|
3 |
-
This document provides details about the dataset and codebooks provided in the `
|
4 |
|
5 |
## Data Generation Pipeline
|
6 |
|
@@ -15,7 +18,7 @@ The pipeline that we follow to generate the pre-tokenized data is as follows:
|
|
15 |
|
16 |
## Pre-tokenized Data
|
17 |
|
18 |
-
The `pretokenized-data` folder contains all the pre-tokenized data for the datasets used in the
|
19 |
|
20 |
```python
|
21 |
pretokenized-data/
|
@@ -54,16 +57,13 @@ For the exact files that correspond to the input and output data for each task,
|
|
54 |
|
55 |
## VQGAN Models and Codebooks
|
56 |
|
57 |
-
The `vqgan-models-and-codebooks` folder contains all the VQGAN model checkpoints and codebooks for the datasets used in the
|
58 |
|
59 |
```python
|
60 |
vqgan-models-and-codebooks/
|
61 |
|-- clevr/
|
62 |
| |-- 2024-10-10T09-21-36_custom_vqgan_CLEVR-LARGE/ # contains the VQGAN model checkpoint for CLEVR
|
63 |
| |-- custom_vqgan_embedding_1024CLEVRLARGE_256dim.npy # contains the VQGAN codebook for CLEVR
|
64 |
-
|-- domain-agnostic/
|
65 |
-
| |-- vqgan_gumbel_f8/ # contains the VQGAN model checkpoint for Domain Agnostic VQGAN (provided by taming-transformers)
|
66 |
-
| |-- quantize_weight_8192.npy # contains the VQGAN codebook for Domain Agnostic VQGAN
|
67 |
|-- objaworld/
|
68 |
| |-- 2025-01-17T09-02-22_custom_vqgan_SYNTHETIC_LIVINGROOM_PARK_LARGE_EP100/ # contains the VQGAN model checkpoint for ObjaWorld
|
69 |
| |-- custom_vqgan_embedding_256SYNTHETIC_LIVINGROOM_PARK_LARGE_EP100_256dim.npy # contains the VQGAN codebook for ObjaWorld
|
@@ -74,14 +74,11 @@ vqgan-models-and-codebooks/
|
|
74 |
|
75 |
## Images and Scenes for Evaluation
|
76 |
|
77 |
-
The `images-and-scenes-for-evaluation` folder contains all the groundtruth images and scenes for the datasets used in the
|
78 |
|
79 |
```python
|
80 |
images-and-scenes-for-evaluation/
|
81 |
|-- clevr/ # contains all images and scenes for evaluation for CLEVR
|
82 |
|-- objaworld/ # contains all images and scenes for evaluation for ObjaWorld
|
83 |
|-- objectron/ # contains all scenes for evaluation for Objectron
|
84 |
-
```
|
85 |
-
|
86 |
-
|
87 |
-
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
---
|
4 |
+
# Kyvo Dataset and Codebooks Details
|
5 |
|
6 |
+
This document provides details about the dataset and codebooks provided in the `kyvo-datasets-and-codebooks` repository. We will provide the details about each of the folders in the repository and the contents of each folder.
|
7 |
|
8 |
## Data Generation Pipeline
|
9 |
|
|
|
18 |
|
19 |
## Pre-tokenized Data
|
20 |
|
21 |
+
The `pretokenized-data` folder contains all the pre-tokenized data for the datasets used in the Kyvo project. The pre-tokenized data is stored in the following structure:
|
22 |
|
23 |
```python
|
24 |
pretokenized-data/
|
|
|
57 |
|
58 |
## VQGAN Models and Codebooks
|
59 |
|
60 |
+
The `vqgan-models-and-codebooks` folder contains all the VQGAN model checkpoints and codebooks for the datasets used in the Kyvo project. The VQGAN model checkpoints and codebooks are stored in the following structure:
|
61 |
|
62 |
```python
|
63 |
vqgan-models-and-codebooks/
|
64 |
|-- clevr/
|
65 |
| |-- 2024-10-10T09-21-36_custom_vqgan_CLEVR-LARGE/ # contains the VQGAN model checkpoint for CLEVR
|
66 |
| |-- custom_vqgan_embedding_1024CLEVRLARGE_256dim.npy # contains the VQGAN codebook for CLEVR
|
|
|
|
|
|
|
67 |
|-- objaworld/
|
68 |
| |-- 2025-01-17T09-02-22_custom_vqgan_SYNTHETIC_LIVINGROOM_PARK_LARGE_EP100/ # contains the VQGAN model checkpoint for ObjaWorld
|
69 |
| |-- custom_vqgan_embedding_256SYNTHETIC_LIVINGROOM_PARK_LARGE_EP100_256dim.npy # contains the VQGAN codebook for ObjaWorld
|
|
|
74 |
|
75 |
## Images and Scenes for Evaluation
|
76 |
|
77 |
+
The `images-and-scenes-for-evaluation` folder contains all the groundtruth images and scenes for the datasets used in the Kyvo project. The images and scenes are used to compute the evaluation metrics for the different tasks. The images and scenes are stored in the following structure:
|
78 |
|
79 |
```python
|
80 |
images-and-scenes-for-evaluation/
|
81 |
|-- clevr/ # contains all images and scenes for evaluation for CLEVR
|
82 |
|-- objaworld/ # contains all images and scenes for evaluation for ObjaWorld
|
83 |
|-- objectron/ # contains all scenes for evaluation for Objectron
|
84 |
+
```
|
|
|
|
|
|