10 lines
327 B
PowerShell
10 lines
327 B
PowerShell
$ErrorActionPreference = "Stop"
|
|
$env:PYTHONDONTWRITEBYTECODE = "1"
|
|
|
|
python scripts/download_hf_range.py qwen3-4b-instruct-2507 `
|
|
--local-dir models/base/qwen3-4b-instruct-2507 `
|
|
--allow-file model-00001-of-00003.safetensors `
|
|
--allow-file model-00002-of-00003.safetensors `
|
|
--chunk-size 16mb `
|
|
--retries 20
|