Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat(components): internal #10707

Merged
merged 1 commit into from
Apr 24, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
from kfp import dsl


# pylint: disable=singleton-comparison
# pylint: disable=g-doc-args
@dsl.container_component
def data_converter(
Expand All @@ -31,6 +32,7 @@ def data_converter(
objective: str,
output_dir: dsl.Output[dsl.Artifact],
gcp_resources: dsl.OutputPath(str),
enable_input_validation: bool = True,
location: str = 'us-central1',
timeout: str = '604800s',
service_account: Optional[str] = None,
Expand Down Expand Up @@ -75,7 +77,7 @@ def data_converter(
'image_uri': 'us-docker.pkg.dev/vertex-ai/vertex-vision-model-garden-dockers/data-converter',
'args': [
'--enable_input_validation',
'true',
str(enable_input_validation),
'--input_file_path',
input_file_path,
'--input_file_type',
Expand Down
Loading