8 lines
210 B
Python
8 lines
210 B
Python
from huggingface_hub import snapshot_download
|
|
|
|
print(snapshot_download(
|
|
repo_id="nvidia/Qwen3.8-Flash-Next-NVFP4",
|
|
revision="fc694b54fb0174e0913e6adf86691ef85a4ead47",
|
|
max_workers=4,
|
|
), flush=True)
|