--- language: - ta tags: - journalism - rural-india - paari - ta - tamil - tts - speech-synthesis size_categories: - n<1K task_categories: - text-to-speech - text-classification multilinguality: - monolingual pretty_name: PAARI Tamil TTS Dataset dataset_info: features: - name: article_id dtype: int64 - name: chunk_id dtype: int64 - name: title dtype: string - name: text dtype: string - name: text_length dtype: int64 - name: total_chunks dtype: int64 - name: language dtype: string - name: language_name dtype: string - name: audio dtype: audio splits: - name: train num_bytes: 22379022011.718 num_examples: 10323 download_size: 22038865956 dataset_size: 22379022011.718 configs: - config_name: default data_files: - split: train path: data/train-* --- # PAARI Tamil TTS Dataset ## Dataset Description This dataset contains TTS-optimized chunks of journalism articles in Tamil (தமிழ்) from the People's Archive of Rural India (PAARI). The articles focus on rural life, agriculture, social issues, and cultural stories from rural India. ### Dataset Details - **Language**: Tamil (தமிழ்) - **Script**: Tamil - **Language Code**: `ta` - **Dataset Type**: TTS-optimized - **Source**: [Rural India Online](https://ruralindiaonline.org) - **License**: Please refer to PAARI's terms of use ### Dataset Structure #### TTS Dataset Fields - `article_id`: Unique identifier for the source article - `chunk_id`: Sequential chunk number within the article - `title`: Article title in Tamil - `text`: Chunked article content optimized for TTS (≤800 characters) in Tamil - `text_length`: Length of the text chunk in characters - `total_chunks`: Total number of chunks for this article - `language`: Language code - `language_name`: Full language name ### Usage ```python from datasets import load_dataset # Load the dataset dataset = load_dataset("keplersystems/PAARI-Tamil-TTS") # Access examples for chunk in dataset["train"]: print(f"Article {chunk["article_id"]}, Chunk {chunk["chunk_id"]}: {chunk["text"][:100]}...") ``` ### Text Processing The text has been cleaned and processed with: - HTML entity decoding - HTML tag removal - Tamil-specific text normalization - Whitespace normalization - Sentence-boundary aware chunking for TTS optimization ### Data Quality - Articles filtered for completeness (both title and text required) - Language-specific text cleaning applied - Optimal chunk sizes for speech synthesis ### Citation If you use this dataset, please cite: ``` @misc{paari-ta-tts-dataset, title={PAARI Tamil TTS Dataset}, author={People's Archive of Rural India}, howpublished={\url{https://huggingface.co/datasets/keplersystems/PAARI-Tamil-TTS}}, year={2025} } ``` ### Acknowledgments This dataset is derived from the excellent journalism work of the People's Archive of Rural India (PAARI) and Rural India Online. We thank all the journalists, photographers, and contributors who created this valuable content documenting rural Indian life and culture. ### Contact For questions about this dataset, please open an issue on the [dataset repository](https://huggingface.co/datasets/keplersystems/PAARI-Tamil-TTS).