Update README.md
Browse files
README.md
CHANGED
|
@@ -1,19 +1,28 @@
|
|
| 1 |
---
|
| 2 |
license: c-uda
|
| 3 |
---
|
|
|
|
| 4 |
Introducing a novel accent database "IndicAccentDB" which satisfies the below requirements:
|
| 5 |
|
| 6 |
-
|
| 7 |
|
| 8 |
-
|
| 9 |
the Harvard sentences. These sentences gather intrinsic information by combining different phonemes and grammatically focused vocabulary. These sentences are appropriately expressing accents in sentence-level discourse.
|
| 10 |
-
|
| 11 |
|
| 12 |
-
|
| 13 |
-
The fish twisted and turned on the bent hook.
|
| 14 |
|
| 15 |
-
IndicAccentDB contains speech recordings in six non-native English accents of Gujarati, Hindi, Kannada, Malayalam, Tamil, and Telugu. We collected six non-native accents from volunteers who had strong non-native
|
| 16 |
English accents and were well-versed in speaking at least one Indian language. Each speaker was asked to recite the Harvard sentences. The Harvard sentences dataset consists of 72 sets
|
| 17 |
of ten sentences each and is phonetically balanced sentences that are neither too short nor too long.
|
| 18 |
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: c-uda
|
| 3 |
---
|
| 4 |
+
## 1. Introduction
|
| 5 |
Introducing a novel accent database "IndicAccentDB" which satisfies the below requirements:
|
| 6 |
|
| 7 |
+
* **Gender balance:** The speech database should be a collection of a wide range of speakers balancing both the male and female speakers to display the characteristics of the speakers speech.
|
| 8 |
|
| 9 |
+
* **Phonetically balanced uniform content:** To make the classification task simpler and models to distinguish the speakers, we considered building the IndicAccentDB with uniform content, a collection of speech recordings for
|
| 10 |
the Harvard sentences. These sentences gather intrinsic information by combining different phonemes and grammatically focused vocabulary. These sentences are appropriately expressing accents in sentence-level discourse.
|
| 11 |
+
You can access the Harvard sentences (sample shown below) dataset here: [Harvard Sentences](https://www.cs.columbia.edu/~hgs/audio/harvard.html) recited by the speakers in the recordings.
|
| 12 |
|
| 13 |
+
*The juice of lemons makes fine punch.*
|
| 14 |
+
*The fish twisted and turned on the bent hook.*
|
| 15 |
|
| 16 |
+
* IndicAccentDB contains speech recordings in six non-native English accents of Gujarati, Hindi, Kannada, Malayalam, Tamil, and Telugu. We collected six non-native accents from volunteers who had strong non-native
|
| 17 |
English accents and were well-versed in speaking at least one Indian language. Each speaker was asked to recite the Harvard sentences. The Harvard sentences dataset consists of 72 sets
|
| 18 |
of ten sentences each and is phonetically balanced sentences that are neither too short nor too long.
|
| 19 |
|
| 20 |
+
## 2. Dataset Usage
|
| 21 |
+
To use the dataset in your Python program, refer to the following script:
|
| 22 |
+
```python3
|
| 23 |
+
from datasets import load_dataset
|
| 24 |
+
accent_db = load_dataset("DarshanaS/IndicAccentDb")
|
| 25 |
+
```
|
| 26 |
+
## 3. Publications
|
| 27 |
+
|
| 28 |
+
1. [S. Darshana, H. Theivaprakasham, G. Jyothish Lal, B. Premjith, V. Sowmya and K. Soman, "MARS: A Hybrid Deep CNN-based Multi-Accent Recognition System for English Language," 2022 First International Conference on Artificial Intelligence Trends and Pattern Recognition (ICAITPR), Hyderabad, India, 2022, pp. 1-6, doi: 10.1109/ICAITPR51569.2022.9844177.](https://ieeexplore.ieee.org/document/9844177)
|