Commit
·
d229069
1
Parent(s):
c4692ad
fix: processor class types
Browse files- processing_clip.py +2 -2
processing_clip.py
CHANGED
|
@@ -17,8 +17,8 @@ from .transform import OPENAI_DATASET_MEAN, OPENAI_DATASET_STD, image_transform
|
|
| 17 |
|
| 18 |
|
| 19 |
class JinaCLIPProcessor(CLIPProcessor):
|
| 20 |
-
image_processor_class = '
|
| 21 |
-
tokenizer_class = '
|
| 22 |
|
| 23 |
|
| 24 |
""" Jina CLIP image processor implementation """
|
|
|
|
| 17 |
|
| 18 |
|
| 19 |
class JinaCLIPProcessor(CLIPProcessor):
|
| 20 |
+
image_processor_class = 'ImageProcessingMixin'
|
| 21 |
+
tokenizer_class = 'PreTrainedTokenizerBase'
|
| 22 |
|
| 23 |
|
| 24 |
""" Jina CLIP image processor implementation """
|