代码拉取完成,页面将自动刷新
#!/bin/bash
if [[ -z "${HF_MODEL_ID}" ]]; then
echo "HF_MODEL_ID must be set"
exit 1
fi
export MODEL_ID="${HF_MODEL_ID}"
if [[ -n "${HF_MODEL_REVISION}" ]]; then
export REVISION="${HF_MODEL_REVISION}"
fi
if ! command -v nvidia-smi &> /dev/null; then
echo "Error: 'nvidia-smi' command not found."
exit 1
fi
if [[ -z "${CUDA_COMPUTE_CAP}" ]]
then
compute_cap=$(nvidia-smi --query-gpu=compute_cap --format=csv | sed -n '2p' | sed 's/\.//g')
else
compute_cap=$CUDA_COMPUTE_CAP
fi
if [[ ${compute_cap} -eq 75 ]]
then
text-embeddings-router-75 --port 8080 --json-output
elif [[ ${compute_cap} -ge 80 && ${compute_cap} -lt 90 ]]
then
text-embeddings-router-80 --port 8080 --json-output
elif [[ ${compute_cap} -eq 90 ]]
then
text-embeddings-router-90 --port 8080 --json-output
else
echo "cuda compute cap ${compute_cap} is not supported"; exit 1
fi
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。