Updated defaults
Transformers official by default, no more Git versions
This commit is contained in:
parent
6008d4f3a5
commit
3b976c9af7
|
@ -10,9 +10,8 @@ dependencies:
|
||||||
- pytorch
|
- pytorch
|
||||||
- python=3.8.*
|
- python=3.8.*
|
||||||
- cudatoolkit=11.1
|
- cudatoolkit=11.1
|
||||||
- tensorflow-gpu
|
- transformers
|
||||||
- pip
|
- pip
|
||||||
- git
|
- git
|
||||||
- pip:
|
- pip:
|
||||||
- flask-cloudflared
|
- flask-cloudflared
|
||||||
- git+https://github.com/vfbd/transformers#tfs
|
|
|
@ -1,8 +1,8 @@
|
||||||
@echo off
|
@echo off
|
||||||
title KoboldAI Runtime Installer (MicroMamba)
|
title KoboldAI Runtime Installer (MicroMamba)
|
||||||
echo Please choose one of the following transformers options
|
echo Please choose one of the following transformers options
|
||||||
echo 1. Finetuneanon Transformers (Best for GPU users)
|
echo 1. Official Transformers (Recommended)
|
||||||
echo 2. Official Transformers (Best for CPU users)
|
echo 2. Finetune Transformers (For old 6B models)
|
||||||
echo.
|
echo.
|
||||||
echo Errors? Rerun this as admin so it can add the needed LongPathsEnabled registery tweak.
|
echo Errors? Rerun this as admin so it can add the needed LongPathsEnabled registery tweak.
|
||||||
echo Installer failed or crashed? Run it again so it can continue.
|
echo Installer failed or crashed? Run it again so it can continue.
|
||||||
|
@ -46,8 +46,8 @@ subst K: miniconda3
|
||||||
copy umamba.exe K:\umamba.exe
|
copy umamba.exe K:\umamba.exe
|
||||||
K:
|
K:
|
||||||
umamba.exe create -r K:\python\ -n base
|
umamba.exe create -r K:\python\ -n base
|
||||||
IF %B%==1 umamba.exe install --no-shortcuts -r K:\python\ -n base -f "%~dp0\environments\finetuneanon.yml" -y
|
IF %B%==1 umamba.exe install --no-shortcuts -r K:\python\ -n base -f "%~dp0\environments\huggingface.yml" -y
|
||||||
IF %B%==2 umamba.exe install --no-shortcuts -r K:\python\ -n base -f "%~dp0\environments\huggingface.yml" -y
|
IF %B%==2 umamba.exe install --no-shortcuts -r K:\python\ -n base -f "%~dp0\environments\finetuneanon.yml" -y
|
||||||
umamba.exe -r K:\ clean -a -y
|
umamba.exe -r K:\ clean -a -y
|
||||||
subst K: /d
|
subst K: /d
|
||||||
pause
|
pause
|
||||||
|
@ -56,8 +56,8 @@ exit
|
||||||
:subfolder
|
:subfolder
|
||||||
echo 2 > loader.settings
|
echo 2 > loader.settings
|
||||||
umamba.exe create -r miniconda3\ -n base
|
umamba.exe create -r miniconda3\ -n base
|
||||||
IF %B%==1 umamba.exe install --no-shortcuts -r miniconda3 -n base -f environments\finetuneanon.yml -y
|
IF %B%==1 umamba.exe install --no-shortcuts -r miniconda3 -n base -f environments\huggingface.yml -y
|
||||||
IF %B%==2 umamba.exe install --no-shortcuts -r miniconda3 -n base -f environments\huggingface.yml -y
|
IF %B%==2 umamba.exe install --no-shortcuts -r miniconda3 -n base -f environments\finetuneanon.yml -y
|
||||||
umamba.exe clean -a -y
|
umamba.exe clean -a -y
|
||||||
pause
|
pause
|
||||||
exit
|
exit
|
||||||
|
|
Loading…
Reference in New Issue