| 23 | |
| 24 | |
| 25 | class VQModel(VQModel): |
| 26 | def __init__(self, *args, **kwargs): |
| 27 | deprecation_message = "Importing `VQModel` from `diffusers.models.vq_model` is deprecated and this will be removed in a future version. Please use `from diffusers.models.autoencoders.vq_model import VQModel`, instead." |
| 28 | deprecate("VQModel", "0.31", deprecation_message) |
| 29 | super().__init__(*args, **kwargs) |
no outgoing calls
searching dependent graphs…