patrickvonplaten commited on
Commit
2e791d1
1 Parent(s): 28b67e3

Fix deprecation warning by changing `CLIPFeatureExtractor` to `CLIPImageProcessor`.

Browse files

Hey fusing 👋,

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(fusing/rdm)`.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.

Files changed (1) hide show
  1. model_index.json +1 -1
model_index.json CHANGED
@@ -7,7 +7,7 @@
7
  ],
8
  "feature_extractor": [
9
  "transformers",
10
- "CLIPFeatureExtractor"
11
  ],
12
  "scheduler": [
13
  "diffusers",
 
7
  ],
8
  "feature_extractor": [
9
  "transformers",
10
+ "CLIPImageProcessor"
11
  ],
12
  "scheduler": [
13
  "diffusers",