Signed-off-by: Xiaowei Jiang <xwjiang2010@gmail.com> Co-authored-by: Cyrus Leung <cyrus.tl.leung@gmail.com> Co-authored-by: Roger Wang <ywang@roblox.com>
15 lines
414 B
Bash
15 lines
414 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
set -o pipefail
|
|
|
|
(which wget && which curl) || (apt-get update && apt-get install -y wget curl)
|
|
|
|
# aws s3 sync s3://air-example-data-2/vllm_opensource_llava/ images/
|
|
mkdir -p images
|
|
cd images
|
|
wget https://air-example-data-2.s3.us-west-2.amazonaws.com/vllm_opensource_llava/stop_sign.jpg
|
|
wget https://air-example-data-2.s3.us-west-2.amazonaws.com/vllm_opensource_llava/cherry_blossom.jpg
|
|
|
|
cd -
|