Initial commit for SER model v1 afbbc05
hardik commited on
How to use MERaLiON/MERaLiON-SER-v1 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="MERaLiON/MERaLiON-SER-v1", trust_remote_code=True) # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("MERaLiON/MERaLiON-SER-v1", trust_remote_code=True, device_map="auto")