File size: 335 Bytes
2d20d51
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Place this snippet on top of your Inference Code to download the model

```
from huggingface_hub import snapshot_download

model_path = "..." # The local directory to save downloaded checkpoint
snapshot_download(
    "radna/LTX-Video-Minimal",
    local_dir=model_path,
    local_dir_use_symlinks=False,
    repo_type="model",
)
```