Skip to content

Commit

Permalink
feat(components): Implement new component to preprocess and validate …
Browse files Browse the repository at this point in the history
…inputs for rlhf

PiperOrigin-RevId: 606603236
  • Loading branch information
Googler committed Feb 27, 2024
1 parent 1edd85f commit 31f2eb3
Showing 1 changed file with 67 additions and 0 deletions.
@@ -0,0 +1,67 @@
# Copyright 2024 The Kubeflow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Component for running rlhf preprocessor."""

import os

from google_cloud_pipeline_components import _placeholders
from google_cloud_pipeline_components import utils as gcpc_utils
from google_cloud_pipeline_components._implementation.llm import utils
from kfp import dsl


def _resolve_image() -> str:
"""Determines image URI used to run the preprocessor."""
return os.environ.get(
'REFINED_CPU_IMAGE_OVERRIDE'
) or utils.get_default_image_uri('refined_cpu')


# pylint: disable=unused-argument,dangerous-default-value
@dsl.container_component
def rlhf_preprocessor(
gcp_resources: dsl.OutputPath(str), # pytype: disable=invalid-annotation
has_tensorboard_id: dsl.OutputPath(bool), # pytype: disable=invalid-annotation
has_inference_dataset: dsl.OutputPath(bool), # pytype: disable=invalid-annotation
evaluation_dataset: str,
tensorboard_resource_id: str = '',
) -> dsl.ContainerSpec: # pylint: disable=g-doc-args
"""Preprocess RLHF pipeline inputs.
Args:
evaluation_dataset: Path to evaluation data.
tensorboard_resource_id: TensorBoard resource id.
Returns:
gcp_resources: GCP resources that can be used to track the custom job.
has_tensorboard_id: Whether the tensorboard id is provided.
has_inference_dataset: Whether the inference data is provided.
"""
return gcpc_utils.build_serverless_customjob_container_spec(
project=_placeholders.PROJECT_ID_PLACEHOLDER,
location=_placeholders.LOCATION_PLACEHOLDER,
custom_job_payload=utils.build_payload(
display_name='rlhf_preprocessor',
machine_type='n1-standard-4',
image_uri=_resolve_image(),
args=[
'--app_name=rlhf_preprocessor',
f'--evaluation_dataset={evaluation_dataset}',
f'--tensorboard_resource_id={tensorboard_resource_id}',
f'--has_tensorboard_id_path={has_tensorboard_id}',
f'--has_inference_dataset_path={has_inference_dataset}',
],
),
gcp_resources=gcp_resources,
)

0 comments on commit 31f2eb3

Please sign in to comment.