asy51
asy51
For example, `Seq2SeqQuestionAnsweringModelOutput` has a `loss` attribute (https://github.com/huggingface/transformers/blob/9fe3f585bb4ea29f209dc705d269fbe292e1128f/src/transformers/modeling_outputs.py#L1169) which can be used to train transformers.T5... I'm looking for something similar in VQModel, or other VAE for that matter.
This is due to a change in `click.IntRange` from version 7.x: https://click.palletsprojects.com/en/7.x/api/#click.IntRange `class click.IntRange(min=None, max=None, clamp=False)` to version 8.x: https://click.palletsprojects.com/en/8.1.x/api/#click.IntRange `class click.IntRange(min=None, max=None, min_open=False, max_open=False, clamp=False)` when I `pip install...