PhotoMaker
PhotoMaker copied to clipboard
Issue Running Locally on Windows 11
Hello,
Thank you for sharing this exciting looking project.
I am having issues running this locally on my windows machine. Having reviewed other issues raised, I have got the gradio demo running, however, no matter what my outputs look like this:
Do you have any thoughts on what might be going wrong?
Thank you in advance.
you got the sdxl models required? f.e. listed here for the stylized: https://github.com/TencentARC/PhotoMaker/issues/20
Hmmm huggingface looked like it downloaded those on set-up, but maybe I'll try a manual download and use a local path. Worth a try!
Still having this issue with all the model files downloaded.
I have modified the windows installation instructions an re-arranged some of the files in the repo to make it work easilly on Windows: https://github.com/bmaltais/PhotoMaker
I have modified the windows installation instructions an re-arranged some of the files in the repo to make it work easilly on Windows: https://github.com/bmaltais/PhotoMaker
Finally someone is kind to provide a working solution!! Thanks a lot!!
I have modified the windows installation instructions an re-arranged some of the files in the repo to make it work easilly on Windows: https://github.com/bmaltais/PhotoMaker
Finally someone is kind to provide a working solution!! Thanks a lot!!
step 2 DO THIS AS WELL.
"Use python 3.10 or add these line in app.py :
add this line at the top ---> from typing import Tuple
find this line ---> def apply_style(style_name: str, positive: str, negative: str = "") -> tuple[str, str]:
and replace with this one ---> def apply_style(style_name: str, positive: str, negative: str = "") -> Tuple[str, str]:
it works for me :) "
Glad I could help. I also added width and height sliders so you can make non square output now ;-)