You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

Ekodi Bambara TTS

Model for Bambara (Bamanankan) text-to-speech.

Usage

from transformers import VitsModel, AutoTokenizer
import torch

model = VitsModel.from_pretrained("ynnov/ekodi-bambara-tts")
tokenizer = AutoTokenizer.from_pretrained("ynnov/ekodi-bambara-tts")

text = "I ni ce"  # Hello in Bambara
inputs = tokenizer(text, return_tensors="pt")
with torch.no_grad():
    output = model(**inputs)
waveform = output.waveform[0].numpy()
# waveform is 16kHz float32 audio

Training data

  • Bambara_AudioSynthetique_42K_V3
  • Custom Bambara voice recordings

Project

Downloads last month
13
Safetensors
Model size
36.3M params
Tensor type
F32
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Space using ynnov/ekodi-bambara-tts 1