On current commit of A1111's WebUI (and for the last three weeks,) the extension causes sd_models to be called up before the vae_list is filled, causing the VAE to not load upon WebUI launch.
While I pondered on editing the code on the AUTOMATIC1111's repo to work around the issue (i.e. fill the vae_list before extension loads), not many extensions load the model upon launch. [citation needed]
I thought the fix in this case could be to simply move the DEFAULT_ARGS to the run_benchmark function instead, since the arguments are expected to be seldom called upon during normal usage of the extension.
On current commit of A1111's WebUI (and for the last three weeks,) the extension causes sd_models to be called up before the vae_list is filled, causing the VAE to not load upon WebUI launch.
Detailed here. (link)
While I pondered on editing the code on the AUTOMATIC1111's repo to work around the issue (i.e. fill the vae_list before extension loads), not many extensions load the model upon launch. [citation needed]
I thought the fix in this case could be to simply move the
DEFAULT_ARGS
to therun_benchmark
function instead, since the arguments are expected to be seldom called upon during normal usage of the extension.