Skip to content

Commit

Permalink
Updated job_state for Vertex (#4416)
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 405761816
(cherry picked from commit a0a21df)

Co-authored-by: tfx-team <tensorflow-extended-nonhuman@googlegroups.com>
  • Loading branch information
jay90099 and tfx-copybara authored Oct 29, 2021
1 parent 907cf0d commit ee3276b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ but other *untested* combinations may also work.
tfx | apache-beam[gcp] | ml-metadata | pyarrow | tensorflow | tensorflow-data-validation | tensorflow-metadata | tensorflow-model-analysis | tensorflow-serving-api | tensorflow-transform | tfx-bsl
------------------------------------------------------------------------- | ---------------- | ----------- | ------- | ----------------- | -------------------------- | ------------------- | ------------------------- | ---------------------- | -------------------- | -------
[GitHub master](https://github.com/tensorflow/tfx/blob/master/RELEASE.md) | 2.32.0 | 1.3.0 | 2.0.0 | nightly (1.x/2.x) | 1.3.0 | 1.2.0 | 0.34.1 | 2.6.0 | 1.3.0 | 1.3.0
1.3.2 | 2.32.0 | 1.3.0 | 2.0.0 | 1.15.0 / 2.6.0 | 1.3.0 | 1.2.0 | 0.34.1 | 2.6.0 | 1.3.0 | 1.3.0
1.3.1 | 2.32.0 | 1.3.0 | 2.0.0 | 1.15.0 / 2.6.0 | 1.3.0 | 1.2.0 | 0.34.1 | 2.6.0 | 1.3.0 | 1.3.0
1.3.0 | 2.32.0 | 1.3.0 | 2.0.0 | 1.15.0 / 2.6.0 | 1.3.0 | 1.2.0 | 0.34.1 | 2.6.0 | 1.3.0 | 1.3.0
1.2.0 | 2.31.0 | 1.2.0 | 2.0.0 | 1.15.0 / 2.5.0 | 1.2.0 | 1.2.0 | 0.33.0 | 2.5.1 | 1.2.0 | 1.2.0
Expand Down
4 changes: 2 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Version 1.3.1
# Version 1.3.2

## Major Features and Improvements

Expand All @@ -18,7 +18,7 @@

## Bug Fixes and Other Changes

* Fixed Vertex Pusher by passing enable_vertex flag for deploying model.
* Fixed endless waiting for Vertex Trainer.

## Documentation Updates

Expand Down
7 changes: 3 additions & 4 deletions tfx/extensions/google_cloud_ai_platform/runner_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,9 @@
from google.cloud.aiplatform import initializer
from google.cloud.aiplatform.compat.types import endpoint
from google.cloud.aiplatform_v1.services.endpoint_service import (
client as endpoint_service_client,
)
from google.cloud.aiplatform_v1beta1.types.custom_job import CustomJob
from google.cloud.aiplatform_v1beta1.types.job_state import JobState
client as endpoint_service_client)
from google.cloud.aiplatform_v1.types.custom_job import CustomJob
from google.cloud.aiplatform_v1.types.job_state import JobState
from googleapiclient import errors
import httplib2
import tensorflow as tf
Expand Down
4 changes: 2 additions & 2 deletions tfx/extensions/google_cloud_ai_platform/training_clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@

from absl import logging
from google.cloud.aiplatform import gapic
from google.cloud.aiplatform_v1beta1.types.custom_job import CustomJob
from google.cloud.aiplatform_v1beta1.types.job_state import JobState
from google.cloud.aiplatform_v1.types.custom_job import CustomJob
from google.cloud.aiplatform_v1.types.job_state import JobState
from googleapiclient import discovery

from tfx import types
Expand Down
2 changes: 1 addition & 1 deletion tfx/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"""Contains the version string of TFX."""

# Note that setup.py uses this version.
__version__ = '1.3.1'
__version__ = '1.3.2'

0 comments on commit ee3276b

Please sign in to comment.