-
Notifications
You must be signed in to change notification settings - Fork 32.3k
Fix pipelines tests #34049
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
Merged
Merged
Fix pipelines tests #34049
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -214,8 +214,6 @@ def run_task_tests(self, task, torch_dtype="float32"): | |
| image_processor_names.append(cls_name) | ||
| elif "FeatureExtractor" in cls_name: | ||
| feature_extractor_names.append(cls_name) | ||
| else: | ||
| raise ValueError(f"Unknown processor class: {cls_name}") | ||
|
|
||
| # Processor classes are not in tiny models JSON file, so extract them from the mapping | ||
| # processors are mapped to instance, e.g. "XxxProcessor" | ||
|
|
@@ -242,12 +240,12 @@ def run_task_tests(self, task, torch_dtype="float32"): | |
| commit=commit, | ||
| torch_dtype=torch_dtype, | ||
| ) | ||
| at_least_one_model_is_tested = True | ||
|
|
||
| if task in task_to_pipeline_and_spec_mapping: | ||
| pipeline, hub_spec = task_to_pipeline_and_spec_mapping[task] | ||
| compare_pipeline_args_to_hub_spec(pipeline, hub_spec) | ||
|
|
||
| at_least_one_model_is_tested = True | ||
|
|
||
| if not at_least_one_model_is_tested: | ||
|
Comment on lines
+243
to
249
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like it was a wrong merge with |
||
| self.skipTest( | ||
| f"{self.__class__.__name__}::test_pipeline_{task.replace('-', '_')}_{torch_dtype} is skipped: Could not find any " | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pix2Structmodel hasProcessorobject in tiny model json, and that led to an error raised forPix2Structand filed test. Error raise is not required here because we take the processor fromPROCESSOR_MAPPING_NAMES, we can just skip this Processor