(self)
| 98 | |
| 99 | @pytest.fixture(scope="class") |
| 100 | def image_processor(self): |
| 101 | image_processor = AutoImageProcessor.from_pretrained(self.model_id) |
| 102 | return image_processor |
| 103 | |
| 104 | @pytest.fixture(scope="class") |
| 105 | def data(self, image_processor): |
nothing calls this directly
no test coverage detected