Initial commit f2d59ed
nobody commited on
How to use AImused/dipps41 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-to-speech", model="AImused/dipps41") # Load model directly
from transformers import AutoModelForSeq2SeqLM
model = AutoModelForSeq2SeqLM.from_pretrained("AImused/dipps41", dtype="auto")