Datasets:

Modalities:
Text
Formats:
text
Libraries:
Datasets
License:
Yasser Dahou commited on
Commit
4b485c2
·
verified ·
1 Parent(s): 9e7fcf6

Delete README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -121
README.md DELETED
@@ -1,121 +0,0 @@
1
- ---
2
- datasets:
3
- - tiiuae/visper
4
- language:
5
- - en
6
- - es
7
- - fr
8
- - ar
9
- - ch
10
- inference: false
11
- license: unknown
12
- ---
13
-
14
- **ViSpeR** is a large-scale dataset for Audio Visual Speech Recognition for Arabic, Chinese, French, Spanish and English.
15
-
16
- ## Dataset Summary:
17
-
18
- Given the scarcity of publicly available VSR data for non-English languages, we collected VSR data for the most four spoken languages at scale.
19
-
20
-
21
- Comparison of VSR datasets. Our proposed ViSpeR dataset is larger in size compared to other datasets that cover non-English languages for the VSR task. For our dataset, the numbers in parenthesis denote the number of clips. We also give the clip coverage under TedX and Wild subsets of our ViSpeR dataset.
22
- ![Lip2Vec Illustration](visper_stats.png)
23
-
24
-
25
- ## Downloading the data:
26
-
27
- First, use the langauge.json to download the videos and put them in seperate folders. The raw data should be structured as follows:
28
- ```bash
29
- Data/
30
- ├── Chinese/
31
- │ ├── video_id.mp4
32
- │ └── ...
33
- ├── Arabic/
34
- │ ├── video_id.mp4
35
- │ └── ...
36
- ├── French/
37
- │ ├── video_id.mp4
38
- │ └── ...
39
- ├── Spanish/
40
- │ ├── video_id.mp4
41
- │ └── ...
42
-
43
- ```
44
-
45
- ## Setup:
46
-
47
- 1- Setup the environement:
48
- ```bash
49
- conda create --name visper python=3.10
50
- conda activate visper
51
- pip install -r requirements.txt
52
- ```
53
-
54
- 2- Install ffmpeg:
55
- ```bash
56
- conda install "ffmpeg<5" -c conda-forge
57
- ```
58
-
59
- ## Processing the data:
60
-
61
- Then, use the provided metadata to process the raw data for creating the ViSpeR dataset. You can use the ```crop_videos.py``` to process the data, note that all clips are cropped and transformed
62
-
63
- python crop_videos.py --video_dir [path_to_data_language] --save_path [save_path_language] --json [language_metadata.json] --use_ffmpeg True
64
- ```
65
-
66
- ```bash
67
- ViSpeR/
68
- ├── Chinese/
69
- │ ├── video_id/
70
- │ │ │── 00001.mp4
71
- │ │ │── 00001.json
72
- │ └── ...
73
- ├── Arabic/
74
- │ ├── video_id/
75
- │ │ │── 00001.mp4
76
- │ │ │── 00001.json
77
- │ └── ...
78
- ├── French/
79
- │ ├── video_id/
80
- │ │ │── 00001.mp4
81
- │ │ │── 00001.json
82
- │ └── ...
83
- ├── Spanish/
84
- │ ├── video_id/
85
- │ │ │── 00001.mp4
86
- │ │ │── 00001.json
87
- │ └── ...
88
-
89
- ```
90
-
91
- The ```video_id/xxxx.json``` has the 'label' of the corresponding video ```video_id/xxxx.mp4```.
92
-
93
-
94
-
95
- ## Intended Use
96
-
97
- This dataset can be used to train models for visual speech recognition. It's particularly useful for research and development purposes in the field of audio-visual content processing. The data can be used to assess the performance of current and future models.
98
-
99
- ## Limitations and Biases
100
- Due to the data collection process focusing on YouTube, biases inherent to the platform may be present in the dataset. Also, while measures are taken to ensure diversity in content, the dataset might still be skewed towards certain types of content due to the filtering process.
101
-
102
-
103
- ## Citation
104
- ```bash
105
-
106
- @inproceedings{djilali2023lip2vec,
107
- title={Lip2Vec: Efficient and Robust Visual Speech Recognition via Latent-to-Latent Visual to Audio Representation Mapping},
108
- author={Djilali, Yasser Abdelaziz Dahou and Narayan, Sanath and Boussaid, Haithem and Almazrouei, Ebtessam and Debbah, Merouane},
109
- booktitle={Proceedings of the IEEE/CVF International Conference on Computer Vision},
110
- pages={13790--13801},
111
- year={2023}
112
- }
113
-
114
- @inproceedings{djilali2024vsr,
115
- title={Do VSR Models Generalize Beyond LRS3?},
116
- author={Djilali, Yasser Abdelaziz Dahou and Narayan, Sanath and LeBihan, Eustache and Boussaid, Haithem and Almazrouei, Ebtesam and Debbah, Merouane},
117
- booktitle={Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision},
118
- pages={6635--6644},
119
- year={2024}
120
- }
121
- ```