-
Notifications
You must be signed in to change notification settings - Fork 178
/
census-startup.sh
46 lines (34 loc) · 1.86 KB
/
census-startup.sh
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
# Copyright 2017 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#!/bin/bash
### Metadata specification
# All this metadata is pulled from the Compute Engine instance metadata server
# GCS path to training script
TRAINING_SCRIPT_DIR=$(curl http://metadata.google.internal/computeMetadata/v1/instance/attributes/TRAINING_SCRIPT_DIR -H "Metadata-Flavor: Google")
TRAINING_SCRIPT_FILE=$(curl http://metadata.google.internal/computeMetadata/v1/instance/attributes/TRAINING_SCRIPT_FILE -H "Metadata-Flavor: Google")
# GCS path to training and test data
CENSUS_DATA_PATH=$(curl http://metadata.google.internal/computeMetadata/v1/instance/attributes/CENSUS_DATA_PATH -H "Metadata-Flavor: Google")
# GCS path where the model should be stored
MODEL_OUTPUT_PATH=$(curl http://metadata.google.internal/computeMetadata/v1/instance/attributes/MODEL_OUTPUT_PATH -H "Metadata-Flavor: Google")
# Number of hyperparameter search iterations
CV_ITERATIONS=$(curl http://metadata.google.internal/computeMetadata/v1/instance/attributes/CV_ITERATIONS -H "Metadata-Flavor: Google")
### Download training script
gsutil cp "$TRAINING_SCRIPT_DIR/$TRAINING_SCRIPT_FILE" .
### Run training script
python $TRAINING_SCRIPT_FILE \
--census-data-path $CENSUS_DATA_PATH \
--model-output-path $MODEL_OUTPUT_PATH \
--cv-iterations $CV_ITERATIONS
### Shutdown GCE instance
sudo shutdown -h now