-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
[Sample] Improve tfx oss sample #2360
[Sample] Improve tfx oss sample #2360
Conversation
/retest |
/retest |
3 similar comments
/retest |
/retest |
/retest |
/retest |
/retest |
2 similar comments
/retest |
/retest |
/retest |
/retest |
…mprove-tfx-oss-sample
test/sample-test/run_sample_test.py
Outdated
self._test_args['pipeline-root'] = os.path.join(self._test_args['output'], 'tfx_taxi_simple') | ||
self._test_args['pipeline-root'] = os.path.join( | ||
self._test_args['output'], | ||
'tfx_taxi_simple_' + str(int(time.time()))) |
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.
You might also use the kfp.dsl.RUN_ID_PLACEHOLDER
.
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.
Good idea. I think that's better
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.
@Ark-kun Done.
/lgtm |
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Ark-kun 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 |
* Pass request headers to predict method (kubeflow#2284) * Pass inference request headers to model's predict method Signed-off-by: Andrews Arokiam <andrews.arokiam@ideas2it.com> * Fixed liniting error Signed-off-by: Andrews Arokiam <andrews.arokiam@ideas2it.com> * Added changes for passing headers in explainer Signed-off-by: Andrews Arokiam <andrews.arokiam@ideas2it.com> * Changes for explainer and changed field name to payload from request Signed-off-by: Andrews Arokiam <andrews.arokiam@ideas2it.com> * Fixed import errors and added header in preprocess Signed-off-by: Andrews Arokiam <andrews.arokiam@ideas2it.com> * pass-headers-debug Signed-off-by: Andrews Arokiam <andrews.arokiam@ideas2it.com> * Added container logs in status check. Changed function signature hints. Signed-off-by: Andrews Arokiam <andrews.arokiam@ideas2it.com> * Reverted import re-ordering Signed-off-by: Andrews Arokiam <andrews.arokiam@ideas2it.com> * Updated param order hint Made changes to copy only request id and trace id Signed-off-by: Andrews Arokiam <andrews.arokiam@ideas2it.com> Signed-off-by: Andrews Arokiam <andrews.arokiam@ideas2it.com>
Did two things here:
Fixes #2354
This change is