Qwen Lora requires much higher learning rates than Quen Edit 2509? Any tutorials? Or personal experience? What has been discovered about Qwen Lora training in the last three months?
1e-4 doesn't work well with qwen; even with over 2,000 steps, it seems undertrained. But that same value seems acceptable for qwen. edit 2509v
I have little experience. I don't know if it's my mistake. Batch size = 1. I generally practice with 10 to 30 images.
https://redd.it/1owkr5w
@rStableDiffusion
1e-4 doesn't work well with qwen; even with over 2,000 steps, it seems undertrained. But that same value seems acceptable for qwen. edit 2509v
I have little experience. I don't know if it's my mistake. Batch size = 1. I generally practice with 10 to 30 images.
https://redd.it/1owkr5w
@rStableDiffusion
Reddit
From the StableDiffusion community on Reddit
Explore this post and more from the StableDiffusion community
What model have best prompt adherence?
What I'm interested is build complex scene, like two person fighting pointing guns / sword and etc.
https://redd.it/1owqitn
@rStableDiffusion
What I'm interested is build complex scene, like two person fighting pointing guns / sword and etc.
https://redd.it/1owqitn
@rStableDiffusion
Reddit
From the StableDiffusion community on Reddit
Explore this post and more from the StableDiffusion community
OpenSource Face Swapper
can i ask what's the best face swapper currently ? i prefer one with open source, thanks !
https://redd.it/1owolx1
@rStableDiffusion
can i ask what's the best face swapper currently ? i prefer one with open source, thanks !
https://redd.it/1owolx1
@rStableDiffusion
Reddit
From the StableDiffusion community on Reddit
Explore this post and more from the StableDiffusion community
Created a little story around my favorite artwork in my town (Qwen Edit + Wan 2.2)
https://www.youtube.com/watch?v=8y1MAaHunEA
https://redd.it/1owsdef
@rStableDiffusion
https://www.youtube.com/watch?v=8y1MAaHunEA
https://redd.it/1owsdef
@rStableDiffusion
YouTube
Re Africano
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
Eigen-Banana-Qwen-Image-Edit: Fast Image Editing with Qwen-Image-Edit LoRA
https://redd.it/1owykn7
@rStableDiffusion
https://redd.it/1owykn7
@rStableDiffusion
[WIP] Another ComfyUI interface, personal project. I can release to the public if there is enough interest.
https://redd.it/1ox6v1m
@rStableDiffusion
https://redd.it/1ox6v1m
@rStableDiffusion
TagGUI Video - Make captions for Wan LoRA training
https://youtu.be/FGNSq01nOT4
https://redd.it/1ox7jyy
@rStableDiffusion
https://youtu.be/FGNSq01nOT4
https://redd.it/1ox7jyy
@rStableDiffusion
YouTube
TagGUI Video - Make captions for Wan LoRA training
This is a showcase of my TagGUI fork TagGUI Video I made for video captions for LoRa training in models like WAN or Hunyuan etc - https://github.com/diodiogod/taggui-video
## 📢 Stay updated with my latest workflow and projects developments and community…
## 📢 Stay updated with my latest workflow and projects developments and community…
Prevent your images, workflows and model from being deleted during ConfyUI update
This post is related to https://www.reddit.com/r/StableDiffusion/comments/1owiicy/warning\_make\_sure\_to\_not\_store\_your\_confyui/ but Reddit would not let me post this as a comment. So I try a separate post.
As many recommended to create "Symlinks", the actual command for this is "mklink"
https://learn.microsoft.com/de-de/windows-server/administration/windows-commands/mklink
I use a combination of
--output-directory <path\to\output> --user-directory <path\to\user>
and Junctions (they work better for me than Symlinks, also as I used Sysinternals junction.exe for many years).
mklink /j ".\ComfyUI\models" "G:\StableDiffusionModels"
This is my launch command in "run_nvidia_gpu.bat" (portable version):
.\pythonembeded\python.exe -s ComfyUI\main.py --windows-standalone-build --output-directory "D:\StableDiffusion\Image-Outputs\Comfy-Outputs" --user-directory "D:\StableDiffusion\ComfyUIUser"
Which works for this directory structure:
D:\StableDiffusion\
├─ ComfyUIportable0357\
│ ├─ ComfyUI\
│ ├─ pythonembeded\
│ ├─ runnvidiagpu.bat
│ ├─ MKLINKCreateComfyUI-ModelsG-ComfyUIModels+User..ComfyUIUser.bat
├─ ComfyUIUser\
├─ Image-Outputs\
│ ├─ Comfy-Outputs
│ ├─SD-WebUI-Outputs\
The user directory and the image output directories are safely outside the ComfyUI folder.
In addition, I copy my batch file "MKLINK\Create_ComfyUI-Models_G-ComfyUIModels+User_..ComfyUI_User.bat"
to each ComfyUI_portable revision folder (here ComfyUI_portable_0357).
Batch content:
echo Off
if exist .\ComfyUI\models\ (
echo Folder ".\ComfyUI\models" already exists. Cannot create Junction.
echo Check content and move folder to new location or delete it, if "models" folder already exists at new location.
goto Exit
)
if exist .\ComfyUI\user\ (
echo Folder ".\ComfyUI\user" already exists. Cannot create Junction.
echo Check content and move folder to new location or delete it, if "user" folder already exists at the new location.
goto Exit
)
Echo Creating Junctions
mklink /j .\ComfyUI\models G:\StableDiffusionModels
mklink /j .\ComfyUI\user ..\ComfyUIUser
echo Done!
:Exit
echo.
pause
Yes I know, the "user" folder is handled twice, in the start bat and with junction, but better safe than sorry.
However to use this batch file, you first need to relocate the model and user folder to a safe location, they must not extist anymore in ComfyUI folder.
Note that if the ComfyUI update batch files are used, the Junctions will be replaced by standard folders from git. So you need to delete thes folder and run the MKlink batch again.
The "custom\nodes" folder is not included on purpose, to keep this separaters in different Comfy installs.
Hope this helps.
Edit, fixed a formatting issue.
https://redd.it/1ox2uc3
@rStableDiffusion
This post is related to https://www.reddit.com/r/StableDiffusion/comments/1owiicy/warning\_make\_sure\_to\_not\_store\_your\_confyui/ but Reddit would not let me post this as a comment. So I try a separate post.
As many recommended to create "Symlinks", the actual command for this is "mklink"
https://learn.microsoft.com/de-de/windows-server/administration/windows-commands/mklink
I use a combination of
--output-directory <path\to\output> --user-directory <path\to\user>
and Junctions (they work better for me than Symlinks, also as I used Sysinternals junction.exe for many years).
mklink /j ".\ComfyUI\models" "G:\StableDiffusionModels"
This is my launch command in "run_nvidia_gpu.bat" (portable version):
.\pythonembeded\python.exe -s ComfyUI\main.py --windows-standalone-build --output-directory "D:\StableDiffusion\Image-Outputs\Comfy-Outputs" --user-directory "D:\StableDiffusion\ComfyUIUser"
Which works for this directory structure:
D:\StableDiffusion\
├─ ComfyUIportable0357\
│ ├─ ComfyUI\
│ ├─ pythonembeded\
│ ├─ runnvidiagpu.bat
│ ├─ MKLINKCreateComfyUI-ModelsG-ComfyUIModels+User..ComfyUIUser.bat
├─ ComfyUIUser\
├─ Image-Outputs\
│ ├─ Comfy-Outputs
│ ├─SD-WebUI-Outputs\
The user directory and the image output directories are safely outside the ComfyUI folder.
In addition, I copy my batch file "MKLINK\Create_ComfyUI-Models_G-ComfyUIModels+User_..ComfyUI_User.bat"
to each ComfyUI_portable revision folder (here ComfyUI_portable_0357).
Batch content:
echo Off
if exist .\ComfyUI\models\ (
echo Folder ".\ComfyUI\models" already exists. Cannot create Junction.
echo Check content and move folder to new location or delete it, if "models" folder already exists at new location.
goto Exit
)
if exist .\ComfyUI\user\ (
echo Folder ".\ComfyUI\user" already exists. Cannot create Junction.
echo Check content and move folder to new location or delete it, if "user" folder already exists at the new location.
goto Exit
)
Echo Creating Junctions
mklink /j .\ComfyUI\models G:\StableDiffusionModels
mklink /j .\ComfyUI\user ..\ComfyUIUser
echo Done!
:Exit
echo.
pause
Yes I know, the "user" folder is handled twice, in the start bat and with junction, but better safe than sorry.
However to use this batch file, you first need to relocate the model and user folder to a safe location, they must not extist anymore in ComfyUI folder.
Note that if the ComfyUI update batch files are used, the Junctions will be replaced by standard folders from git. So you need to delete thes folder and run the MKlink batch again.
The "custom\nodes" folder is not included on purpose, to keep this separaters in different Comfy installs.
Hope this helps.
Edit, fixed a formatting issue.
https://redd.it/1ox2uc3
@rStableDiffusion
Reddit
From the StableDiffusion community on Reddit
Explore this post and more from the StableDiffusion community
Finally finished making a 3.03-min coherent AI anime music video using wan 2.1 and wan 2.2
https://youtu.be/ZnOjBCREQPs
https://redd.it/1oxcm7w
@rStableDiffusion
https://youtu.be/ZnOjBCREQPs
https://redd.it/1oxcm7w
@rStableDiffusion
YouTube
i spent 200 hours creating an anime AI music video... LOOK.AT.ME...
i spent 200 hours creating an anime AI music video... LOOK.AT.ME...
This 3.04 minute, coherent AI anime video was the result of 200 hours of storyboarding, editing, and countless revisions.
This is the first official music video for my e-band, Inferna Rosa…
This 3.04 minute, coherent AI anime video was the result of 200 hours of storyboarding, editing, and countless revisions.
This is the first official music video for my e-band, Inferna Rosa…