Emotional Dataset Chile
收藏资源简介:
该数据集包含智利西班牙语的情感文本样本,用于连续回归任务,标注了情感的正负性(valence)和强度(arousal)。
This dataset contains emotional text samples in Chilean Spanish, designed for continuous regression tasks, and is annotated with the valence and arousal of emotions.
Emotional Dataset Chile 数据集概述
基本信息
- 语言: 西班牙语 (es)
- 地区: 智利 (chile)
- 许可协议: MIT
- 标注方式: 人工标注 (manual)
- 单语/多语: 单语 (monolingual)
任务与标签
- 任务类别: 文本分类 (text-classification)
- 具体任务: 情感分类 (sentiment-classification)
- 标签类型:
- 效价 (valence): 情感正负程度 (-1.0 到 1.0)
- 唤醒度 (arousal): 情感强度 (-1.0 到 1.0)
数据集内容
- 数据格式: JSON Lines (.jsonl)
- 文件组成:
valencia_dataset.jsonl: 含效价标签的文本样本arousal_dataset.jsonl: 含唤醒度标签的文本样本
- 样本示例: json { "texto": "Hoy terminé mi proyecto, estoy eufórico.", "arousal": 0.91 }
使用方式
通过HuggingFace加载
python from datasets import load_dataset valencia_ds = load_dataset("cypher-256/emotional-dataset-chile", "valencia", trust_remote_code=True) arousal_ds = load_dataset("cypher-256/emotional-dataset-chile", "arousal", trust_remote_code=True)
本地加载
-
克隆仓库: bash git clone https://github.com/cypher-256/emotional-dataset-chile
-
加载数据: python from datasets import load_dataset valencia_ds = load_dataset("json", data_files="emotional-dataset-chile/valencia_dataset.jsonl", split="train") arousal_ds = load_dataset("json", data_files="emotional-dataset-chile/arousal_dataset.jsonl", split="train")
开发背景
- 用途: 多任务训练实验 (BERT + LoRA)
- 文本特征: 非正式的智利西班牙语




