Forked from mberman84/gist:45545e48040ef6aafb6a1cb3442edb83
Last active
November 3, 2023 03:17
-
-
Save kenkit/23f27e4a7dfb479fe4e1b97bd018b1aa to your computer and use it in GitHub Desktop.
LLaMA 2 13b chat fp16 Install Instructions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conda create -n textgen python=3.10.9 | |
conda activate textgen | |
install pytorch: pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117 | |
git clone https://github.com/oobabooga/text-generation-webui | |
cd text-generation-webui | |
pip install -r requirements.txt | |
python server.py | |
# download model | |
# refresh model list | |
# load model | |
# switch to chat mode | |
#https://www.youtube.com/watch?v=k2FHUP0krqg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment