SobanHM commited on
Commit
c0e04a6
·
verified ·
1 Parent(s): ecfa8e7

Update README.md

Browse files

## 🎙️ Dataset: Pakistan MNA Speaker Recognition (PNA 2025)

The dataset contains audio recordings of Members of the National Assembly (MNAs) curated during an internship at the **National Assembly of Pakistan (PNA)** in 2025. It is designed for **Speaker Identification** tasks.

### 📥 Download & Setup
The dataset is hosted on Hugging Face due to its size (~1.2 GB).

1. **Download the ZIP:** [pakistan-mnas-speeches-dataset.zip](https://huggingface.co)
2. **Extract the files:**
```bash
unzip pakistan-mnas-speeches-dataset.zip -d data/
```

#### Quick Download Script (Python)
You can use this script to download and extract the dataset automatically:

```python
import os
import requests
import zipfile

url = "https://huggingface.co"
output = "pakistan-mnas-speeches-dataset.zip"

print("Downloading dataset from Hugging Face...")
r = requests.get(url)
with open(output, "wb") as f:
f.write(r.content)

with zipfile.ZipFile(output, 'r') as zip_ref:
zip_ref.extractall("data/")
print("Done! Dataset extracted to the 'data/' directory.")

Files changed (1) hide show
  1. README.md +48 -1
README.md CHANGED
@@ -35,4 +35,51 @@ It was curated for **Speaker Recognition** tasks during an internship at the Nat
35
  - **Source:** National Assembly of Pakistan (PNA)
36
  - **Total Speakers:** [more than 30]
37
  - **Format:** .wav (16kHz)
38
- - **Year:** 2025
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  - **Source:** National Assembly of Pakistan (PNA)
36
  - **Total Speakers:** [more than 30]
37
  - **Format:** .wav (16kHz)
38
+ - **Year:** 2025
39
+
40
+ ## 🎙️ Dataset: Pakistan MNA Speaker Recognition (PNA 2025)
41
+
42
+ The dataset contains audio recordings of Members of the National Assembly (MNAs) curated during an internship at the **National Assembly of Pakistan (PNA)** in 2025.
43
+
44
+ ### 📥 Download & Setup
45
+ Due to its size (**1.2 GB**), the dataset is hosted on Hugging Face.
46
+
47
+ * **Direct Download:** [my_files.zip](https://huggingface.co/datasets/SobanHM/pna-speaker-recognition-dataset/tree/main)
48
+ * **Repository Page:** [Hugging Face Dataset Card](https://huggingface.co/datasets/SobanHM/pna-speaker-recognition-dataset)
49
+
50
+ #### Automatic Setup (Python)
51
+ You can use this snippet to download and extract the dataset automatically:
52
+
53
+
54
+ ## 🎙️ Dataset: Pakistan MNA Speaker Recognition (PNA 2025)
55
+
56
+ The dataset contains audio recordings of Members of the National Assembly (MNAs) curated during an internship at the **National Assembly of Pakistan (PNA)** in 2025. It is designed for **Speaker Identification** tasks.
57
+
58
+ ### 📥 Download & Setup
59
+ The dataset is hosted on Hugging Face due to its size (~1.2 GB).
60
+
61
+ 1. **Download the ZIP:** [pakistan-mnas-speeches-dataset.zip](https://huggingface.co)
62
+ 2. **Extract the files:**
63
+ ```bash
64
+ unzip pakistan-mnas-speeches-dataset.zip -d data/
65
+ ```
66
+
67
+ #### Quick Download Script (Python)
68
+ You can use this script to download and extract the dataset automatically:
69
+
70
+ ```python
71
+ import os
72
+ import requests
73
+ import zipfile
74
+
75
+ url = "https://huggingface.co"
76
+ output = "pakistan-mnas-speeches-dataset.zip"
77
+
78
+ print("Downloading dataset from Hugging Face.")
79
+ r = requests.get(url)
80
+ with open(output, "wb") as f:
81
+ f.write(r.content)
82
+
83
+ with zipfile.ZipFile(output, 'r') as zip_ref:
84
+ zip_ref.extractall("data/")
85
+ print("Done! Dataset extracted to the 'data/' directory.")