Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To accelerate research, we are providing access to pretrained model checkpoints

We also provide a [demo page](https://yummy-fir-7a4.notion.site/dia) comparing our model to [ElevenLabs Studio](https://elevenlabs.io/studio) and [Sesame CSM-1B](https://github.com/SesameAILabs/csm).

- We have a ZeroGPU Space running! Try it now [here](https://huggingface.co/spaces/nari-labs/Dia-1.6B-0626). Thanks to the HF team for the support :)
- We have a ZeroGPU Space running! Try it now [here](https://huggingface.co/spaces/nari-labs/Dia-1.6B). Thanks to the HF team for the support :)
- Join our [discord server](https://discord.gg/bJq6vjRRKv) for community support and access to new features.
- Play with a larger version of Dia: generate fun conversations, remix content, and share with friends. 🔮 Join the [waitlist](https://tally.so/r/meokbo) for early access.

Expand Down Expand Up @@ -96,6 +96,10 @@ cd dia

# Optionally
python -m venv .venv && source .venv/bin/activate
# On Windows: python -m venv .venv; ./.venv/Scripts/activate

# Optional: To allow GPU utilization, we must specify installation of CUDA-enabled wheels of torch libraries
# pip install torch==2.6.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/cu126

# Install dia
pip install -e .
Expand All @@ -106,6 +110,9 @@ Or you can install without cloning.
```bash
# Install directly from GitHub
pip install git+https://github.com/nari-labs/dia.git

# Optional: To allow GPU utilization, we must force installation of CUDA-enabled wheels of torch libraries
# pip install torch==2.6.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/cu126 --force-reinstall
```

Now, run some examples.
Expand Down