Skip to content
Prev Previous commit
Next Next commit
fix
Signed-off-by: Sun, Xuehao <[email protected]>
  • Loading branch information
XuehaoSun committed Aug 15, 2024
commit 42a0e556645489b4eca8fedb8ff3e34e9f82edef
4 changes: 2 additions & 2 deletions .azure-pipelines/scripts/models/env_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ if [[ "${fwk_ver}" != "latest" ]]; then
pip install intel-tensorflow==${fwk_ver}
fi
elif [[ "${framework}" == "pytorch" ]]; then
pip install torch==${fwk_ver} -f https://download.pytorch.org/whl/torch_stable.html
pip install torchvision==${torch_vision_ver} -f https://download.pytorch.org/whl/torch_stable.html
pip install torch==${fwk_ver} -f https://download.pytorch.org/whl/cpu
pip install torchvision==${torch_vision_ver} -f https://download.pytorch.org/whl/cpu
elif [[ "${framework}" == "onnxrt" ]]; then
pip install onnx==1.15.0
pip install onnxruntime==${fwk_ver}
Expand Down