Is inpaint weights available?

#15
by sneakybeaky - opened

In repo we have script for inpaint, but there is no weights. How can i get them?

Yes, you can check the scripts/download_models.sh file, in there they have a link to inpainting_big.zip, which contains a weight file for inpaint.py

Yes, you can check the scripts/download_models.sh file, in there they have a link to inpainting_big.zip, which contains a weight file for inpaint.py

thank you so much!

sneakybeaky changed discussion status to closed

Are they going to release a newer one for SD or fine tuned for SD?

Yes, you can check the scripts/download_models.sh file, in there they have a link to inpainting_big.zip, which contains a weight file for inpaint.py

Just downloaded this weights, but instead of last.ckpt i got .pickle file. With .pickle file i also have data folder with a lot of files with names from 0 to 1034. Do you know what i need to do with this stuff? Build last ckpt from pickle? How?

sneakybeaky changed discussion status to open

When im trying to load pkl file, i getting this error:

  File "<stdin>", line 1, in <module>
_pickle.UnpicklingError: A load persistent id instruction was encountered,
but no persistent_load function was specified.

here is my code:

import pickle
f = pickle.load(open("data.pkl", "rb"))
sneakybeaky changed discussion status to closed

For future reference, I think after you download with wget you should run unzip -o model.zip, as per download_models.sh

Sign up or log in to comment