hse-python-assistant/app/utils/download_model.sh

10 lines
296 B
Bash
Raw Normal View History

2024-10-19 09:20:20 +00:00
#!/bin/bash
if [ -z "$1" ]; then
echo "Usage: $0 <destination_path>"
exit 1
fi
destination_path=$1
rsync -avzP --ignore-times --no-compress -e "ssh -i app/utils/transfer-key -p 60213" main@46.188.39.143:/home/main/downloads/qwen2.5-7b-instruct-hse-fine-tuned.tar.gz "$destination_path"