Skip to content
Merged
Show file tree
Hide file tree
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 @@ -87,7 +87,7 @@ def test_non_prepacked_jumpstart_model(setup):

def test_prepacked_jumpstart_model(setup):

model_id = "huggingface-txt2img-conflictx-complex-lineart"
model_id = "model-txt2img-stabilityai-stable-diffusion-v2-1-base"

model = JumpStartModel(
model_id=model_id,
Expand Down Expand Up @@ -251,11 +251,10 @@ def test_instantiating_model(mock_warning_logger, setup):


def test_jumpstart_model_register(setup):
model_id = "huggingface-txt2img-conflictx-complex-lineart"
model_id = "model-txt2img-stabilityai-stable-diffusion-v2-1-base"

model = JumpStartModel(
model_id=model_id,
model_version="1.1.0",
role=get_sm_session().get_caller_identity_arn(),
sagemaker_session=get_sm_session(),
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

TEST_MODEL_IDS = {
"catboost-classification-model",
"huggingface-txt2img-conflictx-complex-lineart",
"model-txt2img-stabilityai-stable-diffusion-v2-1-base",
"meta-textgeneration-llama-2-7b",
"meta-textgeneration-llama-3-2-1b",
"catboost-regression-model",
Expand Down
1 change: 0 additions & 1 deletion tests/integ/sagemaker/serve/test_schema_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ def test_model_builder_negative_path(sagemaker_session):
None,
),
("HuggingFaceH4/zephyr-7b-beta", "text-generation", "ml.g5.2xlarge", 900),
("HuggingFaceH4/zephyr-7b-alpha", "text-generation", "ml.g5.2xlarge", 900),
],
)
def test_model_builder_happy_path_with_task_provided_local_schema_mode(
Expand Down
Loading