Downloads · 30 days
123
100% of all-time downloads
BAAI/GaussianMind
GaussianMind is a audio-text-to-text model from BAAI. Use it for the audio-text-to-text task on the model card, and read the license before you ship it in a product. It is set up for transformers. The card lists the license as apache-2.0.
GaussianMind is an audio-language model developed based on RoboBrain and OpenMOSS Audio.
Downloads · 30 days
123
100% of all-time downloads
All-time downloads
123
Public
Parameters
5.6B
11.3 GB on disk
Likes
1
Public
Click a slice to open those files.
.safetensors11.3 GB · 100%
From the Hugging Face model README
GaussianMind is an audio-language model developed based on RoboBrain and OpenMOSS Audio.
This model is the result of joint research by Hao Tang's team at the School of Computer Science, Peking University, and the Beijing Academy of Artificial Intelligence (BAAI).
The repository includes custom Transformers code. Load the model and processor with trust_remote_code=True:
from transformers import AutoModelForCausalLM, AutoProcessor
model_id = "BAAI/GaussianMind"
processor = AutoProcessor.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
model_id,
trust_remote_code=True,
device_map="auto",
)
GaussianMind builds upon RoboBrain and OpenMOSS Audio. We thank their contributors for making this work possible.