Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

YAML Metadata Warning:The task_categories "text2text-generation" is not in the official list: text-classification, token-classification, table-question-answering, question-answering, zero-shot-classification, translation, summarization, feature-extraction, text-generation, fill-mask, sentence-similarity, text-to-speech, text-to-audio, automatic-speech-recognition, audio-to-audio, audio-classification, audio-text-to-text, voice-activity-detection, depth-estimation, image-classification, object-detection, image-segmentation, text-to-image, image-to-text, image-to-image, image-to-video, unconditional-image-generation, video-classification, reinforcement-learning, robotics, tabular-classification, tabular-regression, tabular-to-text, table-to-text, multiple-choice, text-ranking, text-retrieval, time-series-forecasting, text-to-video, image-text-to-text, image-text-to-image, image-text-to-video, visual-question-answering, document-question-answering, zero-shot-image-classification, graph-ml, mask-generation, zero-shot-object-detection, text-to-3d, image-to-3d, image-feature-extraction, video-text-to-text, keypoint-detection, visual-document-retrieval, any-to-any, video-to-video, other

Dataset Card for Language Identification Dataset

Dataset Summary

A comprehensive dataset for Indian language identification and text classification. The dataset contains text samples across 10 major Indian languages, making it suitable for developing language identification systems and multilingual NLP applications.

Languages and Distribution

Language Distribution:
Urdu         1000
Hindi        1000
Odia         1000
Tamil        1000
Kannada      1000
Bengali      1000
Gujarati     1000
Malayalam    1000
Marathi      1000
Punjabi       627

Language Details

  1. Hindi (hi): Major language of India, written in Devanagari script
  2. Urdu (ur): Written in Perso-Arabic script
  3. Bengali (bn): Official language of Bangladesh and several Indian states
  4. Gujarati (gu): Official language of Gujarat
  5. Kannada (kn): Official language of Karnataka
  6. Malayalam (ml): Official language of Kerala
  7. Marathi (mr): Official language of Maharashtra
  8. Odia (or): Official language of Odisha
  9. Punjabi (pa): Official language of Punjab
  10. Tamil (ta): Official language of Tamil Nadu and Singapore

Data Fields

  • text: The input text sample
  • language: The language label (one of the 10 languages listed above)

Usage Example

from datasets import load_dataset

# Load the dataset
dataset = load_dataset("processvenue/language_identification")

# Access splits
train_data = dataset['train']
validation_data = dataset['validation']
test_data = dataset['test']

# Example usage
print(f"Sample text: {train_data[0]['text']}")
print(f"Language: {train_data[0]['language']}")

Applications

  1. Language Identification Systems

    • Automatic language detection
    • Text routing in multilingual systems
    • Content filtering by language
  2. Machine Translation

    • Language-pair identification
    • Translation system selection
  3. Content Analysis

    • Multilingual content categorization
    • Language-specific content analysis

Citation

If you use this dataset in your research, please cite:

@dataset{language_identification_2024,
  author = {ProcessVenue Team},
  title = {Multilingual Headlines Language Identification Dataset},
  year = {2024},
  publisher = {Hugging Face},
  url = {https://huggingface.co/datasets/processvenue/language-identification}
}

###reference

@misc{disisbig_news_datasets,
author = {Gaurav},
title = {Indian Language News Datasets},
year = {2019},
publisher = {Kaggle},
url = {https://www.kaggle.com/datasets/disisbig/}
}
Downloads last month
44

Collection including Process-Venue/Language_Identification_v1