File tree Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ prepare-pytest:
110
110
pip install -r cmd/suggestion/hyperband/v1beta1/requirements.txt
111
111
pip install -r cmd/suggestion/nas/enas/v1beta1/requirements.txt
112
112
pip install -r cmd/suggestion/nas/darts/v1beta1/requirements.txt
113
+ pip install -r cmd/suggestion/pbt/v1beta1/requirements.txt
113
114
pip install -r cmd/earlystopping/medianstop/v1beta1/requirements.txt
114
115
pip install -r cmd/metricscollector/v1beta1/tfevent-metricscollector/requirements.txt
115
116
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ workflows:
40
40
- cmd/suggestion/hyperopt/v1beta1/*
41
41
- cmd/suggestion/nas/darts/v1beta1/*
42
42
- cmd/suggestion/nas/enas/v1beta1/*
43
+ - cmd/suggestion/pbt/v1beta1/*
43
44
- cmd/suggestion/skopt/v1beta1/*
44
45
- cmd/ui/v1beta1/*
45
46
- examples/v1beta1/*
Original file line number Diff line number Diff line change @@ -105,6 +105,9 @@ docker build --platform "linux/$ARCH" -t "${REGISTRY}/suggestion-enas:${TAG}" -f
105
105
echo -e " \nBuilding DARTS suggestion...\n"
106
106
docker build --platform " linux/$ARCH " -t " ${REGISTRY} /suggestion-darts:${TAG} " -f ${CMD_PREFIX} /suggestion/nas/darts/${VERSION} /Dockerfile .
107
107
108
+ echo -e " \nBuilding PBT suggestion...\n"
109
+ docker build --platform " linux/$ARCH " -t " ${REGISTRY} /suggestion-pbt:${TAG} " -f ${CMD_PREFIX} /suggestion/pbt/${VERSION} /Dockerfile .
110
+
108
111
# Early stopping images
109
112
echo -e " \nBuilding early stopping images...\n"
110
113
136
139
echo -e " \nBuilding PyTorch CIFAR-10 CNN training container example for DARTS...\n"
137
140
docker build --platform linux/amd64 -t " ${REGISTRY} /darts-cnn-cifar10:${TAG} " -f examples/${VERSION} /trial-images/darts-cnn-cifar10/Dockerfile .
138
141
142
+ echo -e " \nBuilding dynamic learning rate training container example for PBT...\n"
143
+ docker build --platform linux/amd64 -t " ${REGISTRY} /simple-pbt:${TAG} " -f examples/${VERSION} /trial-images/pbt/Dockerfile .
144
+
139
145
fi
140
146
141
147
echo -e " \nAll Katib images with ${TAG} tag have been built successfully!\n"
Original file line number Diff line number Diff line change @@ -80,6 +80,9 @@ docker push "${REGISTRY}/suggestion-enas:${TAG}"
80
80
echo -e " \nPushing DARTS suggestion...\n"
81
81
docker push " ${REGISTRY} /suggestion-darts:${TAG} "
82
82
83
+ echo -e " \nPushing PBT suggestion...\n"
84
+ docker push " ${REGISTRY} /suggestion-pbt:${TAG} "
85
+
83
86
# Early stopping images
84
87
echo -e " \nPushing early stopping images...\n"
85
88
@@ -107,4 +110,7 @@ docker push "${REGISTRY}/enas-cnn-cifar10-cpu:${TAG}"
107
110
echo -e " \nPushing PyTorch CIFAR-10 CNN training container example for DARTS...\n"
108
111
docker push " ${REGISTRY} /darts-cnn-cifar10:${TAG} "
109
112
113
+ echo -e " \nPushing dynamic learning rate training container example for PBT...\n"
114
+ docker push " ${REGISTRY} /simple-pbt:${TAG} "
115
+
110
116
echo -e " \nAll Katib images with ${TAG} tag have been pushed successfully!\n"
You can’t perform that action at this time.
0 commit comments