๐น๐ฏ 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