Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
csv
Sub-tasks:
sentiment-analysis
Languages:
Nepali
Size:
10K - 100K
License:
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- ne
|
| 4 |
+
pretty_name: Nepali Sentiment Dataset
|
| 5 |
+
tags:
|
| 6 |
+
- sentiment-analysis
|
| 7 |
+
- text-classification
|
| 8 |
+
- nepali
|
| 9 |
+
license: mit
|
| 10 |
+
task_categories:
|
| 11 |
+
- text-classification
|
| 12 |
+
task_ids:
|
| 13 |
+
- sentiment-analysis
|
| 14 |
+
dataset_info:
|
| 15 |
+
features:
|
| 16 |
+
- name: text
|
| 17 |
+
dtype: string
|
| 18 |
+
- name: label
|
| 19 |
+
dtype: class_label
|
| 20 |
+
names: [negative, neutral, positive]
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
# Nepali Sentiment Dataset (Devanagari)
|
| 24 |
+
|
| 25 |
+
## Dataset Summary
|
| 26 |
+
This dataset contains Nepali sentences in Devanagari script labeled with sentiment classes: **Negative**, **Neutral**, and **Positive**.
|
| 27 |
+
|
| 28 |
+
## Supported Tasks
|
| 29 |
+
- Sentiment analysis / text classification
|
| 30 |
+
|
| 31 |
+
## Languages
|
| 32 |
+
- Nepali (`ne`) — Devanagari script
|
| 33 |
+
|
| 34 |
+
## Dataset Structure
|
| 35 |
+
|
| 36 |
+
### Data Instances
|
| 37 |
+
Each example contains:
|
| 38 |
+
- `text`: Nepali sentence (string)
|
| 39 |
+
- `label`: one of {negative, neutral, positive}
|
| 40 |
+
|
| 41 |
+
Example:
|
| 42 |
+
```json
|
| 43 |
+
{"text":"यो फिल्म एकदम राम्रो लाग्यो", "label":"positive"}
|