-
Notifications
You must be signed in to change notification settings - Fork 442
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade Tensorflow version to v2.13.0 #2201
Upgrade Tensorflow version to v2.13.0 #2201
Conversation
@tenzen-y Did you try locally? The tests are failing with latest tensorflow |
Related failure is only https://github.com/kubeflow/katib/actions/runs/5842762636/job/15844213888?pr=2201#step:4:635
I will fix this error. |
710a0f4
to
915dabe
Compare
17af2d8
to
9769db8
Compare
@@ -1,4 +1,5 @@ | |||
grpcio>=1.41.1 | |||
googleapis-common-protos==1.6.0 | |||
cython>=0.29.24 | |||
tensorflow==2.11.0 | |||
tensorflow==2.13.0 | |||
protobuf<=3.20.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This requirement is for the reason the same as #2140 (comment).
9769db8
to
df8b4ba
Compare
@@ -2,4 +2,5 @@ psutil==5.9.4 | |||
rfc3339>=6.2 | |||
grpcio>=1.41.1 | |||
googleapis-common-protos==1.6.0 | |||
tensorflow==2.11.0 | |||
tensorflow==2.13.0 | |||
protobuf<=3.20.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This requirement is for the reason the same as #2140 (comment).
9a84472
to
489ee6b
Compare
for tensor in event_accumulator.Tensors(tag): | ||
ml = api_pb2.MetricLog( | ||
time_stamp=rfc3339.rfc3339(datetime.fromtimestamp(wall_time)), | ||
time_stamp=rfc3339.rfc3339(datetime.fromtimestamp(tensor.wall_time)), | ||
metric=api_pb2.Metric( | ||
name=m, | ||
value=str(tf.make_ndarray(tensor)) | ||
value=str(tf.make_ndarray(tensor.tensor_proto)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since Tensorboard v2.12.0, the 'TensorEvent' typed was changed from the namedtuple to the dataclass.
Signed-off-by: Yuki Iwai <yuki.iwai.tz@gmail.com>
489ee6b
to
04b6c53
Compare
@johnugeorge I fixed the errors. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @tenzen-y!
/lgtm
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: andreyvelich, tenzen-y The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Signed-off-by: Yuki Iwai <yuki.iwai.tz@gmail.com>
…#2216) Signed-off-by: Yuki Iwai <yuki.iwai.tz@gmail.com>
What this PR does / why we need it:
I upgraded the Tensorflow version to v2.13.0.
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #
Checklist: