Spaces:
Runtime error
Runtime error
File size: 939 Bytes
f80c5ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import gradio as gr
class TutotialTab:
def __init__(self):
pass
def ui(self):
gr.Markdown(
"""
# Welcome to ZeroRVC!
> If you are more satisfied with Python code, you can also [use the Python API to run ZeroRVC](https://pypi.org/project/zerorvc/).
ZeroRVC is a toolkit for training and inference of retrieval-based voice conversion models.
By leveraging the power of Hugging Face ZeroGPU, you can train your model in minutes without setting up the environment.
## How to Use
There are 3 main steps to use ZeroRVC:
- **Make Dataset**: Prepare your dataset for training. You can upload a zip file containing audio files.
- **Model Training**: Train your model using the prepared dataset.
- **Model Inference**: Try your model.
"""
)
def build(self):
pass
|