Kit-Lemonfoot commited on
Commit
f4b2fc7
β€’
1 Parent(s): 63523e2

Part 2 of debugging fileop without a file console

Browse files
Files changed (1) hide show
  1. GPT_SoVITS/inference_webui.py +3 -0
GPT_SoVITS/inference_webui.py CHANGED
@@ -614,6 +614,9 @@ modeldata, referencedata = load_models()
614
  SoVITS_names, GPT_names = get_weights_names()
615
 
616
  print(os.getcwd())
 
 
 
617
 
618
  #Gradio preload
619
  text = gr.TextArea(label="Input Text", value="Hello there! This is test audio of a new text to speech tool.")
 
614
  SoVITS_names, GPT_names = get_weights_names()
615
 
616
  print(os.getcwd())
617
+ for r, _, f in os.walk(os.getcwd()):
618
+ for n in f:
619
+ print(os.path.join(r, n))
620
 
621
  #Gradio preload
622
  text = gr.TextArea(label="Input Text", value="Hello there! This is test audio of a new text to speech tool.")