CoolFace
Apppublic

Aguchi/image_recognition

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
activate.bat34 linesDownload Raw Back to Scripts
1@echo off2 3rem This file is UTF-8 encoded, so we need to update the current code page while executing it4for /f "tokens=2 delims=:." %%a in ('"%SystemRoot%\System32\chcp.com"') do (5    set _OLD_CODEPAGE=%%a6)7if defined _OLD_CODEPAGE (8    "%SystemRoot%\System32\chcp.com" 65001 > nul9)10 11set VIRTUAL_ENV=C:\Users\Agustina Torres\Documents\DEV\GIT\IA\DEEP LEARNING FOR CODERS\image_recognition\deep_learning12 13if not defined PROMPT set PROMPT=$P$G14 15if defined _OLD_VIRTUAL_PROMPT set PROMPT=%_OLD_VIRTUAL_PROMPT%16if defined _OLD_VIRTUAL_PYTHONHOME set PYTHONHOME=%_OLD_VIRTUAL_PYTHONHOME%17 18set _OLD_VIRTUAL_PROMPT=%PROMPT%19set PROMPT=(deep_learning) %PROMPT%20 21if defined PYTHONHOME set _OLD_VIRTUAL_PYTHONHOME=%PYTHONHOME%22set PYTHONHOME=23 24if defined _OLD_VIRTUAL_PATH set PATH=%_OLD_VIRTUAL_PATH%25if not defined _OLD_VIRTUAL_PATH set _OLD_VIRTUAL_PATH=%PATH%26 27set PATH=%VIRTUAL_ENV%\Scripts;%PATH%28 29:END30if defined _OLD_CODEPAGE (31    "%SystemRoot%\System32\chcp.com" %_OLD_CODEPAGE% > nul32    set _OLD_CODEPAGE=33)34