Datasets:

You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

๐Ÿ‡น๐Ÿ‡ฏ Tajik Sentiment Lexicon

A comprehensive sentiment lexicon for the Tajik language, containing 3,517 words annotated with polarity (positive/negative) and intensity scores.

๐Ÿ“– Description

This dataset provides a curated list of Tajik words with sentiment annotations:

  • polarity: either ะฟะพะทะธั‚ะธะฒ (positive) or ะฝะตะณะฐั‚ะธะฒ (negative)
  • intensity: a floating-point score from -1.0 (most negative) to +1.0 (most positive), indicating the strength of sentiment.

The lexicon was created by merging two high-quality word lists: a positive dictionary and a negative dictionary, each with intensity ratings. Russian translations are included for each word, making this resource useful for cross-lingual research.

Applications

  • Sentiment analysis for Tajik text
  • Opinion mining and emotion detection
  • Cross-lingual transfer learning (Tajik-Russian)
  • Lexicographic studies

๐Ÿ“Š Dataset Statistics

Overall Metrics

Metric Value
Total Words 3,517
Positive Words 2,012
Negative Words 1,505
Avg. Positive Intensity 0.766
Avg. Negative Intensity -0.727

Intensity Distribution (absolute values)

Intensity Range (abs) Count
0.0-0.2 39
0.2-0.4 53
0.4-0.6 802
0.6-0.8 1658
0.8-1.0 965

๐Ÿ“ Data Format

Each record is a JSON object with the following fields:

Field Type Description Example
tajik string The word in Tajik (Cyrillic script) "ั…ัƒะฑ"
translation string Russian translation(s) "ั…ะพั€ะพัˆะธะน, ะดะพะฑั€ั‹ะน"
polarity string Sentiment polarity: ะฟะพะทะธั‚ะธะฒ or ะฝะตะณะฐั‚ะธะฒ ะฟะพะทะธั‚ะธะฒ
intensity float Intensity score from -1.0 to +1.0 0.9

Example Record

{
  "tajik": "ั…ัƒะฑ",
  "translation": "ั…ะพั€ะพัˆะธะน, ะดะพะฑั€ั‹ะน",
  "polarity": "ะฟะพะทะธั‚ะธะฒ",
  "intensity": 0.9
}

๐Ÿš€ Usage

Load with ๐Ÿค— Datasets

from datasets import load_dataset

dataset = load_dataset("TajikNLPWorld/tajik-sentiment-lexicon")
train_data = dataset["train"]

# Filter positive words
positive = train_data.filter(lambda x: x["polarity"] == "ะฟะพะทะธั‚ะธะฒ")
print(f"Positive words: {len(positive)}")

Use with pandas

import pandas as pd
df = dataset["train"].to_pandas()
df.head()

๐Ÿ“œ License

Apache License 2.0

๐Ÿค Citation

@dataset{tajik_sentiment_lexicon,
    title = {Tajik Sentiment Lexicon},
    author = {TajikNLPWorld},
    year = {2025},
    publisher = {Hugging Face},
    url = {https://huggingface.co/datasets/TajikNLPWorld/tajik-sentiment-lexicon}
}

Generated with โค๏ธ for the Tajik NLP community

Downloads last month
14