Instructions to use xmj2002/hubert-base-ch-speech-emotion-recognition with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use xmj2002/hubert-base-ch-speech-emotion-recognition with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("audio-classification", model="xmj2002/hubert-base-ch-speech-emotion-recognition")# Load model directly from transformers import AutoProcessor, HubertForSpeechClassification processor = AutoProcessor.from_pretrained("xmj2002/hubert-base-ch-speech-emotion-recognition") model = HubertForSpeechClassification.from_pretrained("xmj2002/hubert-base-ch-speech-emotion-recognition", device_map="auto") - Notebooks
- Google Colab
- Kaggle
数据集、loss的具体配置
#2
by HanMK - opened
您好,我在使用您已提供的配置参数进行复现时,loss和accuracy和您的结果都有一些差距。请问可以提供一下您的训练集和测试集,以及Loss的具体配置吗?
HanMK changed discussion title from 数据集、Loss的具体配置 to 数据集、loss的具体配置
a