No video

Lora Training using only ComfyUI!!

  Рет қаралды 20,428

AIFuzz

AIFuzz

5 ай бұрын

We show you how to train Loras exclusively in ComfyUI
Github
github.com/LarryJane491/Lora-...
Join and Support me ###
Support me on Patreon:
/ aifuzz
Let’s be Instagram friends:
/ aifuzz1
Discord

Пікірлер: 144
@user-ef4df8xp8p
@user-ef4df8xp8p 5 ай бұрын
Thank you so much for making the video on this interesting topic. Will try out the technique....
@AIFuzz59
@AIFuzz59 5 ай бұрын
No problem! Have fun with it!
@seaviwtf9796
@seaviwtf9796 2 ай бұрын
I am going to explain how I managed to make my ComfyUI portable + Lora Training-in-Comfy custom node work: Most of us do not have knowledge about the use of python scripts and we have to spend our lives searching for information on the Git or Reddit networks and yet not all errors can be addressed in the same way and I hope this can be useful for those who your ComfyUi portable throws you all kinds of errors. The first thing is to make sure that if you have any version of Python installed on your operating system (I use Windows 10) that your system environment (cmd, powershell) does not try to run your external python, what interests us is that everything is run from the "python_embeded" folder so that it makes use of its corresponding modules in " Python_embeded/Lib/site-packages) otherwise your "CMD" will run external libraries/modules in an installation that is located in another Python directory (another version of python that you already have installed can generate errors in its different modules) and for this in my case I decided to eliminate all Python paths on my Windows 10 system. Delete all Python-related "system environment variables" entries found in "Path" and then using file explorer copy the path (axample, C:\ComfyUI_windows_portable\python_embeded) to force the system to use of this Python and its modules in this way there will be no conflicts. You probably have to install get-pip.py, to let you run Pip commands in your CMD (use from the gpt chat browser) it will guide you without problems Once this is done, use file explorer and go to the Custom_nodes/Lora Training-in-Comfy custom node folder and using the CMD on your Windows system open a cmd in the same file explorer bar and use pip install requirements_win.txt ( _win for those of us who use Windows, requirements.txt for other systems) so that all the modules required for the Lora trainer are installed. Once this is done, go to Comfyui/custom_nodes/Lora-Training-in-Comfy-main/sd-scripts/ and repeat the same process with the file explorer, insert cmd in the bar and pip install requirements.txt to install modules important ones like "library" that usually generate errors. Finally, you must add a few lines of code with your text editor so that Comfyui does not generate a "setup_logging" error. inside the library folder (python_embeded/Lib/site-packages/ library) is the exscript "utils.py" this must be edited. my configuration that has worked for me provided by ChatGPT: import threading import log def setup_logging(log_file=None): """Configure the logging system.""" # Defines the log format log_format = '%(asctime)s - %(levelname)s - %(message)s' logging.basicConfig(format=log_format, level=logging.INFO, filename=log_file) # Example of how to add an additional console handler (optional) console_handler = logging.StreamHandler() console_handler.setLevel(logging.INFO) console_handler.setFormatter(logging.Formatter(log_format)) logging.getLogger('').addHandler(console_handler) def fire_in_thread(f, *args, **kwargs): """Executes a function in a thread.""" threading.Thread(target=f, args=args, kwargs=kwargs).start() With this it still gives me some errors but I can now train my parrots. edit: if the problem persists, start again from 0 but this time update ComfyUI portable from the .bat file in ComfyUI_windows_portable/update ->update_comfyui_and_python_dependencies.bat I updated it from the beginning but this may cause conflicts with other versions of pytorch remember to have CUDA and its tools installed, this is very important.
@fredrik241
@fredrik241 5 ай бұрын
Awesome thank you for this tutorial! I'm going to try it! :)
@AIFuzz59
@AIFuzz59 4 ай бұрын
Sure thing! Let us know how it goes
@osmanic5593
@osmanic5593 5 ай бұрын
Awesome! Thanks for the vid
@AIFuzz59
@AIFuzz59 5 ай бұрын
No problem!
@GamingDaveUK
@GamingDaveUK 3 ай бұрын
I have wd14 and training nodes installed, my comfyui uses cu 121 however I do not see lora caption load or lora caption save?
@bubb31gum
@bubb31gum 3 ай бұрын
How do I get the 1.21 version of pytorch for a separate portable install?
@thrillhouse500
@thrillhouse500 3 ай бұрын
PRO TIP: make sure your images are in PNG format. If not, you may get an error during the tagging phase.
@asyrofmuzakki
@asyrofmuzakki 2 ай бұрын
THANK YOU BUDDY! YOU TOTALLY SAVED MY LIFE :)
@Beauty.and.FashionPhotographer
@Beauty.and.FashionPhotographer Ай бұрын
@@asyrofmuzakki and a png can implement metadata how the image was done... ultra important for keeping a record for later, or for sharing ... especially in COMFY,... i drop images form civitai into comfy and can see all the nodes and settings which were used...
@NAAIN_heh
@NAAIN_heh 7 күн бұрын
but jpg can store some prompt too
@akhelper3866
@akhelper3866 5 сағат бұрын
bro thank you
@picobyte2732
@picobyte2732 2 ай бұрын
Thanks. Not yet tested but I think N-nodes GPT-loader simple and GPT-sampler could also be included in the captioning process.
@HulaKinza
@HulaKinza 2 ай бұрын
Thx Bro, really good and helpfull
@LunarFerns
@LunarFerns 5 ай бұрын
Thank you so much for the tutorial! One question, how to set the trigger word for lora? Or you don't need it for these loras?
@AIFuzz59
@AIFuzz59 5 ай бұрын
I have found that the Loras do work without trigger words however you can use the name Of the Lora as a trigger word and it will Increase the impact it has on the image
@iresolvers
@iresolvers 3 ай бұрын
do you have to link to the pytourch cu121 ???
@_warframe_2070
@_warframe_2070 2 ай бұрын
Hi, i installed this node to ComfyUI and it just doesn't open. I will try a few things i saw on github, but how can I uninstall it if the Comfy doesn't open?
@teealso
@teealso 4 ай бұрын
I've been trying for two days to get this running and to no avail. I've narrowed it down to the xformer not finding the GPU. I've done all the uninstalls of torch, making sure I'm using 1.2.1 but I can't seen to it to engage the GPU, it only wants to use the CPU which causes it to fail. I'm open to any suggestions. I've gone all through the developer's site as well regarding making sure my I have CUDA in my python path, still no dice.
@AIFuzz59
@AIFuzz59 4 ай бұрын
Have you tried to uninstall xformers and install it fresh? Also are you using a new fresh ComfyUI install? You also should not update ComfyUi
@teealso
@teealso 4 ай бұрын
Hey thanks for the reply. What finally got it working was adding the CUDA path to my env variables. ChatGTP was able to help me out. I'm getting a lot of little click away errors while it's starting up, but once it's going on the epochs it's finishing. Thanks for help!
@thedobrobro
@thedobrobro 4 ай бұрын
SDXL models training lora is not working with that node((
@Wurmhouse
@Wurmhouse 3 ай бұрын
I don’t understand the ‘comfy version’ thing at the beginning… someone can help me?
@Beauty.and.FashionPhotographer
@Beauty.and.FashionPhotographer Ай бұрын
could one/ you implement a xy plot grid to do series of tests with different loras and different weights to be able to see better what combination looks best? if such a thing is possible where would that XY PLOT be implemented? after the checkpoint and before the prompt ? that xy plot grid implemantion could make an interesting video .... i think
@AIFuzz59
@AIFuzz59 Ай бұрын
Great idea! We did a video on XY plotting a while back. It would be interesting to work it into this one
@Beauty.and.FashionPhotographer
@Beauty.and.FashionPhotographer Ай бұрын
@@AIFuzz59 cool... i think it actually the only way to figure out what lora works best and what weight etc works best, the only other way is to randomly guess each time, and manually enter continuously other parameters, whilst an xy grid one can go and do other more productive things and then come back after its done and be utmost precise with the next steps. i am just a noob, and only learned about this last week. and still have a hard time how it is actually done, and where one must implement such a xy plot in between checkpoint , loras , ksamplers, resamplers, and so on... so any help you could post in a video would be just amazing ;)
@Mr0rginalet
@Mr0rginalet 4 ай бұрын
I seem to have a issue when I start the training, the prompt is executed in less then a second and nothing is generated: "Error while finding module specification for 'accelerate.commands.launch' (ModuleNotFoundError: No module named 'accelerate')"
@AIFuzz59
@AIFuzz59 4 ай бұрын
You may need to install accelerate
@WhySoBroke
@WhySoBroke 5 ай бұрын
Very cool!! Is it possible to train SDXL Loras?
@AIFuzz59
@AIFuzz59 5 ай бұрын
Yes!
@AIFuzz59
@AIFuzz59 5 ай бұрын
Just make sure the base model You train on is an sdxl model
@luislozano2896
@luislozano2896 5 ай бұрын
So what version of torch was the bad one ??? and how would you roll back to the right version?
@AIFuzz59
@AIFuzz59 5 ай бұрын
It would be 1.18
@Halfgawd_Halfdevil
@Halfgawd_Halfdevil 4 ай бұрын
shouldn't it install the updated python code when comfy UI updates? and how would you know if the version installed has the correct version? @@AIFuzz59
@Xavi-Tenis
@Xavi-Tenis 3 ай бұрын
i instaled in the custom nodes, but are missing the load and save node of lora training, any advice? thanks
@tcgerbilheroes4386
@tcgerbilheroes4386 2 ай бұрын
same here
@zeebries1837
@zeebries1837 13 күн бұрын
It's the custom node called Image-Captioning-in-ComfyUI
@umarcga7823
@umarcga7823 4 ай бұрын
I am issues installing the requirement files.... giving me error
@oreiasccp
@oreiasccp 3 ай бұрын
me too, u solve this ?
@gequ3104
@gequ3104 5 ай бұрын
thank you for this tutorial. Are there any downsides in comparison to Kohya training?
@AIFuzz59
@AIFuzz59 5 ай бұрын
So far the only downside is that with some models, it doesn’t click with the Lora
@jsnavely76
@jsnavely76 5 ай бұрын
One downside is it doesn't appear to have very many options that you can configure like what max size to scale the images down to or what network rank & alpha you want. You're stuck with whatever defaults it picked for you, but I haven't tried it so perhaps you might be able to adjust those settings in a configuration file somewhere. If you're already going to the trouble of making an alternate install of ComfyUI just for LoRA training, I'm not sure why you wouldn't just use Kohya or another dedicated training app instead and have full control over all of the settings. If it's a matter of wanting a simplied app, then I don't know why you are using ComfyUI at all because it is probably the highest learning curve of any AI image generator due to how you have to have a lot of knowledge to be able to wire everything up from scratch or be limited to only using pre-made workflows, whereas other apps allow you to do many complex things with the click of a few buttons.
@AIFuzz59
@AIFuzz59 5 ай бұрын
@@jsnavely76 it’s time. I have trained Loras on Khoya and it takes several hours. This is a quicker way to get Lota training done. It can be done in less than 30 minutes. That also allows you to experiment with training and trying different things out.
@AIFuzz59
@AIFuzz59 5 ай бұрын
@@jsnavely76 I know many people who have several installations of ComfyUI. It’s not uncommon. It is very helpful as well since there Are times custom nodes do clash with one another
@HiProfileAI
@HiProfileAI 4 ай бұрын
​@@AIFuzz59yup I had my comfy completely crash after loading someone's workflow. Couldn't get out of it and had to reinstall. Thank goodness I had a backup alternate comfy install.
@teealso
@teealso 4 ай бұрын
AssertionError: Torch not compiled with CUDA enabled I keep getting this error on the clean comfyUI install everytime. I've followed the instructions on what to do about that on the main ComfyUI Github page about uninstalling the Torch an re-installing it, still get the error. Has anyone else had this issue? Also, after downloading and installing the LJRE nodes, I don't see the loader or saver nodes, just the Training and Training Advanced options.
@amorgan5844
@amorgan5844 4 ай бұрын
Did you figure it out?
@teealso
@teealso 4 ай бұрын
@@amorgan5844 hi yes! Thanks. Took a while and I’m not even sure what I did but it works now.
@keklmao
@keklmao 4 ай бұрын
Does comfy ui also work with fine tuning LLMs?
@AIFuzz59
@AIFuzz59 4 ай бұрын
Not yet but hopefully soon
@cool4110
@cool4110 18 күн бұрын
RuntimeError: unmatched '}' in format string Don't know how to fix it....
@urieldeveaud
@urieldeveaud 3 ай бұрын
you get a new follower :) nice video! ... do you know how to merge loras in comfyui ? thx
@AIFuzz59
@AIFuzz59 3 ай бұрын
Yes, there are a few Lora merge custom nodes out there. You can even use a Lora stacker which works well. I’ll find some and do a video on the options
@urieldeveaud
@urieldeveaud 3 ай бұрын
@@AIFuzz59 nice!
@leonardkim690
@leonardkim690 4 ай бұрын
Thanks for your tutorial. but I've got an error. 'C:\StabilityMatrix-win-x64\Data\Assets\Python310\python.exe: Error while finding module specification for 'accelerate.commands.launch' (ModuleNotFoundError: No module named 'accelerate')' , could you let me know how to fix it?
@AIFuzz59
@AIFuzz59 4 ай бұрын
Can you try to reinstall accelerate?
@NgocNguyen_NDN
@NgocNguyen_NDN 4 ай бұрын
Can you guide me on how to accelerate?@@AIFuzz59
@iccuesang
@iccuesang 3 ай бұрын
@@AIFuzz59 How to reinstall accelerate?
@NgocNguyen_NDN
@NgocNguyen_NDN 4 ай бұрын
I'm getting this error, can you help me?, (cannot access local variable 'image1' where it is not associated with a value.)
@AIFuzz59
@AIFuzz59 4 ай бұрын
All the images need to be in png format. You will get that error if they are not
@NgocNguyen_NDN
@NgocNguyen_NDN 4 ай бұрын
Thank you very much, I have done it.@@AIFuzz59
@NgocNguyen_NDN
@NgocNguyen_NDN 4 ай бұрын
c:\users\admin\appdata\local\programs\python\python311\python.exe:error finding module parameters for speed.commands.launch (modulenotfounderror:no module named `accelerate`) ship is completed I'm having this error, can you help me? Thank you very much. @@AIFuzz59
@asyrofmuzakki
@asyrofmuzakki 2 ай бұрын
please help me, i get an error like this: C:\My Program Files\AI\ComfyUI_windows_portable\ComfyUI\custom_nodes\Lora-Training-in-Comfy/sd-scripts/train_network.py C:\My Program Files\AI\ComfyUI_windows_portable\python_embeded\python.exe: Error while finding module specification for 'accelerate.commands.launch' (ModuleNotFoundError: No module named 'accelerate') how to fix it?
@seaviwtf9796
@seaviwtf9796 2 ай бұрын
It seems that you can't give us an explanation, like you I also have the same problem and through chatgpt (by asking and pasting the errors) I have managed to solve some errors but it's still the same, the training ends in less than 15 seconds because now It gives me errors with synchronization libraries like Aio.lib and Libaio
@ImAlecPonce
@ImAlecPonce 2 ай бұрын
I've installed, reinstalled and run updates.... only 3 nodes apear for me
@user-vv6ji3dz7y
@user-vv6ji3dz7y Ай бұрын
thats because he didn't mention you have to install the others ones appart, I struggled with this too
@user-vv6ji3dz7y
@user-vv6ji3dz7y Ай бұрын
am having an issue in which it can't find my images in database for some reason , mines are all in PNG's aswell, can I get anyones help pls?
@pyeleon5036
@pyeleon5036 Ай бұрын
according to the original doc of it, you should rename the directory of training images into {number}_{whatever} format
@placeholder_Utoob
@placeholder_Utoob 4 ай бұрын
How do I install the node?
@AIFuzz59
@AIFuzz59 4 ай бұрын
You would go to their GitHub page and install it to your custom nodes folder in ComfyUI
@blacktilebluewall
@blacktilebluewall 4 ай бұрын
ayo whats that background noise 🌚
@helix8847
@helix8847 4 ай бұрын
I am sure he is using AI Voice.
@falconbmstutorials6496
@falconbmstutorials6496 3 ай бұрын
It's called an "hallucination" when you use a trained voice
@Muhilica
@Muhilica 5 ай бұрын
I must ask...how much VRAM for 1.5 vs SDXL?
@AIFuzz59
@AIFuzz59 5 ай бұрын
I have 8gb VRAM and am able to train both Sd 1.5 and SDXL so I would say at least 8
@Muhilica
@Muhilica 5 ай бұрын
@@AIFuzz59 I see. Well, tomorrow I'll try training with my 2070QMax on an SDXL model and get back with the results. ThankS!
@Muhilica
@Muhilica 5 ай бұрын
I just throws an error as soon as I start training so...I'll get back to You on github :D
@AIFuzz59
@AIFuzz59 5 ай бұрын
@@Muhilica what error are you getting? The version of Pystorch is pretty important and throws a lot of errors
@Muhilica
@Muhilica 5 ай бұрын
@@AIFuzz59 Indeed, I noticed :) Tried a fresh Comfyui install under windows 11 only for the purpose of training and the UI worked, then, after installing the training node all hell broke loose. Eh, I'll try again in a couple of days and keep you posted in Git :)
@genki831
@genki831 2 ай бұрын
Lol were you hungry when you recorded the voice over?
@AIFuzz59
@AIFuzz59 2 ай бұрын
Yes very
@sirmeon1231
@sirmeon1231 4 ай бұрын
Hm, as long as we have to make a second installation of comfy, i don't know why i should prefer this to kohya...
@AIFuzz59
@AIFuzz59 4 ай бұрын
You don’t have to but I did because my main ComfyUI has many custom nodes and slows up start time. Having a several ComfyUI installs is pretty common especially for testing different nodes
@PaulRoneClarke
@PaulRoneClarke Ай бұрын
Is that your microphone, or have you not eaten for a day or so?
@chintansheta
@chintansheta 5 ай бұрын
I got this error, please help to fix it. Error occurred when executing LoRA Caption Load: cannot access local variable 'image1' where it is not associated with a value File "E:\Stable\ComfyUI_win\ComfyUI\execution.py", line 152, in recursive_execute output_data, output_ui = get_output_data(obj, input_data_all) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "E:\Stable\ComfyUI_win\ComfyUI\execution.py", line 82, in get_output_data return_values = map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "E:\Stable\ComfyUI_win\ComfyUI\execution.py", line 75, in map_node_over_list results.append(getattr(obj, func)(**slice_dict(input_data_all, i))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "E:\Stable\ComfyUI_win\ComfyUI\custom_nodes\Image-Captioning-in-ComfyUI\LoRAcaption.py", line 148, in captionload return text, path, image1, len(images)
@RahulGupta1981
@RahulGupta1981 5 ай бұрын
something similar here too
@BrunoOLucido
@BrunoOLucido 5 ай бұрын
same here
@SonKrals
@SonKrals 5 ай бұрын
same here!!!
@davidedifrancostudiotemp4139
@davidedifrancostudiotemp4139 5 ай бұрын
same
@davidedifrancostudiotemp4139
@davidedifrancostudiotemp4139 5 ай бұрын
when using png (not jpg) it does work
@AInomaly600
@AInomaly600 4 ай бұрын
audio is sooo weird
@AIFuzz59
@AIFuzz59 4 ай бұрын
Thanks!
@captainadventures
@captainadventures 4 ай бұрын
Rude
@dmcdcm
@dmcdcm 2 ай бұрын
At first I thought you were just being rude but then the weird ‘mhmm’s and moans got louder and more frequent. @AIFuzz59 I’m so curious what happened lol.
@sam5519
@sam5519 2 ай бұрын
@@dmcdcm It is typical sound after overuse of noise reduction
@j_shelby_damnwird
@j_shelby_damnwird 20 күн бұрын
Was that a baby in the background?
@PlayerGamesOtaku
@PlayerGamesOtaku 3 ай бұрын
hi, unfortunately in the final part when you show all the windows are connected, I get stuck because I don't know how to connect them. Then on Lora name I get undefined. towards the end your tutorial becomes a mess
@AIFuzz59
@AIFuzz59 3 ай бұрын
Ok I apologize, I’m going to upload an updated version soon
@PlayerGamesOtaku
@PlayerGamesOtaku 3 ай бұрын
@@AIFuzz59 hi, let me know when the new updated tutorial comes out :)
@PlayerGamesOtaku
@PlayerGamesOtaku 2 ай бұрын
@@AIFuzz59 Hi, have you done the new updated tutorial?
@emiliomartinez7132
@emiliomartinez7132 3 ай бұрын
failed to download tagger. why'?
@AIFuzz59
@AIFuzz59 3 ай бұрын
Is this downloading it from the GitHub?
@emiliomartinez7132
@emiliomartinez7132 3 ай бұрын
@@AIFuzz59 i already had the node in comfy. it stops at 97 percent of load. i am trying to make a folder named "database" and put there the folder with the png files. it didn't work. the console writes timeout error from none. as you can see i am quite slow in this. very grateful for your answer.
@emiliomartinez7132
@emiliomartinez7132 3 ай бұрын
finally it works ! great nodes @@AIFuzz59
@nerdbg1782
@nerdbg1782 Ай бұрын
kudos for not using friggin AI voice. I am tired of all the sibilant artifacts distracting me while trying to actually figure something out
@cyril1111
@cyril1111 5 ай бұрын
so 38min for 19 images - Slower than Khoya - but seems to get a good quality, maybe worth a try.
@AIFuzz59
@AIFuzz59 5 ай бұрын
For quick lora training it works well. I am sure if the data set were larger, outcome would improve but so will time. I do have a slower machine so also keep that in mind
@amorgan5844
@amorgan5844 4 ай бұрын
​@AIFuzz59 shit ive trained dfl models for 3 weeks, this is so much easier.😂
@dr.gurn420
@dr.gurn420 4 ай бұрын
@@AIFuzz59 what machine are you running? I'm trying to workout roughly how quick this will be on a NVIDIA L4 32 GB
@user-ge6gc9ti9c
@user-ge6gc9ti9c 4 ай бұрын
Not working, after done nothing its created.
@tcgerbilheroes4386
@tcgerbilheroes4386 2 ай бұрын
Programs\Python\Python311\python.exe: Error while finding module specification for 'accelerate.commands.launch' (ModuleNotFoundError: No module named 'accelerate') Train finished. i get this error while training, any help ?
@AIFuzz59
@AIFuzz59 2 ай бұрын
Go to the install packages and type in Accelerate, restart ComfyuI and you should have it
@tcgerbilheroes4386
@tcgerbilheroes4386 Ай бұрын
@@AIFuzz59 sorry i just got time to get on comfy, where do i find these install packages ? sorry to burden u cant u guide me through it if u dont mind
@tierlistboss
@tierlistboss 3 ай бұрын
All my captions were generated, and at the moment of execution, after having correctly set up the advanced LoRA training node in Comfy, I started the training and received the following error message: Error occurred when executing LoRA Caption Save: list index out of range File "C:\ComfyUI_windows_portable_nvidia_cu121_or_cpu\ComfyUI_windows_portable\ComfyUI\execution.py", line 151, in recursive_execute output_data, output_ui = get_output_data(obj, input_data_all) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\ComfyUI_windows_portable_nvidia_cu121_or_cpu\ComfyUI_windows_portable\ComfyUI\execution.py", line 81, in get_output_data return_values = map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\ComfyUI_windows_portable_nvidia_cu121_or_cpu\ComfyUI_windows_portable\ComfyUI\execution.py", line 74, in map_node_over_list results.append(getattr(obj, func)(**slice_dict(input_data_all, i))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\ComfyUI_windows_portable_nvidia_cu121_or_cpu\ComfyUI_windows_portable\ComfyUI\custom_nodes\Image-Captioning-in-ComfyUI\LoRAcaption.py", line 53, in save_text_file filename = self.generate_filename(path, namelistsplit, file_extension) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\ComfyUI_windows_portable_nvidia_cu121_or_cpu\ComfyUI_windows_portable\ComfyUI\custom_nodes\Image-Captioning-in-ComfyUI\LoRAcaption.py", line 65, in generate_filename filename = f"{namelistsplit[counter-1]}{extension}" ~~~~~~~~~~~~~^^^^^^^^^^^
@AIFuzz59
@AIFuzz59 3 ай бұрын
Did the captions save as txt files in the folder?
@tierlistboss
@tierlistboss 3 ай бұрын
@@AIFuzz59 in fact everything is ok I even optimized and cleaned all the captions one by one, I installed all the dependencies which were necessary and indicated in the document "requirements_win.txt" and the training does not want to start
@umarcga7823
@umarcga7823 4 ай бұрын
it's data base not betabase
@u-N16z0rz
@u-N16z0rz 4 ай бұрын
Is this AI narrated?
@falconbmstutorials6496
@falconbmstutorials6496 3 ай бұрын
DON'T install this dependency, it destroyed my ComfyUI installation! Now it says it cannot find the torch Cuda.
@AIFuzz59
@AIFuzz59 3 ай бұрын
It works fine. I suggested using a fresh install of ComfyUI if you are nervous and don’t know what you are doing.
@kinenbib
@kinenbib 2 ай бұрын
@@AIFuzz59 same here every time, after a fresh install ComfyUI If I just install the node the same error appears what could it be? win11?
@AIFuzz59
@AIFuzz59 2 ай бұрын
@@kinenbib what error is it?
@fus3n
@fus3n 23 күн бұрын
Bruh you better off using a normal tts that AI voice filter or voice is really really weird
@Posdrums3
@Posdrums3 2 ай бұрын
Wtf is going on with your voice? Filter?
@caseyj789456
@caseyj789456 3 ай бұрын
Thx btw but not work for me. Tons for errors... Back to old method
@luisavila9051
@luisavila9051 27 күн бұрын
raise RuntimeError('Error(s) in loading state_dict for {}: \t{}'.format( RuntimeError: Error(s) in loading state_dict for CLIPTextModel: Unexpected key(s) in state_dict: "text_model.embeddings.position_ids".
@alex.puliatti
@alex.puliatti 4 ай бұрын
hey i get this error when tryhing to generate caption: Error occurred when executing LoRA Caption Load: cannot access local variable 'image1' where it is not associated with a value File "C:\ComfyUI_windows_portable_nvidia_cu121_or_cpu\ComfyUI_windows_portable\ComfyUI\execution.py", line 152, in recursive_execute output_data, output_ui = get_output_data(obj, input_data_all) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\ComfyUI_windows_portable_nvidia_cu121_or_cpu\ComfyUI_windows_portable\ComfyUI\execution.py", line 82, in get_output_data return_values = map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\ComfyUI_windows_portable_nvidia_cu121_or_cpu\ComfyUI_windows_portable\ComfyUI\execution.py", line 75, in map_node_over_list results.append(getattr(obj, func)(**slice_dict(input_data_all, i))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\ComfyUI_windows_portable_nvidia_cu121_or_cpu\ComfyUI_windows_portable\ComfyUI\custom_nodes\Image-Captioning-in-ComfyUI-main\LoRAcaption.py", line 148, in captionload return text, path, image1, len(images) ^^^^^^ what can i do?
@AIFuzz59
@AIFuzz59 4 ай бұрын
All the images need to be in PNG format. You will get that error if they are in jpg or any other format
@emiliomartinez7132
@emiliomartinez7132 3 ай бұрын
I got that error because I hadn't set the location of the png file correctly.
@alfaruqasri1357
@alfaruqasri1357 4 ай бұрын
LORA CAPTION LOAD, i got this error, can you help me Error occurred when executing LoRA Caption Load: cannot access local variable 'image1' where it is not associated with a value File "D:\Stable Diffusion\ComfyUI_windows_portabless\ComfyUI\execution.py", line 151, in recursive_execute output_data, output_ui = get_output_data(obj, input_data_all) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "D:\Stable Diffusion\ComfyUI_windows_portabless\ComfyUI\execution.py", line 81, in get_output_data return_values = map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "D:\Stable Diffusion\ComfyUI_windows_portabless\ComfyUI\execution.py", line 74, in map_node_over_list results.append(getattr(obj, func)(**slice_dict(input_data_all, i))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "D:\Stable Diffusion\ComfyUI_windows_portabless\ComfyUI\custom_nodes\Image-Captioning-in-ComfyUI\LoRAcaption.py", line 148, in captionload return text, path, image1, len(images) ^^^^^^
@saidmoya12
@saidmoya12 4 ай бұрын
Works only with png files
@emiliomartinez7132
@emiliomartinez7132 3 ай бұрын
I got that error because I hadn't set the location of the png file correctly.
ComfyUI 2D to stylized 3D Workflow (Not actual 3D)
9:04
AIFuzz
Рет қаралды 2,5 М.
LORA Training - for HYPER Realistic Results
36:20
Olivio Sarikas
Рет қаралды 97 М.
Clown takes blame for missing candy 🍬🤣 #shorts
00:49
Yoeslan
Рет қаралды 47 МЛН
IQ Level: 10000
00:10
Younes Zarou
Рет қаралды 11 МЛН
Training LoRA with Kohya (theory included!)
36:18
Laura Carnevali
Рет қаралды 89 М.
ComfyUI Lora and Lora stack workflow
18:54
AIFuzz
Рет қаралды 8 М.
ComfyUI for Everything (other than stable diffusion)
32:53
Design Input
Рет қаралды 30 М.
Build Your Own ComfyUI APP!
19:08
Latent Vision
Рет қаралды 19 М.
Lora-Training-in-Comfy custom node Video tutorial
8:02
Larry Jane
Рет қаралды 3,4 М.
SDXL Lora Training with CivitAI, walkthrough
13:43
FiveBelowFiveUK
Рет қаралды 5 М.
LORA training EXPLAINED for beginners
27:33
Not4Talent
Рет қаралды 97 М.
ComfyUI  LORA training workflow #comfyui  #lora #workflow
5:08
PixelEasel
Рет қаралды 6 М.
Clown takes blame for missing candy 🍬🤣 #shorts
00:49
Yoeslan
Рет қаралды 47 МЛН