Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyasMoutawwakil committed Dec 9, 2024
1 parent 4a05fc1 commit 9d6d709
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def test_api_input_generator(library, task, model):
model_shapes = extract_timm_shapes_from_config(model_config)
elif library == "diffusers":
model_config = get_diffusers_pretrained_config(model)
model_shapes = extract_diffusers_shapes_from_model(model)
model_shapes = extract_diffusers_shapes_from_model()
else:
raise ValueError(f"Unknown library {library}")

Expand All @@ -215,7 +215,7 @@ def test_api_dataset_generator(library, task, model):
model_shapes = extract_timm_shapes_from_config(config=model_config)
elif library == "diffusers":
model_config = get_diffusers_pretrained_config(model)
model_shapes = extract_diffusers_shapes_from_model(model)
model_shapes = extract_diffusers_shapes_from_model()
else:
raise ValueError(f"Unknown library {library}")

Expand Down

0 comments on commit 9d6d709

Please sign in to comment.