facebook/voxpopuli
Viewer • Updated • 1.26M • 19.3k • 150
How to use SHENMU007/neunit_BASE_V4 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-to-audio", model="SHENMU007/neunit_BASE_V4") # Load model directly
from transformers import AutoProcessor, AutoModelForTextToSpectrogram
processor = AutoProcessor.from_pretrained("SHENMU007/neunit_BASE_V4")
model = AutoModelForTextToSpectrogram.from_pretrained("SHENMU007/neunit_BASE_V4")# Load model directly
from transformers import AutoProcessor, AutoModelForTextToSpectrogram
processor = AutoProcessor.from_pretrained("SHENMU007/neunit_BASE_V4")
model = AutoModelForTextToSpectrogram.from_pretrained("SHENMU007/neunit_BASE_V4")This model is a fine-tuned version of microsoft/speecht5_tts on the VoxPopuli dataset.
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-audio", model="SHENMU007/neunit_BASE_V4")