Commit
·
2ee7283
1
Parent(s):
b58751e
Fix deprecation warning by changing `CLIPFeatureExtractor` to `CLIPImageProcessor`.
Browse filesHey jordansoftware 👋,
Your model repository seems to contain logic to load a feature extractor that is deprecated, which you should notice by seeing the warning:
```
transformers/models/clip/feature_extraction_clip.py:28: FutureWarning: The class CLIPFeatureExtractor is deprecated and will be removed in version 5 of Transformers. Please use CLIPImageProcessor instead. warnings.warn(
```
when running `pipe = DiffusionPipeline.from_pretrained(jordansoftware/fof)`.This PR makes sure that the warning does not show anymore by replacing `CLIPFeatureExtractor` with `CLIPImageProcessor`. This will certainly not change or break your checkpoint, but onlymake sure that everything is up to date.
Best, the 🧨 Diffusers team.
- model_index.json +2 -2
model_index.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
"_diffusers_version": "0.11.0.dev0",
|
| 4 |
"feature_extractor": [
|
| 5 |
"transformers",
|
| 6 |
-
"
|
| 7 |
],
|
| 8 |
"requires_safety_checker": true,
|
| 9 |
"safety_checker": [
|
|
@@ -30,4 +30,4 @@
|
|
| 30 |
"diffusers",
|
| 31 |
"AutoencoderKL"
|
| 32 |
]
|
| 33 |
-
}
|
|
|
|
| 3 |
"_diffusers_version": "0.11.0.dev0",
|
| 4 |
"feature_extractor": [
|
| 5 |
"transformers",
|
| 6 |
+
"CLIPImageProcessor"
|
| 7 |
],
|
| 8 |
"requires_safety_checker": true,
|
| 9 |
"safety_checker": [
|
|
|
|
| 30 |
"diffusers",
|
| 31 |
"AutoencoderKL"
|
| 32 |
]
|
| 33 |
+
}
|