task_categories: | |
- token-classification | |
language: | |
- hi | |
- en | |
size_categories: | |
- n<1K | |
tags: | |
- politeness | |
from datasets import load_dataset | |
text= ["thank you very much for the help."#english : polite] | |
text= ["why do you always behave like this?, #English : Impolite"] | |
ds = load_dataset("BrachioLab/multilingual_politeness") |