7 lines
195 B
Bash
7 lines
195 B
Bash
|
#!/bin/bash
|
||
|
set -eux
|
||
|
|
||
|
aws s3 sync --exclude '*/dataset/*' --exclude '*/cache/*' --exclude 'iteration_*.pth' --exclude '*_optim.pth' "${S3_MODEL_DIR}" ./model
|
||
|
|
||
|
genienlp kfserver --path ./model $@
|