Skip to content
This repository was archived by the owner on Jul 7, 2023. It is now read-only.

Upgrade Cloud ML version to tf@1.12 #1344

Merged
merged 1 commit into from
Jan 7, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tensor2tensor/utils/cloud_mlengine.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@
FLAGS = tf.flags.FLAGS

CONSOLE_URL = "https://console.cloud.google.com/mlengine/jobs/"
RUNTIME_VERSION = "1.9"
RUNTIME_VERSION = "1.12"


class Gcloud(object):
"""gcloud command strings."""
# Note these can be modified by set_versions
VM_VERSION = "tf-1-9"
TPU_VERSION = "1.9"
VM_VERSION = "tf-1-12"
TPU_VERSION = "1.12"

@classmethod
def set_versions(cls, vm, tpu):
Expand Down