Multi-domain Marathi sentiment analysis dataset with 60,000 samples across 4 domains, labeled for positive, negative, and neutral sentiment.
import pandas as pd
df = pd.read_csv("MahaSent-MD.csv")
print(df.groupby("label").size())
# Output: negative 20000, neutral 20000, positive 20000| Field | Type | Description |
|---|---|---|
| sentence | string | Marathi text sentence |
| label | string | Sentiment label: positive, negative, or neutral |
| domain | string | Source domain (e.g., news, social media, reviews, general) |