Instructions to use smthem/ltx-2-19b-dev-diffusers-test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use smthem/ltx-2-19b-dev-diffusers-test with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("smthem/ltx-2-19b-dev-diffusers-test", 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 config.json
Browse files- connectors/config.json +19 -0
connectors/config.json
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "LTX2TextConnectors",
|
| 3 |
+
"_diffusers_version": "0.36.0",
|
| 4 |
+
"audio_connector_attention_head_dim": 128,
|
| 5 |
+
"audio_connector_num_attention_heads": 30,
|
| 6 |
+
"audio_connector_num_layers": 2,
|
| 7 |
+
"audio_connector_num_learnable_registers": 128,
|
| 8 |
+
"caption_channels": 3840,
|
| 9 |
+
"causal_temporal_positioning": false,
|
| 10 |
+
"connector_rope_base_seq_len": 4096,
|
| 11 |
+
"rope_double_precision": true,
|
| 12 |
+
"rope_theta": 10000.0,
|
| 13 |
+
"rope_type": "split",
|
| 14 |
+
"text_proj_in_factor": 49,
|
| 15 |
+
"video_connector_attention_head_dim": 128,
|
| 16 |
+
"video_connector_num_attention_heads": 30,
|
| 17 |
+
"video_connector_num_layers": 2,
|
| 18 |
+
"video_connector_num_learnable_registers": 128
|
| 19 |
+
}
|