bmaltais / kohya_ss

Apache License 2.0
9.54k stars 1.23k forks source link

no log output after starting the gui.sh #2005

Closed potatoker closed 7 months ago

potatoker commented 7 months ago

./gui.sh --inbrowser --share --headless

after running the cmd above, I get the following log:

venv folder does not exist. Not activating...19:18:08-991538 INFO     Version: v22.6.2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     19:18:08-997213 INFO     nVidia toolkit detected                                                                                                                                                                                                                       19:18:11-857754 INFO     Torch 2.0.1+cu118                                                                                                                                                                                                                             
19:18:11-971285 INFO     Torch backend: nVidia CUDA 11.8 cuDNN 8905                                                                                                                                                                                                    
19:18:11-997837 INFO     Torch detected GPU: Tesla V100-SXM2-32GB VRAM 32510 Arch (7, 0) Cores 80                                                                                                                                                                      
19:18:11-999479 INFO     Verifying modules installation status from /potatoker/lora/kohya_ss/requirements_linux.txt...                                                                                                                                   
19:18:12-003469 INFO     Verifying modules installation status from requirements.txt...                                                                                                                                                                                
19:18:19-537500 INFO     headless: True                                                                                                                                                                                                                                
19:18:19-542146 INFO     Load CSS...                                                                                                                                                                                                                                   
Running on local URL:  http://0.0.0.0:7862

I can open the Gradio webui, but I can't see any logs any more, after I start training, I can only see a json file created in my specified model folder, nothing showed on the server end console, I have no idea if the training is processing corectly(I think the train failed some how but no log to give a hint). what could be the problem?

bmaltais commented 7 months ago

I have tried to reproduce the issue with the latest code and all is good on my side... can you test with the code in the dev-pure branch?

git pull
git checkout dev-pure
./gui.sh --inbrowser --share --headless
potatoker commented 7 months ago

sorry, finally figure out it was some file permission problem on linux, I use "chown" command to change the project folder permission, then it was solved