ArkanDash commited on
Commit
2fdf807
1 Parent(s): d608081

fix(app): remove author entirely

Browse files
Files changed (2) hide show
  1. app-update.py +2 -2
  2. app.py +2 -2
app-update.py CHANGED
@@ -176,7 +176,7 @@ if __name__ == '__main__':
176
  else:
177
  net_g = net_g.float()
178
  vc = VC(tgt_sr, config)
179
- models.append((name, title, author, cover, create_vc_fn(tgt_sr, net_g, vc, if_f0, index)))
180
  with gr.Blocks() as app:
181
  gr.Markdown(
182
  "# <center> RVC Models (Latest Update)\n"
@@ -186,7 +186,7 @@ if __name__ == '__main__':
186
  "<center> [![Original Repo](https://badgen.net/badge/icon/github?icon=github&label=Original%20Repo)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)"
187
  )
188
  with gr.Tabs():
189
- for (name, title, author, cover, vc_fn) in models:
190
  with gr.TabItem(name):
191
  with gr.Row():
192
  gr.Markdown(
 
176
  else:
177
  net_g = net_g.float()
178
  vc = VC(tgt_sr, config)
179
+ models.append((name, title, cover, create_vc_fn(tgt_sr, net_g, vc, if_f0, index)))
180
  with gr.Blocks() as app:
181
  gr.Markdown(
182
  "# <center> RVC Models (Latest Update)\n"
 
186
  "<center> [![Original Repo](https://badgen.net/badge/icon/github?icon=github&label=Original%20Repo)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)"
187
  )
188
  with gr.Tabs():
189
+ for (name, title, cover, vc_fn) in models:
190
  with gr.TabItem(name):
191
  with gr.Row():
192
  gr.Markdown(
app.py CHANGED
@@ -128,7 +128,7 @@ if __name__ == '__main__':
128
  else:
129
  net_g = net_g.float()
130
  vc = VC(tgt_sr, config)
131
- models.append((name, title, author, cover, create_vc_fn(tgt_sr, net_g, vc, if_f0, index)))
132
  with gr.Blocks() as app:
133
  gr.Markdown(
134
  "# <center> RVC Models (Latest Update)\n"
@@ -138,7 +138,7 @@ if __name__ == '__main__':
138
  "<center> [![Original Repo](https://badgen.net/badge/icon/github?icon=github&label=Original%20Repo)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)"
139
  )
140
  with gr.Tabs():
141
- for (name, title, author, cover, vc_fn) in models:
142
  with gr.TabItem(name):
143
  with gr.Row():
144
  gr.Markdown(
 
128
  else:
129
  net_g = net_g.float()
130
  vc = VC(tgt_sr, config)
131
+ models.append((name, title, cover, create_vc_fn(tgt_sr, net_g, vc, if_f0, index)))
132
  with gr.Blocks() as app:
133
  gr.Markdown(
134
  "# <center> RVC Models (Latest Update)\n"
 
138
  "<center> [![Original Repo](https://badgen.net/badge/icon/github?icon=github&label=Original%20Repo)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)"
139
  )
140
  with gr.Tabs():
141
+ for (name, title, cover, vc_fn) in models:
142
  with gr.TabItem(name):
143
  with gr.Row():
144
  gr.Markdown(