intel / openvino-ai-plugins-gimp

GIMP AI plugins with OpenVINO Backend
Apache License 2.0
459 stars 49 forks source link

Stable diffusion plugin feature request #20

Closed fajterini closed 1 year ago

fajterini commented 1 year ago

Currently stable diffusion plugin is limited to 50 interference steps with maximum of 50. But for me the best results in most cases are with Number of Inference 50 or higher. I have modified stable-diffusion-ov.py file and it was working for me even with interference steps set to 200. Can you include this changes as a default so people can tests what settings are best for them ? Thanks

"num_infersteps": (int, ("_Number of Inference steps (Default:32)"), "Number of Inference steps (Default:32)", 1, 50, 32, GObject.ParamFlags.READWRITE,),

"num_infersteps": (int, ("_Number of Inference steps (Default:50)"), "Number of Inference steps (Default:50)", 1, 200, 50, GObject.ParamFlags.READWRITE,),

arisha07 commented 1 year ago

Thank you for the suggestion. We will add this feature soon.

arisha07 commented 1 year ago

updated the code.

fajterini commented 1 year ago

Thanks :)