mirror of
https://github.com/MackinationsAi/UDAV2-ControlNet.git
synced 2026-01-26 23:39:45 +00:00
13 lines
285 B
Batchfile
13 lines
285 B
Batchfile
@echo off
|
|
REM Get the directory of the currently executed script
|
|
set SCRIPT_DIR=%~dp0
|
|
|
|
REM Navigate to the script directory
|
|
cd /d "%SCRIPT_DIR%"
|
|
|
|
REM Activate the virtual environment
|
|
CALL venv\Scripts\activate
|
|
|
|
REM Run the conversion script
|
|
python run_image-depth_16bit.py
|