ZahidYasinMittha commited on
Commit
b0e5d40
·
1 Parent(s): 1d5db83

Readme updated

Browse files
Files changed (1) hide show
  1. README.md +80 -0
README.md CHANGED
@@ -1,3 +1,83 @@
1
  ---
2
  license: mit
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ tags:
4
+ - ASL
5
+ - American Sign Language
6
+ - Gesture Recognition
7
+ - Video Dataset
8
  ---
9
+
10
+ # American Sign Language (ASL) Dataset
11
+
12
+ **Description:**
13
+ This dataset contains **108,618 videos** representing **2,208 ASL words**, with each word having a minimum of **30 videos**. The videos were **scraped, collected from multiple sources, and preprocessed** to ensure consistency, quality, and usability for machine learning and gesture recognition tasks. Each video is **≤10 MB**, optimized for storage and model training.
14
+ The dataset can be used for ASL gesture recognition, video-based ML tasks, and model training for research and educational purposes.
15
+
16
+ ## Folder Structure
17
+
18
+ E:\Dataset\American-Sign-Language-Dataset
19
+ ├── part1\ # First subset of videos (≤10,000 files)
20
+ ├── part2\ # Second subset of videos (≤10,000 files)
21
+ ├── part3\ # Third subset of videos (≤10,000 files)
22
+ ├── README.md # This file
23
+ └── dataset.csv # CSV file mapping words to video paths
24
+
25
+ - Each subfolder contains **≤10,000 video files** to comply with Hugging Face repository limits.
26
+ - Videos are organized into multiple parts to prevent exceeding per-folder file limits.
27
+ - `dataset.csv` maps each ASL word to its respective video path.
28
+ - `README.md` provides detailed dataset information and usage instructions.
29
+
30
+ ## CSV File (`dataset.csv`)
31
+
32
+ The CSV contains the following columns:
33
+
34
+ | Column | Description |
35
+ |-------------|---------------------------------------------|
36
+ | `word` | The ASL word represented in the video |
37
+ | `video_path`| Relative path to the video file in the repo |
38
+
39
+ **Example:**
40
+
41
+ | word | video_path |
42
+ |--------|---------------------------|
43
+ | HELLO | part1/12345-HELLO.mp4 |
44
+ | THANKS | part2/67890-THANKS.mp4 |
45
+ | YES | part3/54321-YES.mp4 |
46
+
47
+ - All paths are **relative to the root dataset folder**.
48
+
49
+ ## Dataset Statistics
50
+
51
+ - **Total videos:** 108,618
52
+ - **Total words:** 2,208
53
+ - **Minimum videos per word:** 30
54
+ - **Maximum files per folder:** ≤10,000 (split into 3 parts)
55
+
56
+ ## Usage Example
57
+
58
+ import pandas as pd
59
+
60
+ # Load CSV
61
+ df = pd.read_csv("dataset.csv")
62
+
63
+ # Example: filter videos for the word "HELLO"
64
+ hello_videos = df[df['word'] == 'HELLO']['video_path'].tolist()
65
+ print(hello_videos)
66
+
67
+ ## Key Usage Notes
68
+
69
+ - Recommended to split dataset into subfolders due to repository file limits.
70
+ - Dataset combines multiple sources and has been carefully cleaned to remove duplicates and corrupted videos.
71
+ - Ensure that all video paths in `dataset.csv` match the actual subfolder structure when using programmatically.
72
+ - Large uploads were handled using Hugging Face's `upload-large-folder` utility.
73
+
74
+ ## Citation
75
+
76
+ If using this dataset in research:
77
+
78
+ American Sign Language Dataset, collected and preprocessed by Zahid Yasin Mittha, 2025.
79
+
80
+ ## License
81
+
82
+ This dataset is released under the **MIT License**.
83
+ You are free to use, modify, and distribute it for research, educational, or commercial purposes, with proper attribution.