Datasets:
File size: 2,876 Bytes
47e917f f7712dc 47e917f f7712dc 47e917f 6488f4d 47e917f 6488f4d e31853a 6488f4d e31853a 6488f4d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
---
tags:
- myanmar
- burmese
- nlp
- asr
- spoken-language
language: my
license: cc-by-4.0
datasets:
- fineweb2
task_categories:
- text-classification
- text-generation
- summarization
pretty_name: my_spoken_corpus
size_categories:
- 10M<n<100M
---
# Myanmar Spoken Corpus (Version 1.0)
## Overview
`Myanmar Spoken Corpus` is a high-quality, open dataset of spoken Myanmar sentences designed to support NLP and ASR applications. The dataset focuses on providing clean and structured spoken language data for advancing Myanmar language technology.
## Dataset Statistics
- **Number of Rows**:
- Local Parquet file: **16,020,011 rows**
- Hugging Face Dataset Viewer: **15,728,640 rows**
- **File Size**: 1.78 GB (Parquet format)
### Notes:
- The difference in row counts is due to automatic processing by the Hugging Face platform, which may include deduplication or exclusion of invalid rows during dataset conversion.
- The original dataset with all rows can be downloaded directly from this repository.
## Key Features
- **16 Million Spoken Sentences**: Filtered and refined specifically for spoken Myanmar language.
- **Cleaned and Standardized**: Includes Unicode conversion, sentence segmentation, and deduplication.
- **Free and Open**: Released under a universal freedom license, suitable for commercial, academic, and personal use.
## License
This dataset is released under a **Universal Freedom License**. You can use, modify, and share it freely for any purpose. However, crediting the dataset and its sources is appreciated.
## Acknowledgments
This dataset is derived from publicly available sources, including:
- The **Hugging Face FineWeb2 dataset**, specifically its Myanmar subset.
- Original writers, speakers, and creators of the sentences.
The dataset has undergone significant manual and automated processing to create a distinct and valuable resource.
## Dataset Structure
The dataset is stored in a **Parquet** format for efficient storage and usage. It includes the following fields:
- `sentence_id`: A unique identifier for each sentence.
- `text`: The spoken sentence text in Unicode Myanmar.
## Disclaimer
This dataset may contain:
- **Offensive or sensitive content**: As it is derived from web-based sources.
- **Incomplete or noisy sentences**: Despite extensive cleaning, some issues may remain.
Users are encouraged to review and preprocess the dataset further if needed.
## Future Plans
This is the first version of the dataset. Future updates will include:
- Written Myanmar sentences to expand its use cases.
- Larger datasets with higher-quality content for universal Myanmar language applications.
## Usage Example
You can load the dataset using Python's pandas library:
```python
import pandas as pd
# Load the dataset
df = pd.read_parquet("my_spoken_corpus.parquet")
# Display the first few rows
print(df.head()) |