oliverkinch
oliverkinch
In [DacConfig](https://github.com/huggingface/transformers/blob/main/src/transformers/models/dac/configuration_dac.py#L28) `frame_rate` is not an attribute, but a property. `frame_rate` should thus simply be removed from the [config](https://huggingface.co/parler-tts/dac_44khZ_8kbps/blob/main/config.json)?
After this hotfix (ignore the `"frame_rate"` ) I can now initialize a model. ```python # Additional attributes without default values for key, value in kwargs.items(): try: if key == "frame_rate":...