Is inpaint weights available?
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!
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?
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"))
I found location of the ckpt here: https://heibox.uni-heidelberg.de/f/4d9ac7ea40c64582b7c9/?dl=1
For future reference, I think after you download with wget you should run unzip -o model.zip, as per download_models.sh