Skip to content
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

Modify instance_count and instance_type to use Pipelines's Parameter … #75

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

hightensan
Copy link

…in batch-inference/seedcode/pipelines/batch_inference/pipeline.py

Issue #, if available:
NA

Description of changes:
In batch-inference/seedcode/pipelines/batch_inference/pipeline.py, instance_count and batch_inference_instance_type does not user pipeline's parameter.
I replaced them with batch_inference_instance_count (ParameterInteger) and batch_inference_instance_type (ParameterString).

    #### PARAMETERS
    model_name = ParameterString("ModelName", default_value='${ModelName}')
    batch_inference_instance_count = ParameterInteger("BatchInstanceCount", default_value=1)
    batch_inference_instance_type = ParameterString("BatchInstanceType", default_value='ml.m5.xlarge')
    input_path = ParameterString("InputPath", default_value=f"s3://sagemaker-servicecatalog-seedcode-{region}/dataset/abalone-dataset.csv")
    output_path = ParameterString("OutputPath")

    #### SAGEMAKER CONSTRUCTS
    transform = Transformer(
        model_name=model_name,
        instance_count=1,
        instance_type='ml.m5.xlarge',
        output_path=output_path,
        base_transform_job_name=f"{base_job_prefix}/batch-transform-job",
        max_payload=10,
        accept='text/csv'
    )

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

…in batch-inference/seedcode/pipelines/batch_inference/pipeline.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant