2021-06-06 15:01:11 +02:00
|
|
|
@echo off
|
|
|
|
title Installing Portable Python (Miniconda3)
|
|
|
|
echo Miniconda3's installer will overwrite existing Miniconda3 shortcuts in the startmenu (We currently can not prevent this)
|
|
|
|
echo Please choose one of the following transformers options
|
2021-06-08 09:46:43 +02:00
|
|
|
echo 1. Official Transformers
|
|
|
|
echo 2. Finetuneanon Transformers (Half-Precision for 8GB or smaller GPUs)
|
2021-06-06 15:01:11 +02:00
|
|
|
SET /P M=Type the number of the desired option and then press ENTER:
|
|
|
|
|
|
|
|
cd %~dp0
|
|
|
|
rmdir /s /q miniconda3
|
|
|
|
where /q curl.exe
|
|
|
|
IF ERRORLEVEL 1 (
|
|
|
|
bitsadmin /transfer miniconda /download /priority normal https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe "%~dp0\miniconda3.exe"
|
|
|
|
) ELSE (
|
|
|
|
curl -o miniconda3.exe https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe
|
|
|
|
)
|
|
|
|
miniconda3.exe /S /InstallationType=JustMe /RegisterPython=0 /AddTopath=0 /NoScripts=1 /NoRegistry=1 /D=%~dp0\miniconda3
|
|
|
|
del miniconda3.exe
|
|
|
|
call miniconda3\condabin\activate
|
|
|
|
call conda install --all --no-shortcuts -y git pytorch tensorflow-gpu colorama Flask-SocketIO -c pytorch
|
|
|
|
IF %M%==1 call conda install --no-shortcuts -y transformers -c huggingface
|
|
|
|
IF %M%==2 pip install git+https://github.com/finetuneanon/transformers@gpt-neo-dungeon-localattention2
|
|
|
|
call conda clean -a -y
|
|
|
|
echo All done!
|
|
|
|
pause
|