Instructions to use Aloukik21/unreal-misc with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Aloukik21/unreal-misc with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Aloukik21/unreal-misc", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Upload TTS/DiffRhythm/config.json with huggingface_hub
Browse files- TTS/DiffRhythm/config.json +13 -0
TTS/DiffRhythm/config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "diffrhythm",
|
| 3 |
+
"model": {
|
| 4 |
+
"dim": 2048,
|
| 5 |
+
"depth": 16,
|
| 6 |
+
"heads": 32,
|
| 7 |
+
"ff_mult": 4,
|
| 8 |
+
"text_dim": 512,
|
| 9 |
+
"conv_layers": 4,
|
| 10 |
+
"mel_dim": 64,
|
| 11 |
+
"text_num_embeds": 363
|
| 12 |
+
}
|
| 13 |
+
}
|