Jozef Pierlejewski

Results 25 comments of Jozef Pierlejewski

I've realised that just doing codeformer on an image is available in the "Extras" tab, so the main issue here is that the Backup & Output images have it applied...

update: I see there is actually already subdirectory pattern for outputs in the settings now. as the alternative method above mentions, if `[model_name]` could be added that would be helpful...

I’ve noticed this since the update to Torch 2 maybe I’ll get to a point where I get the error every time I press generate, then switching the model to...

also noticed recently if you have an `Inpaint` image with a mask, then send from `PNG info` to `img2img` then switch back to the `Inpaint` tab, then the mask disappears......

I'm also confused by this. I have a 2D bottle I want to shake (strength = `Vector3(0, 0 , shakeAmount)`), but I'm not sure this function is really designed for...

it used to work but maybe try this? ```python return Processed(p, output_images, infotexts=infotexts,index_of_first_image=0)` ``` note `output_images` instead of `images` above not sure if you're trying to save the original and...

related: https://github.com/AUTOMATIC1111/stable-diffusion-webui/discussions/4938#discussioncomment-4211878

have you tried the `--lowvram` or `--medvram` command line option for lower VRAM usage? I know with my 3080 when I put too much load on the card, voltage spikes...

turns out it's a conflict with jquery.animate-enhanced (https://github.com/benbarnett/jquery-animate-enhanced) for some reason the transform is being removed at the end. it should have this if i launch my 4th image ```...

I believe this works as a temporary fix ``` javascript $( '.swipebox' ).swipebox({ beforeOpen: function() { $.setDisabledByDefault(true) }, afterClose: function() { $.setDisabledByDefault(false) }, }); ```