example-submission / scripts /model_download.bash
jessehostetler's picture
Fix docker image not working in kubernetes. Fix int width not set in input scherma. Add makefile and test image.
be5bf87
raw
history blame
274 Bytes
mkdir -p "models/microsoft/resnet-18"
python - <<'PY'
from huggingface_hub import snapshot_download
snapshot_download(
repo_id="microsoft/resnet-18",
local_dir="models/microsoft/resnet-18",
local_dir_use_symlinks=False # copies files; safer for containers
)
PY