Spaces:
Sleeping
Sleeping
File size: 336 Bytes
ea93266 | 1 2 3 4 5 6 7 8 9 10 | #!/bin/bash
# Source and destination paths
source_file="models/llama-2-7b-chat.ggmlv3.q4_0.bin"
destination_host="walter@katana2"
destination_path="/home/walter/repos/translation_game/models"
# rsync command with options
rsync -avz --partial --progress --append-verify -L -e "ssh" "$source_file" "$destination_host:$destination_path"
|