Navjeet – Fine-tuned Orpheus 3B TTS

This model converts text into speech using the Orpheus 3B architecture fine-tuned with Unsloth.

🧠 How to use

from transformers import pipeline
import os

# Set the Hugging Face token as an environment variable if you have one
# os.environ["HF_TOKEN"] = "YOUR_HF_TOKEN" # Replace with your token

tts = pipeline("text-to-speech", model="navneetjais/Navjeet")
audio = tts("Namaste, yah Navjeet bol raha hai!")
print(audio)
with open("output.wav", "wb") as f:
    f.write(audio["audio"])

from IPython.display import Audio
Audio(audio["audio"], rate=audio["sampling_rate"])
Downloads last month
136
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ 1 Ask for provider support

Model tree for navneetjais/Navjeet

Finetuned
(85)
this model

Dataset used to train navneetjais/Navjeet