Audio-to-Audio
Moshi
Safetensors
Hindi
speech-to-speech
hindi
conversational-ai
audio
full-duplex
duplex-dialogue
indian-languages
Instructions to use JoshTalksAI/Human-1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Moshi
How to use JoshTalksAI/Human-1 with Moshi:
# pip install moshi # Run the interactive web server python -m moshi.server --hf-repo "JoshTalksAI/Human-1" # Then open https://localhost:8998 in your browser
# pip install moshi import torch from moshi.models import loaders # Load checkpoint info from HuggingFace checkpoint = loaders.CheckpointInfo.from_hf_repo("JoshTalksAI/Human-1") # Load the Mimi audio codec mimi = checkpoint.get_mimi(device="cuda") mimi.set_num_codebooks(8) # Encode audio (24kHz, mono) wav = torch.randn(1, 1, 24000 * 10) # [batch, channels, samples] with torch.no_grad(): codes = mimi.encode(wav.cuda()) decoded = mimi.decode(codes) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -27,7 +27,7 @@ Hindi-Moshi is the first full-duplex spoken dialogue model for Hindi, built by a
|
|
| 27 |
|
| 28 |
| | |
|
| 29 |
|---|---|
|
| 30 |
-
| **Developed by** | Bhaskar Singh, Shobhit
|
| 31 |
| **Base model** | [kyutai/moshiko-pytorch-bf16](https://huggingface.co/kyutai/moshiko-pytorch-bf16) |
|
| 32 |
| **Language** | Hindi (hi) |
|
| 33 |
| **Model type** | Full-duplex speech-to-speech dialogue |
|
|
@@ -196,7 +196,7 @@ The model is intended for research in full-duplex spoken dialogue systems for Hi
|
|
| 196 |
```bibtex
|
| 197 |
@article{hindimoshi2026,
|
| 198 |
title = {A Full-Duplex Conversational Modelling Framework in Hindi using Real-World Conversations},
|
| 199 |
-
author = {Bhaskar Singh and Shobhit
|
| 200 |
year = {2026},
|
| 201 |
institution = {JoshTalks}
|
| 202 |
}
|
|
|
|
| 27 |
|
| 28 |
| | |
|
| 29 |
|---|---|
|
| 30 |
+
| **Developed by** | Bhaskar Singh, Shobhit Banga, Pranav Sharma — [JoshTalks](https://joshtalks.com) |
|
| 31 |
| **Base model** | [kyutai/moshiko-pytorch-bf16](https://huggingface.co/kyutai/moshiko-pytorch-bf16) |
|
| 32 |
| **Language** | Hindi (hi) |
|
| 33 |
| **Model type** | Full-duplex speech-to-speech dialogue |
|
|
|
|
| 196 |
```bibtex
|
| 197 |
@article{hindimoshi2026,
|
| 198 |
title = {A Full-Duplex Conversational Modelling Framework in Hindi using Real-World Conversations},
|
| 199 |
+
author = {Bhaskar Singh and Shobhit Banga and Pranav Sharma},
|
| 200 |
year = {2026},
|
| 201 |
institution = {JoshTalks}
|
| 202 |
}
|