Forked from mberman84/gist:45545e48040ef6aafb6a1cb3442edb83
Created
December 27, 2023 15:11
-
-
Save jakeju92/64878465417a043218f00ff814c55a0a 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment