I previously talked about how I had been working with Stable Diffusion and that I also was creating a GUI for the image generator. Well, I re-wrote the GUI again since I wasn’t happy with how the previous version worked π
The thing that annoyed me the most was that wxPython sliders had no way to display floating point values. So, when a setting like guidance had to go from -15 to 30 with 0.1 intervals (just to be really picky), I had to actually set the slider to go from -150 to 300 and then divide the user setting by 10 afterwards.…