← Home ← Back to /b/

Thread 936508496

105 posts 94 images /b/
AssetsWiz No.936508496 >>936524235 >>936535339 >>936539768
AI Nudify TUTORIAL THREAD
THIS IS NOT A NUDIFY THREAD! DO NOT POST REQUESTS IN THIS THREAD!
This thread is a tutorial, from start to finish on how to install stable diffusion with ComfyUI and then use it for inpainting to make nudify images.
I will be explaining settings, processes, nodes, workflows, checkpoints and basically everything else you need to get started.
AssetsWiz No.936508538 >>936508561
So you want to get started with AI? Not a problem. Most PCs should be able to handle this, it just takes a bit to get set up, and that's what I'm here to explain.
A quick disclaimer, my screenshots are all from Linux but I'll be posting the instructions for both Linux and Windows so if it looks a little different don't get discouraged.
The very first thing you're going to need to do is open up a command terminal.
On windows hit the windows key and type "cmd" then select comand prompt from the results. On Linux you just click the icon
AssetsWiz No.936508561 >>936508618 >>936508670
>>936508538
Now we need to clone the repo to your machine.
If you have a specific folder you want to save all this to you'll have to navigate to that folder first.
Let's say you want to put everything in a folder called AI that you store in the root of your C drive. Then you just create an empty folder and use the command:
cd ai
AssetsWiz No.936508618 >>936508670
>>936508561
I put mine in the root directory for now to make this tutorial easier.
Once you're in the folder where you want to put everything you need to download the repo to that folder. Use the command:
git clone https://github.com/comfyanonymous/ComfyUI.git
AssetsWiz No.936508670 >>936508720
>>936508561
>>936508618
Dammit I already fucked up posting the screenshots.

now you simply need to use the command:
cd comfyui
AssetsWiz No.936508720 >>936508740
>>936508670
This will make your active directory the folder that everything is stored in. You're going to need to remember this location because you're going to need to go to this folder any time you want to start up your AI.
So if, as I mentioned earlier, you wanted to store it in a folder called AI, you would first need to run cd ai then cd comfyui, or you should be able to run cd ai/comfyui


OK, I'm going to skip some of the screenshots for the command terminal stuff.
Next you run:
python -m venv venv

This creates a virtual environment (a temporary computer that exists inside of your computer).
Now the commands get different from Linux and Windows. Windows Command:
venv\Scripts\activate.bat

Linux Command:
source venv/bin/activate

This actually starts up the virtual environment and is a command you'll need to run any time you want to start up your AI
AssetsWiz No.936508740 >>936508780
>>936508720
Now we need to install some tools that the AI needs in order to run.
Windows or Linux command:
pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu121

After that finishes running you then need to run this command:
pip install -r requirements.txt

After those finish you're basically set up and ready to go, at least if all you wanted was to generate images based on text. Inpainting (the thing we do when nudifying) takes a little more setup, but don't worry, we're mostly done with the command terminal
AssetsWiz No.936508780 >>936508821 >>936520339
>>936508740
Alright, this is the last screenshot of the command terminal stuff but it's an important one. Any time you want to start up your AI you're going to need to run a few commands.
You need to get to the directory comfyUI is stored at, you need to start the virtual environment, and you need to actually run the program within the virtual environment.

On Windows it'll look like:
cd comfyui
venv\Scripts\activate.bat
python main.py

On Linux it'll look like:
cd comfyui
source venv/bin/activate
python main.py

Once it finishes running just open your web browser and go to the address that it gave you in the command terminal (since we're running this locally instead of setting up a web server it should start with http://127.0.0.1:)
AssetsWiz No.936508821 >>936508855
>>936508780
OK, so we're actually done with the technical part of the setup. Now we just need to make the workflow and download a model.
When you go to interface for your AI you're going to see a premade tutorial workflow already set up for you. If you want to test it out just enter a prompt and hit queue and it'll generate an image based on the prompt.
The default model isn't great, and this workflow doesn't do anything but generate an image based on a prompt, but if you want to make sure you've set everything up hit the button and try it out
AssetsWiz No.936508855 >>936508875
>>936508821
Before we get to the inpainting though, I'm going to show you *why* we go through all this trouble. Suppose you just want to load an image in, give it a prompt, and then let the AI do it's thing. Skipping over how to set this up (for now) this is a basic image to image workflow that will allow you to do just that: Load an image, apply a prompt, hit run and watch the magic. So let's try just that.
AssetsWiz No.936508875 >>936508958
>>936508855
Oh... What the fuck happened? Well a lot of things were wrong with this approach, but in essence, the ai doesn't really know what it's looking at. So if you just say nude it will arbitrarily decide what is supposed to be nude on that picture and then make something similar. There's also a setting called denoise which controls how much the ai changes of the original picture. I set the denoise at .50 so that it would still be somewhat recognizable while making visible changes. If I had set it closer to 1.0 then it would have replaced almost the entire image. So If you want it to make a significant change like removing clothes, you need your denoise set higher, but that also warps the picture more. So we need extra instructions for the ai to know what to change and where before it can make anything even close to what we want. Also it took a solid 2 and a half minutes for my computer to generate it. Not bad for an old laptop, sure, but still frustrating to have to wait so long to see if it worked. We'll fix all of that though, just follow along.
AssetsWiz No.936508931
Oh, hey, I should have mentioned this earlier, but 4chan will autosage this thread if no one but me replies. I'll do some requests and answer questions at the end but if there's anyone paying attention I'd appreciate the occasional bump
AssetsWiz No.936508958 >>936508983
>>936508875
Now... instead of using the default I'm going to show you how to build a new workflow. (if you want to skip some of the fancier stuff I do then you can just get the template inpainting workflow but clicking "Workflows>Browse Templates", then you can skip the next couple of steps)

This is a basic starter inpainting workflow, I'll go over each group and what it does, but feel free to use this as a reference for setting yours up
AssetsWiz No.936508983 >>936509002
>>936508958
First up we have the Checkpoint/VAE group, this is essentially the start and finish of the processing your image. Since nothing really changes on these I group them off to the side on their own.
The Load Checkpoint node loads in the model that you'll be using and the VAE Decode node takes the processed static from the image and turns it into the finished image.
AssetsWiz No.936509002 >>936509035
>>936508983
Next up we have the load image/mask group. This is essential for inpainting.
The Load Image node brings the image you want to work on into the ai.
The Feather Mask blurs the edges of the area you want to work on so that your edits blend into the finished image smoother.
The VAE encode breaks the image into static for the AI figure out how it's constructed in the first place. This specific version also tells it to grow the mask which basically means that it looks at stuff slightly outside of the selected area.

Don't worry, I'll explain more about image masks in a minute
AssetsWiz No.936509035 >>936509093
>>936509002
Now we have Prompts. Pretty self explanatory here. The positive prompts tell the ai what you want to add and the negative prompts tell the ai what you want to avoid.
For inpainting you almost never use negative prompts. I find some limited use out of it if I find that it's trying to draw a full body and I just want it to draw a torso, but more often than not I'll get a better result by just rewording the positive prompt.
The negative prompt is more useful when you're making a brand new image from text, but for the most part you don't want to touch it unless you're having trouble with a particular part or area (like if you've tried several times and it just keeps fucking up the hands so you put hands into the negative prompt and it should hide them behind something)
AssetsWiz No.936509093 >>936509139
>>936509035
The last one I'm going to go over is the settings and post processing group.
I have an image blur node set to a low level in order to hide those edit lines but it's not 100% necessary. The main thing we're going to pay attention to is the Settings node (which is named KSampler by default but I renamed it for clarity) and I'm going to go over each of these with a quick explanation:

Seed: The random numbers that it uses to generate static. You don't need to worry about it for now
Control After Generate: Used to generate the next seed. You don't need to worry about it for now
Steps: the amount of the image that it's trying to generate at any one time. Higher numbers take longer, lower numbers look worse. I find 18-30 is a great range to stay in.
CFG: How close the AI is going to try and match the prompt you give it. Adjust this carefully, half a point at a time.
Sampler name: Again, a thing dealing with randomness and static. Don't touch it unless the model you download tells you to.
Scheduler: Similar to the last setting but this one can actually make a big difference. If the model you downloaded suggests a Scheduler then use that, but otherwise try them until you find one that looks right. Normal works in most situations.
Denoise: Like I mentioned earlier, the denoise is what's turning it from the static noise back into an image. A higher denoise setting replaces more of the original image, a lower denoise replaces less. For inpainting I generally set it between .85 and .95.
AssetsWiz No.936509139 >>936509170
>>936509093
Alright, you also need to have an image save node but we're starting with the basic image save for now which is self explanatory so I didn't include a screenshot.
Only one more bit of setup before we get to the nudifying.
As I mentioned earlier the default model is kinda crap so I would suggest getting a new one off of CivitAI dot com.
My favorite for beginners is epiCRealism XL.
You'll need to sign up for an account but it's free so quit complaining.
AssetsWiz No.936509170 >>936509187
>>936509139
After you've downloaded the model you'll see a file called
epicrealism_v10-inpainting.safetensors
Get that file and you're going to want to move it over to the checkpoints folder. You can just drag and drop it or copy it over.
To find the checkpoints folder you'll need to open up your ComfyUI folder in the file manager...
AssetsWiz No.936509187 >>936509213
>>936509170
Then open the models folder and you'll see the checkpoints folder. This is going to be the only folder we interact with today, but if you try out new models and new types you might also need to put something in one of the older folders, like Loras


Again, if you ever have questions about how to install a particular model, check and see if the creator posted any instructions. The more helpful ones will tell you how to set it up and what settings work best. Refresh your page on the ComfyUI interface and you can select the new model from the checkpoints node and we're ready to go.
Ready to start inpainting?
AssetsWiz No.936509213 >>936509260
>>936509187
Alright. So, after you've loaded your image in the load image node, right click on that preview image and select "Open in Mask Editor"
AssetsWiz No.936509260 >>936509297 >>936537589
>>936509213
Now you want to "Mask" the areas you want to change, so assuming you want to remove a bikini you draw over that bikini and hit save.
That said, there's a few things that will making your final results a little better.
Draw the mask to include just outside the borders of what you want to change. I use a lower opacaity setting with a round brush and I set the mask to negative to make it easier to see what I've selected.
AssetsWiz No.936509297 >>936509317
>>936509260
After you draw and save your mask, enter your prompt and hit run to start the queue.
For demonstration I just entered the prompt as "nude" to show what happens when you try that.
AssetsWiz No.936509317 >>936509358
>>936509297
Honestly, I've seen way worse, but we can do a lot better. For one thing while that blur can help hide the edges of the edit, it's a noticeable downgrade. For another, most AI needs to be told if it's anything other than a bog standard full body picture facing front straight to the camera. Some of that can be addressed with describing your subject's position/skintone/bodytype/etc with the prompt as well as the quality of the light. You'll eventually get some intuition as to what prompts work best for what kinds of images. Finally, while it didn't come up with this source image, this workflow is completely incapable of handling images larger than 1024x1024 which is frustrating as hell.
AssetsWiz No.936509358 >>936509386
>>936509317
If you're OK with that level of quality then you're basically done, but there's a lot of things this basic workflow can't handle and you're going to run up against those limitations constantly.

That said, you do now know the basics of how to nudify.
All the generated attempts got saved in the ComfyUI/output folder so I can share it or move it to wherever I'd like.
You can go try it out yourself if you'd like or you can stick around to learn about how to get better, more efficient results.
AssetsWiz No.936509386 >>936509434
>>936509358
Now we're going to start talking about how to get better results overall and how to integrate specialized models called loras.
A checkpoint is the large model of images that the ai works off of to generate images. A lora is a specialized subset that can give better detail on specific areas. I like downloading new loras off of civitai and trying them out to see how well they work. Since they're generally smaller it's not uncommon for me to go looking for a new one if I get a request for something specific. The smallest checkpoint I have is 2.1gb, the largest Lora I have is under 700mb.
This is an upgraded version of that earlier workflow that uses an advanced save function and a couple Lora nodes.
AssetsWiz No.936509434 >>936509475
>>936509386
So let's explain how these Lora settings work. The lora takes in the model and clip from the checkpoint and processes the model to refine it before passing along the clip to the prompt and the KSampler (I renamed that Settings earlier for simplicity). The setting for Strength Model is how much it should rely on the base model, and the setting for Strength Clip is how much it should rely on the Lora. These don't need to add up to 100% or anything. I usually keep a skin texture lora that helps to make skin look more natural and will change a second one between a handful of others depending on what I specifically want to see (pubic hair, nipples poking through fabric, etc).
AssetsWiz No.936509475 >>936509511
>>936509434
The other big change is to replace the basic Save Image with Save Image Extended.
There's a lot of settings on here and you can mouse over them to get a description of what each does, but I'm going to just point out the two that you should know right now. The first one is output_ext which allows you to select the file format you want your images to be output as. The second is quality which determines the final quality of the image you output. Why add this? Because /b/ has a ridiculously low restriction of 2mb for image uploads. Adding this in allows you to control how large the final output file is without having to compress the image or go through any other ridiculous measures.
AssetsWiz No.936509511 >>936509555
>>936509475
One thing to note though is that this is a custom node (not made by me) that you'll need to install through the custom nodes manager. I honestly don't have the energy to walk you through how to do that since this is the only custom node we have and it's not a thing everyone needs. If you want to try and install it look for this button and see search for save image in the custom nodes manager.
AssetsWiz No.936509555 >>936509585
>>936509511
Ok so that explained what Loras do and how to set them up but why? Does it really make that big of a difference? Well if you want something *really* specific, you might need a lora or 2 to get it to look right. This one used a combination of pregnancy and transparent clothes. You can decide for yourself if it's worth the effort.
Again, this is another good place to jump off if you're happy with your results. There's still a few limitations but we're getting much better results than before in my opinion and we're able to get some specialized looks in too. If you want to go have some fun and play around with it then enjoy. The next (and last phase I'm doing today) is how to get even cleaner results, faster, from larger images. But it takes a lot more setup, so be prepared for more technical stuff.
AssetsWiz No.936509585 >>936509616
>>936509555
This is the upgraded workflow I've been using recently. It includes an auto rescaler to handle larger images without distorting them. It also includes a latent composite mask to help the AI use more of the original image while still drawing over it. Essentially if you want better results that more closely match the posing, lighting, skintone, and proportions you're going to need something like this.
AssetsWiz No.936509616 >>936509637
>>936509585
First I'm going to go over the Mask/Image Composite group since it's relatively easy to set up. All you need is a latent noise mask node (essentially an image filled with static that the AI will draw on and then composite together with the original image), and a Latent Composite Masked node which is what combines the noise, the mask, and the original image together before sending it off to the KSampler for processing. This will, in general, help the AI to understand the original image better by letting it look at the entire image, not just the masked part.
AssetsWiz No.936509637 >>936509661
>>936509616
Now 'm going to go over my Auto-Resize group. When the image is first loaded in, I pass it to a Get Image Size node which reads the original resolution, NearestSDXLResolution which finds the closest resolution that will still fit in what the stable diffusion model is capable of creating while maintaining the original aspect ratio, and it also passes the image to ResizeAndPadImage along with the output from NearestSDXLResolution to take the original image and turn it into something the AI can actually handle. If you don't go through all that and try to edit a large image then it will get confused when it tries to go beyond those boundaries and will wind up repeating the prompt multiple times in multiple areas. If you've gotten results that wouldn't look out of place in a cronenberg film then that's probably why. Of course we don't want the image to stay at that small resolution which is where the upscaler comes in after the processor finishes but before it saves. I personally find that the bicubic setting works best in general, but feel free to try the others.
AssetsWiz No.936509661 >>936509725
>>936509637
This one is super important to get right because you'll not only get better results overall, but because it's not trying to inpaint over a larger resolution image it will also finish much faster. That image I loaded in at the beginning that took nearly 3 full minutes just to process? I ran it again on this workflow and got this back in 43 seconds.
AssetsWiz No.936509725
>>936509661
Now there's still areas to improve on this. For one thing, I probably need to adjust the auto-resizing group because it can lead to a black border on some images. For another I can't do outpainting (adding new areas to an image). But that's for another day.

OK, I need to take my dogs outside for a minute but I'll be back in 5 to answer questions, take requests, or whatever else
AssetsWiz No.936510151 >>936510351 >>936510431 >>936532662
Did I just do this whole thread for no one?
Did anyone at least screenshot it?
I assumed at least one person would have questions or want clarification on something
Anonymous No.936510351 >>936510509
>>936510151
saving it in fact
let me take a look for some good ones to request if you're really up for it
Anonymous No.936510356
I have scrolled through the tutorial. Nice of you to share this knowledge
Anonymous No.936510431
>>936510151
saved, thanks a lot anon! will try tonight. I tried this once before a couple years back but got weird results so this tutorial is appreciated
AssetsWiz No.936510509 >>936510768
>>936510351
Yeah, I can do a few
Anonymous No.936510580
screenshotted ty for your service
Anonymous No.936510717 >>936510793 >>936510966
Would appreciate a fix on her
Anonymous No.936510768 >>936511290
>>936510509
don't know if it's even suitable but here's hoping, just the right pls
AssetsWiz No.936510793
>>936510717
Alright, let me show the versatility. I'll do a quick nude, but tell me what else you'd like to see. Tattoos, lingerie, bondage, whatever you feel like
Anonymous No.936510926 >>936511217
Based anon could you strip this girl nude and put a cum shot on her tits?
AssetsWiz No.936510966
>>936510717
nude, thick thighs, small breasts, pubic hair, soft light
AssetsWiz No.936511217
>>936510926
AssetsWiz No.936511290
>>936510768
AssetsWiz No.936511819 >>936514395 >>936514717
Alright, closing stuff down. My wife is almost home.
Anonymous No.936512724 >>936516571
Anonymous No.936514311 >>936515072 >>936538172
Thanks OP how does one save a thread
Anonymous No.936514395 >>936514690 >>936516412
>>936511819
how do you feel hiding this life from your wife. honest question
Anonymous No.936514690 >>936514911
>>936514395
Meh, I've hidden plenty from mine for 15 years and it's fine. If you are in a "share everything" relationship that's fine too, but it doesn't work for all types.
Anonymous No.936514717
>>936511819
Hi man, probably you won't see this, but i realy appreciate this thread, i screenshoted the whole thing and i will try it as soon as i can, thank you again
Anonymous No.936514911 >>936514993
>>936514690
Yeah I mean, same. Just sometimes it does bother me. Also feels awful when something slips up and she notices it.
Anonymous No.936514993
>>936514911
I used to feel that way at first, But after a while it became like not talking about work. Nothing is really lost as long as it's not causing problems. They have their secrets too, believe it.
Anonymous No.936515072
>>936514311
Just save each image and print the page to PDF if you don't have download tools handy.
AssetsWiz No.936516412
>>936514395
Its only the sort of thing I worry about because I know it would make her uncomfortable if she knew.
I'm honestly not even sure that she would tell me to stop, I just don't want it to become an issue.
She knows I watch porn, read erotica, and masturbate on occasion and it doesn't bother her.
In all honesty I just think of it the same way as I think of the erotica I write. I also write sci-fi short stories, and she's read those, but ultimately it's just a hobby I'm not entirely honest about.

I think it would be a lot different if I were making nudes of her sister or something, but I know there's a line I wouldn't want to cross.
Anonymous No.936516479 >>936516529
Is the process to creating a video similar to this?
AssetsWiz No.936516529
>>936516479
I know it has some similarities and there's a couple other wizards around here who've done that, but I've never tried since I'm on an older laptop.
You can literally look at the earlier screenshots of the command prompts and see that I'm running gtx 3050 with 6g of vram
AssetsWiz No.936516571
>>936512724
Anonymous No.936516658 >>936516775
You are a legend sir thank you
AssetsWiz No.936516775
>>936516658
I'm just hoping to spread the knowledge so we can get more people who know what they're doing and fewer who bother with spam links. It pisses me off when I see people using those stupid ass services.
Anonymous No.936516923 >>936517113 >>936517608 >>936517672 >>936538692
can it do smaller boobs though? i always have trouble not doing massive cans
AssetsWiz No.936517113 >>936517247
>>936516923
Try adding "petite" to the prompt. I find that usually gives smaller breasts. Doesn't always work, but it's a quick fix and I'd give it about a 70/30 chance
Anonymous No.936517247 >>936517608 >>936517672
>>936517113
give it a whirl please and see what pops out for you. i’m going to try and figure this out
AssetsWiz No.936517608
>>936516923
>>936517247
Nude, slim teen, pubic hair, sitting
AssetsWiz No.936517672
>>936516923
>>936517247
And this was with petite instead of slim
Anonymous No.936517882 >>936517975 >>936518048
this is quite a long shot but what do you know about LoRA training/capabilities? I am very new to ai but thought it would be cool to have a model I can have to make pics for any character I like. Nudify is also something I am interested in and this thread is super helpful. Am using comfyui since I could find a reasonable amount of support and guidance here and on YouTube. Any advice for what to start with? Am nearly there on my LoRA training but it is a tad daunting.
AssetsWiz No.936517975 >>936518048 >>936520643
>>936517882
Training my own lora is honestly my next thing I want to learn since I want to make one that better handles cumshots for inpainting and darker skintones in general, but I haven't taken the time to learn it. I promise I'll make a thread some day but not any time soon
Anonymous No.936518048 >>936518141
>>936517975
>>936517882
like I have my dataset and workflows/setup in comfy, just a few issues with the transformer I am trying to get chat to sort out as I am not very technologically gifted. chat is very fickle with debugging and I know next to nothing about what I am doing so its very tedious in general. But this kind of work and results are what keep me motivated to get it working.
AssetsWiz No.936518141 >>936518199 >>936526339
>>936518048
Yeah, I tried to use chat gpt to debug but all its info is outdated (which makes sense because it's a PreTrained model) so it's hard to rely on it. Unfortunately the solution lies in a lot of googling and research. Reddit and stack overflow are your best friends there
Anonymous No.936518199
>>936518141
thanks for the suggestions
Anonymous No.936520339 >>936521799
>>936508780
Getting a "no module named venv" error
Do I need a certain version of python?
Anonymous No.936520643 >>936521989 >>936526339 >>936526462
>>936517975
how would cumshot on her look
AssetsWiz No.936521799
>>936520339
Go ahead and hit me up on disc. I'll help you troubleshoot this in a bit.
tfwizard_
Anonymous No.936521989
>>936520643
>I will be explaining settings, processes, no
I don't care about your'settings' and 'processes' and the like.
Anonymous No.936524235 >>936524822
>>936508496 (OP)
bump
Anonymous No.936524822 >>936524929
>>936524235
This is actually pretty cool, Desu. I actually spent a load of frustrating time trying to get this to work on runpod. I had to do it several times because it just wouldn't work for one reason or another. I finally have comfy installed. I am at the point where i need to load bigLust. Its like 6 gigs and for some reason it took FOREVER to dl on runpod. I got sort of annoyed so I put it down for a while. I will probably pick it back up though in a day or two.

Note: you should create a video
Anonymous No.936524929
>>936524822
I'm just an anon bumping this thread since I've been wanting to learn inpainting for a while for my monster girl gens.
Regardless this tech is really fucking cool and I applaud OP for giving a very helpful tutorial for free
AIMessiah No.936526339 >>936526462 >>936527686
>>936518141
chatgpt o3 does websearches too.
Also nice tutorial and all but wan is the future for fakes like that. Besides training a LoRA ofc
>>936520643
https://files.catbox.moe/8awezx.mp4
AIMessiah No.936526462 >>936527686
>>936526339
>>936520643
https://files.catbox.moe/iqibc5.mp4
Anonymous No.936527686
>>936526339
>>936526462
fucknice fuck
Anonymous No.936530163
Thanks for making this thread wizard. Truly a legend.
Anonymous No.936532662
>>936510151
I saved to read over and over cause im retarded
Anonymous No.936532962 >>936535771 >>936536624
what version of python
Anonymous No.936535339
>>936508496 (OP)
AssetsWiz No.936535771
>>936532962
Holy shit this thread is still alive?
I just woke up. Give me a minute to turn on my computer (on mobile right now) and ill tell you the exact version
Anonymous No.936535864
Let's chat and see where things go... I don't disappoint.
AssetsWiz No.936536624
>>936532962
I just checked and it's 3.13.2
Anonymous No.936537589 >>936538275
>>936509260
Finally some good fucking thread, in /b/ no less
Anonymous No.936537828
Also, for image2video nudify, check out Wan2GP for low budget cards (I couldn't get comfyUI to work without OOM). The installation instructions should be easy enough to follow: https://github.com/deepbeepmeep/Wan2GP/blob/main/docs/INSTALLATION.md
If any models are missing, look them up on Google and site:huggingface.co
As for Lora: https://huggingface.co/dnad244/wan_random_loras/tree/main
prompt I'm using (pretty sure I stole it somewhere else)
Rip her clothes. Medium shot involving a girl in the middle. She rips her shirt apart from her midriff, exposing her entire nude upper body. Titty drop, exposing her breasts. The girl is smiling
Anonymous No.936538172
>>936514311
Amateurs.

I'm saving the whole webpage.
Anonymous No.936538202 >>936538603
Thanks for such an insightful post. Can u please tell a way around sdxl since my potato pc is unable to run sdxl is there any other option for it?
Anonymous No.936538275
>>936537589
AssetsWiz No.936538603
>>936538202
Want to clarify what you mean by potato?
GPU?
RAM?
Anonymous No.936538692 >>936539130
>>936516923
just use this, it's the cheapest shit I know
Anonymous No.936538789 >>936539207 >>936539213
gpu vram 4gb 1650gtx
ram 16gb
AssetsWiz No.936539130 >>936539593
>>936538692
The whole reason I made this thread was to show people that you wouldn't have to use services like that.
Anonymous No.936539207
>>936538789
Run sd 1.5
It will be slow as hell, but will work
AssetsWiz No.936539213
>>936538789
Yeah, that's kind of a potato, but you should still be able to run standard sd. I'm at work in a meeting right now so I don't have time to look up the github link. Google it
Anonymous No.936539593
>>936539130
you cannot put this in a nudify thread.
Anonymous No.936539714
Anonymous No.936539768
>>936508496 (OP)
Requesting
Anonymous No.936541221
respect bump