-
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] Disable multi-threading for TFX demo notebook #3170
Conversation
In TFX 0.21.0 release it's not guaranteed to work well with 6 vCPU. Disable it for now.
Check out this pull request on You'll be able to see Jupyter notebook diff and discuss changes. Powered by ReviewNB. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: rmgogogo 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 |
/lgtm |
@@ -239,7 +239,7 @@ | |||
" trainer, model_analyzer, model_validator, pusher\n", | |||
" ],\n", | |||
" enable_cache=True,\n", | |||
" beam_pipeline_args=['--direct_num_workers=%d' % 4],\n", | |||
" beam_pipeline_args=['--direct_num_workers=%d' % 1],\n", |
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.
would prefer you set it as 0 as it will be auto selected based on available cpus.
and maybe refine the title
/hold Left comments. please update to 0 which solve all problem. |
/hold cancel |
/lgtm |
* [Sample] Disable multi-threading for TFX demo notebook In TFX 0.21.0 release it's not guaranteed to work well with 6 vCPU. Disable it for now. * Update taxi_pipeline_notebook.ipynb Co-authored-by: Yuan (Bob) Gong <gongyuan94@gmail.com>
…le (kubeflow#3170) Add go security scan Signed-off-by: Sivanantham Chinnaiyan <sivanantham.chinnaiyan@ideas2it.com>
In TFX 0.21.0 release it's not guaranteed to work well with 6 vCPU. Disable it for now.
This change is