forked from skypilot-org/skypilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresnet_app_storage.yaml
48 lines (39 loc) · 1.03 KB
/
resnet_app_storage.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: resnet-app-storage
workdir: ~/Downloads/tpu
resources:
cloud: aws
instance_type: p3.2xlarge
inputs: {
gs://cloud-tpu-test-dataset/fake_imagenet: 70,
}
outputs: {
resnet-model-dir: 0.1,
}
file_mounts:
/tmp/imagenet:
source: s3://imagenet-bucket
mode: MOUNT
setup: |
. $(conda info --base)/etc/profile.d/conda.sh
pip install --upgrade pip
conda activate resnet
if [ $? -eq 0 ]; then
echo "conda env exists"
else
conda create -n resnet python=3.7 -y
conda activate resnet
conda install cudatoolkit=11.0 -y
pip install tensorflow==2.4.0 pyyaml
cd models
pip install -e .
fi
run: |
. $(conda info --base)/etc/profile.d/conda.sh
conda activate resnet
export XLA_FLAGS='--xla_gpu_cuda_data_dir=/usr/local/cuda/'
python -u models/official/resnet/resnet_main.py --use_tpu=False \
--mode=train --train_batch_size=256 --train_steps=250 \
--iterations_per_loop=125 \
--data_dir=/tmp/imagenet \
--model_dir=resnet-model-dir \
--amp --xla --loss_scale=128