16 lines
612 B
Bash
16 lines
612 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
if [ -d "$GLINER_MODEL_PATH" ] && find "$GLINER_MODEL_PATH" -type f | grep -q .; then
|
|
echo "GLiNER model already present at $GLINER_MODEL_PATH"
|
|
exit 0
|
|
fi
|
|
|
|
echo "Downloading GLiNER model to $GLINER_MODEL_PATH"
|
|
mkdir -p "$GLINER_MODEL_PATH"
|
|
curl -sL "https://huggingface.co/api/models/${GLINER_MODEL_ID}" | jq -r '.siblings[].rfilename' | while read -r file; do
|
|
target="${GLINER_MODEL_PATH}/${file}"
|
|
mkdir -p "$(dirname "$target")"
|
|
echo "Downloading ${file}"
|
|
curl -sL "https://huggingface.co/${GLINER_MODEL_ID}/resolve/main/${file}" -o "$target"
|
|
done
|