Тёмный

Lora Training using only ComfyUI!! 

AIFuzz
Подписаться 12 тыс.
Просмотров 15 тыс.
50% 1

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

Опубликовано:

 

26 фев 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 121   
@seaviwtf9796
@seaviwtf9796 18 дней назад
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.
@thrillhouse500
@thrillhouse500 Месяц назад
PRO TIP: make sure your images are in PNG format. If not, you may get an error during the tagging phase.
@asyrofmuzakki
@asyrofmuzakki 20 дней назад
THANK YOU BUDDY! YOU TOTALLY SAVED MY LIFE :)
@user-ef4df8xp8p
@user-ef4df8xp8p 3 месяца назад
Thank you so much for making the video on this interesting topic. Will try out the technique....
@AIFuzz59
@AIFuzz59 3 месяца назад
No problem! Have fun with it!
@osmanic5593
@osmanic5593 3 месяца назад
Awesome! Thanks for the vid
@AIFuzz59
@AIFuzz59 3 месяца назад
No problem!
@fredrik241
@fredrik241 2 месяца назад
Awesome thank you for this tutorial! I'm going to try it! :)
@AIFuzz59
@AIFuzz59 2 месяца назад
Sure thing! Let us know how it goes
@Xavi-Tenis
@Xavi-Tenis Месяц назад
i instaled in the custom nodes, but are missing the load and save node of lora training, any advice? thanks
@GamingDaveUK
@GamingDaveUK Месяц назад
I have wd14 and training nodes installed, my comfyui uses cu 121 however I do not see lora caption load or lora caption save?
@picobyte2732
@picobyte2732 23 дня назад
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 15 дней назад
Thx Bro, really good and helpfull
@bubb31gum
@bubb31gum Месяц назад
How do I get the 1.21 version of pytorch for a separate portable install?
@_warframe_2070
@_warframe_2070 4 дня назад
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?
@LunarFerns
@LunarFerns 3 месяца назад
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 3 месяца назад
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
@teealso
@teealso 2 месяца назад
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 2 месяца назад
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 2 месяца назад
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!
@Mr0rginalet
@Mr0rginalet 2 месяца назад
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 2 месяца назад
You may need to install accelerate
@Wurmhouse
@Wurmhouse Месяц назад
I don’t understand the ‘comfy version’ thing at the beginning… someone can help me?
@iresolvers
@iresolvers 25 дней назад
do you have to link to the pytourch cu121 ???
@ImAlecPonce
@ImAlecPonce 21 день назад
I've installed, reinstalled and run updates.... only 3 nodes apear for me
@luislozano2896
@luislozano2896 2 месяца назад
So what version of torch was the bad one ??? and how would you roll back to the right version?
@AIFuzz59
@AIFuzz59 2 месяца назад
It would be 1.18
@Halfgawd_Halfdevil
@Halfgawd_Halfdevil 2 месяца назад
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
@thedobrobro
@thedobrobro 2 месяца назад
SDXL models training lora is not working with that node((
@teealso
@teealso 2 месяца назад
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 2 месяца назад
Did you figure it out?
@teealso
@teealso 2 месяца назад
@@amorgan5844 hi yes! Thanks. Took a while and I’m not even sure what I did but it works now.
@leonardkim690
@leonardkim690 2 месяца назад
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 2 месяца назад
Can you try to reinstall accelerate?
@NgocNguyen_NDN
@NgocNguyen_NDN 2 месяца назад
Can you guide me on how to accelerate?@@AIFuzz59
@iccuesang
@iccuesang Месяц назад
@@AIFuzz59 How to reinstall accelerate?
@WhySoBroke
@WhySoBroke 3 месяца назад
Very cool!! Is it possible to train SDXL Loras?
@AIFuzz59
@AIFuzz59 3 месяца назад
Yes!
@AIFuzz59
@AIFuzz59 3 месяца назад
Just make sure the base model You train on is an sdxl model
@blacktilebluewall
@blacktilebluewall 2 месяца назад
ayo whats that background noise 🌚
@helix8847
@helix8847 2 месяца назад
I am sure he is using AI Voice.
@falconbmstutorials6496
@falconbmstutorials6496 Месяц назад
It's called an "hallucination" when you use a trained voice
@NgocNguyen_NDN
@NgocNguyen_NDN 2 месяца назад
I'm getting this error, can you help me?, (cannot access local variable 'image1' where it is not associated with a value.)
@AIFuzz59
@AIFuzz59 2 месяца назад
All the images need to be in png format. You will get that error if they are not
@NgocNguyen_NDN
@NgocNguyen_NDN 2 месяца назад
Thank you very much, I have done it.@@AIFuzz59
@NgocNguyen_NDN
@NgocNguyen_NDN 2 месяца назад
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
@gequ3104
@gequ3104 3 месяца назад
thank you for this tutorial. Are there any downsides in comparison to Kohya training?
@AIFuzz59
@AIFuzz59 3 месяца назад
So far the only downside is that with some models, it doesn’t click with the Lora
@jsnavely76
@jsnavely76 2 месяца назад
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 2 месяца назад
@@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 2 месяца назад
@@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 Месяц назад
​@@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.
@Keklmao
@Keklmao 2 месяца назад
Does comfy ui also work with fine tuning LLMs?
@AIFuzz59
@AIFuzz59 2 месяца назад
Not yet but hopefully soon
@umarcga7823
@umarcga7823 2 месяца назад
I am issues installing the requirement files.... giving me error
@oreiasccp
@oreiasccp 28 дней назад
me too, u solve this ?
@PlayerGamesOtaku
@PlayerGamesOtaku Месяц назад
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 Месяц назад
Ok I apologize, I’m going to upload an updated version soon
@PlayerGamesOtaku
@PlayerGamesOtaku 28 дней назад
@@AIFuzz59 hi, let me know when the new updated tutorial comes out :)
@PlayerGamesOtaku
@PlayerGamesOtaku 14 дней назад
@@AIFuzz59 Hi, have you done the new updated tutorial?
@asyrofmuzakki
@asyrofmuzakki 20 дней назад
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 19 дней назад
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
@AInomaly600
@AInomaly600 2 месяца назад
audio is sooo weird
@AIFuzz59
@AIFuzz59 2 месяца назад
Thanks!
@captainadventures
@captainadventures Месяц назад
Rude
@dmcdcm
@dmcdcm 17 дней назад
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 7 дней назад
@@dmcdcm It is typical sound after overuse of noise reduction
@Muhilica
@Muhilica 3 месяца назад
I must ask...how much VRAM for 1.5 vs SDXL?
@AIFuzz59
@AIFuzz59 3 месяца назад
I have 8gb VRAM and am able to train both Sd 1.5 and SDXL so I would say at least 8
@Muhilica
@Muhilica 3 месяца назад
@@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 3 месяца назад
I just throws an error as soon as I start training so...I'll get back to You on github :D
@AIFuzz59
@AIFuzz59 3 месяца назад
@@Muhilica what error are you getting? The version of Pystorch is pretty important and throws a lot of errors
@Muhilica
@Muhilica 3 месяца назад
@@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 :)
@sirmeon1231
@sirmeon1231 2 месяца назад
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 2 месяца назад
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
@placeholder_Utoob
@placeholder_Utoob Месяц назад
How do I install the node?
@AIFuzz59
@AIFuzz59 Месяц назад
You would go to their GitHub page and install it to your custom nodes folder in ComfyUI
@urieldeveaud
@urieldeveaud 28 дней назад
you get a new follower :) nice video! ... do you know how to merge loras in comfyui ? thx
@AIFuzz59
@AIFuzz59 28 дней назад
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 28 дней назад
@@AIFuzz59 nice!
@chintansheta
@chintansheta 3 месяца назад
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 3 месяца назад
something similar here too
@BrunoOLucido
@BrunoOLucido 2 месяца назад
same here
@SonKrals
@SonKrals 2 месяца назад
same here!!!
@davidedifrancostudiotemp4139
@davidedifrancostudiotemp4139 2 месяца назад
same
@davidedifrancostudiotemp4139
@davidedifrancostudiotemp4139 2 месяца назад
when using png (not jpg) it does work
@tierlistboss
@tierlistboss Месяц назад
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 Месяц назад
Did the captions save as txt files in the folder?
@tierlistboss
@tierlistboss Месяц назад
@@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
@cyril1111
@cyril1111 3 месяца назад
so 38min for 19 images - Slower than Khoya - but seems to get a good quality, maybe worth a try.
@AIFuzz59
@AIFuzz59 3 месяца назад
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 2 месяца назад
​@AIFuzz59 shit ive trained dfl models for 3 weeks, this is so much easier.😂
@dr.gurn420
@dr.gurn420 2 месяца назад
@@AIFuzz59 what machine are you running? I'm trying to workout roughly how quick this will be on a NVIDIA L4 32 GB
@emiliomartinez7132
@emiliomartinez7132 28 дней назад
failed to download tagger. why'?
@AIFuzz59
@AIFuzz59 28 дней назад
Is this downloading it from the GitHub?
@emiliomartinez7132
@emiliomartinez7132 28 дней назад
@@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 27 дней назад
finally it works ! great nodes @@AIFuzz59
@user-ge6gc9ti9c
@user-ge6gc9ti9c 2 месяца назад
Not working, after done nothing its created.
@umarcga7823
@umarcga7823 2 месяца назад
it's data base not betabase
@falconbmstutorials6496
@falconbmstutorials6496 Месяц назад
DON'T install this dependency, it destroyed my ComfyUI installation! Now it says it cannot find the torch Cuda.
@AIFuzz59
@AIFuzz59 Месяц назад
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 21 день назад
@@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 21 день назад
@@kinenbib what error is it?
@none76ui
@none76ui 2 месяца назад
Is this AI narrated?
@Posdrums3
@Posdrums3 2 дня назад
Wtf is going on with your voice? Filter?
@caseyj789456
@caseyj789456 Месяц назад
Thx btw but not work for me. Tons for errors... Back to old method
@alex.puliatti
@alex.puliatti 2 месяца назад
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 2 месяца назад
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 27 дней назад
I got that error because I hadn't set the location of the png file correctly.
@alfaruqasri1357
@alfaruqasri1357 2 месяца назад
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 Месяц назад
Works only with png files
@emiliomartinez7132
@emiliomartinez7132 27 дней назад
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
How I Did The Mcdonalds Drink Trick 🤯🥤#shorts
00:16
Design Better Than 99% of UI Designers
14:52
Просмотров 173 тыс.
ComfyUI ControlNet Tutorial (Control LoRA)
39:29
Просмотров 19 тыс.
Base Change Workflow ComfyUI
13:13
Просмотров 1,4 тыс.
Canva Video Editor - COMPLETE Tutorial for Beginners!
16:34
Automatic CFG Node for ComfyUI
11:27
Просмотров 1,7 тыс.
How I created these VIRAL POWERPOINTS 🥵🥵🥵
7:36
IC-Light Explored In Depth
13:49
Просмотров 2,1 тыс.
IPAdapter v2: all the new features!
16:10
Просмотров 58 тыс.