| import gradio as gr |
| import pandas as pd |
|
|
| with gr.Blocks(css="style.css") as demo: |
| gr.Markdown("# 9-Volt Fan's RVC Voice Models") |
| gr.Markdown("## I make RVC voice models! To request a voice model, ask in the discussions, and I'll be able to make it just for you.") |
| gr.Markdown(""" |
| Click [here](https://huggingface.co/collections/ark142/rvc-voice-models-681506cb89322fa7cb2e45fa) to visit my RVC voice models! |
| """) |
| data = { |
| "Test Audio": ["output - 2025-07-29T170308.496.wav"], |
| "Reference Voice Model": ["Pauline (Donkey Kong Bananza"], |
| "Epochs": [100], |
| "Batch Size": [10], |
| "Dataset": ["16:04"], |
| } |
|
|
| df = pd.DataFrame(data) |
| gr.Markdown("### Example Voice Models") |
| gr.Dataframe(value=df, wrap=True, max_rows=5) |
|
|
| demo.launch() |