forked from mrq/tortoise-tts
updated notebooks to use the new "main" setup
This commit is contained in:
parent
4d9ba00dcc
commit
b2dd5e31a8
|
@ -71,16 +71,29 @@
|
||||||
{
|
{
|
||||||
"cell_type":"code",
|
"cell_type":"code",
|
||||||
"source":[
|
"source":[
|
||||||
"%cd ai-voice-cloning\n",
|
"%cd /content/ai-voice-cloning\n",
|
||||||
"import src.webui as mrq\n",
|
|
||||||
"import sys\n",
|
|
||||||
"sys.argv = [\"\"]\n",
|
|
||||||
"\n",
|
"\n",
|
||||||
"mrq.args = mrq.setup_args()\n",
|
"import os\n",
|
||||||
"mrq.webui = mrq.setup_gradio()\n",
|
"import sys\n",
|
||||||
"mrq.tts = mrq.setup_tortoise()\n",
|
"\n",
|
||||||
"mrq.webui.launch(share=True, prevent_thread_lock=True, height=1000)\n",
|
"sys.argv = [\"\"]\n",
|
||||||
"mrq.webui.block_thread()"
|
"sys.path.append('./src/')\n",
|
||||||
|
"\n",
|
||||||
|
"if 'TORTOISE_MODELS_DIR' not in os.environ:\n",
|
||||||
|
"\tos.environ['TORTOISE_MODELS_DIR'] = os.path.realpath(os.path.join(os.getcwd(), './models/tortoise/'))\n",
|
||||||
|
"\n",
|
||||||
|
"if 'TRANSFORMERS_CACHE' not in os.environ:\n",
|
||||||
|
"\tos.environ['TRANSFORMERS_CACHE'] = os.path.realpath(os.path.join(os.getcwd(), './models/transformers/'))\n",
|
||||||
|
"\n",
|
||||||
|
"from utils import *\n",
|
||||||
|
"from webui import *\n",
|
||||||
|
"\n",
|
||||||
|
"args = setup_args()\n",
|
||||||
|
"\n",
|
||||||
|
"webui = setup_gradio()\n",
|
||||||
|
"tts = setup_tortoise()\n",
|
||||||
|
"webui.launch(share=True, prevent_thread_lock=True, height=1000)\n",
|
||||||
|
"webui.block_thread()"
|
||||||
],
|
],
|
||||||
"metadata":{
|
"metadata":{
|
||||||
"id":"c_EQZLTA19c7"
|
"id":"c_EQZLTA19c7"
|
||||||
|
@ -102,6 +115,7 @@
|
||||||
{
|
{
|
||||||
"cell_type":"code",
|
"cell_type":"code",
|
||||||
"source":[
|
"source":[
|
||||||
|
"%cd /content/ai-voice-cloning\n",
|
||||||
"!apt install -y p7zip-full\n",
|
"!apt install -y p7zip-full\n",
|
||||||
"from datetime import datetime\n",
|
"from datetime import datetime\n",
|
||||||
"timestamp = datetime.now().strftime('%m-%d-%Y_%H:%M:%S')\n",
|
"timestamp = datetime.now().strftime('%m-%d-%Y_%H:%M:%S')\n",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user