KwaiVGI / LivePortrait

Bring portraits to life!
https://liveportrait.github.io
Other
12.09k stars 1.27k forks source link

Hi! i have a error when I use tyro. #316

Closed NeuroDonu closed 1 month ago

NeuroDonu commented 1 month ago

Hi! image i get this error, if y use args = tyro.cli(ArgumentConfig) instead of directly transmitting args = ArgumentConfig(). I use Colab. Initially I tried to run just via python app.py, but I ran into the application loading endlessly on this one: image I now remove tyro.cli and pass args directly: image (but I still can't run through python app.py - I have to directly add the code to the cell and use it that way. hope you can tell me how to fix this!)

cleardusk commented 1 month ago

tyro is designed for CLI, just remove tyro if you run it in colab, the same in app.py. : ) @NeuroDonu

NeuroDonu commented 1 month ago

hmm, thanks for the help!