Skip to content

Commit

Permalink
minor changes on installer and ui
Browse files Browse the repository at this point in the history
  • Loading branch information
blaise-tk committed Feb 20, 2024
1 parent f429d40 commit 2905d5b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions modules/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,12 @@ def webpath(fn):

def create_ui():
preload()

block = gr.Blocks(theme="remilia/Ghostly", title="VoRAS")

with block:
gr.Markdown("# VoRAS")
gr.Markdown("Vocos Retrieval and self-Augmentation for Speech")
with gr.Tabs():
tabs = load_tabs()
for tab in tabs:
Expand Down
File renamed without changes.
13 changes: 13 additions & 0 deletions run-voras.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
@echo off
setlocal
title VoRAS

if not exist env (
echo Please run 'run-install.bat' first to set up the environment.
pause
exit /b 1
)

env\python.exe app.py
echo.
pause

0 comments on commit 2905d5b

Please sign in to comment.