--- language: zh tags: - chinese - emotion - classification license: mit --- # Chinese Emotion Classification Model 这是一个中文情感分类模型,可以将文本分类为三种情感: - 快乐 - 愤怒 - 悲伤 ## 使用方法 ```python from transformers import pipeline classifier = pipeline("text-classification", model="WJL110/chinese-emotion-classifier") result = classifier("今天真是太开心了!") print(result) ```