KeyError: 'global_step' while installing Anything V3.0 #56
-
I was trying to get Anything-V3.0 to work. It gave me this error instantly: I use Anything-V3.0.ckpt file from the huggingface site. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Since it's hosted on the huggingface website and it's already in diffusers model, you can use the second conversion script directly: The script will download and convert in one step so you don't have to do the two step conversion with the |
Beta Was this translation helpful? Give feedback.
Since it's hosted on the huggingface website and it's already in diffusers model, you can use the second conversion script directly:
convert_stable_diffusion_checkpoint_to_onnx.py --model_path="Linaqruf/anything-v3.0" --output_path="anything-v3.0_onnx"
The script will download and convert in one step so you don't have to do the two step conversion with the
.ckpt
file.