SBV2-demo / Train.bat
buchi-stdesign's picture
Upload 150 files
13a1636 verified
raw
history blame contribute delete
202 Bytes
chcp 65001 > NUL
@echo off
pushd %~dp0
echo Running gradio_tabs/train.py...
venv\Scripts\python -m gradio_tabs.train
if %errorlevel% neq 0 ( pause & popd & exit /b %errorlevel% )
popd
pause