Files
text-generation-webui/README.md

154 lines
5.7 KiB
Markdown
Raw Normal View History

2022-12-21 01:17:38 -03:00
# text-generation-webui
2022-12-21 16:49:30 -03:00
A gradio webui for running large language models locally. Supports gpt-j-6B, gpt-neox-20b, opt, galactica, and many others.
Its goal is to become the [AUTOMATIC1111/stable-diffusion-webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui) of text generation.
2022-12-21 13:17:06 -03:00
2022-12-21 14:04:51 -03:00
![webui screenshot](https://github.com/oobabooga/text-generation-webui/raw/main/webui.png)
2023-01-07 18:40:51 -03:00
## Features
* Switch between different models using a dropdown menu.
2023-01-09 16:19:57 -03:00
* Generate nice HTML output for GPT-4chan.
2023-01-07 19:19:55 -03:00
* Generate Markdown output for [GALACTICA](https://github.com/paperswithcode/galai), including LaTeX support.
2023-01-07 18:40:51 -03:00
* Notebook mode that resembles OpenAI's playground.
2023-01-07 22:52:46 -03:00
* Chat mode for conversation and role playing.
2023-01-07 18:40:51 -03:00
* Load 13b/20b models in 8-bit mode.
* Load parameter presets from text files.
2023-01-09 11:11:05 -03:00
* CPU mode.
2023-01-07 18:40:51 -03:00
2022-12-21 13:17:06 -03:00
## Installation
Create a conda environment:
conda create -n textgen
conda activate textgen
Install the appropriate pytorch for your GPU. For NVIDIA GPUs, this should work:
conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia
Install the requirements:
pip install -r requirements.txt
2022-12-21 13:17:06 -03:00
2022-12-21 14:37:50 -03:00
## Downloading models
2023-01-06 02:12:38 -03:00
Models should be placed under `models/model-name`. For instance, `models/gpt-j-6B` for [gpt-j-6B](https://huggingface.co/EleutherAI/gpt-j-6B/tree/main).
2022-12-21 14:37:50 -03:00
2022-12-21 15:00:16 -03:00
#### Hugging Face
2022-12-21 14:37:50 -03:00
2023-01-06 02:13:48 -03:00
Hugging Face is the main place to download models. These are some of my favorite:
2022-12-21 14:37:50 -03:00
2023-01-06 00:13:26 -03:00
* [gpt-j-6B](https://huggingface.co/EleutherAI/gpt-j-6B/tree/main)
* [gpt-neox-20b](https://huggingface.co/EleutherAI/gpt-neox-20b/tree/main)
2023-01-07 19:19:55 -03:00
* [OPT](https://huggingface.co/models?search=facebook/opt)
* [GALACTICA](https://huggingface.co/models?search=facebook/galactica)
2023-01-06 00:13:26 -03:00
* [\*-Erebus](https://huggingface.co/models?search=erebus)
2023-01-06 02:12:38 -03:00
The files that you need to download are the json, txt, and pytorch\*.bin files. The remaining files are not necessary.
2022-12-21 14:37:50 -03:00
2023-01-06 20:06:24 -03:00
For your convenience, you can automatically download a model from HF using the script `download-model.py`. Its usage is very simple:
2023-01-06 20:00:58 -03:00
python download-model.py organization/model
For instance:
python download-model.py facebook/opt-1.3b
2023-01-09 16:19:57 -03:00
#### GPT-4chan
2022-12-21 14:37:50 -03:00
2023-01-09 16:19:57 -03:00
[GPT-4chan](https://huggingface.co/ykilcher/gpt-4chan) has been shut down from Hugging Face, so you need to download it elsewhere. You have two options:
2022-12-21 14:37:50 -03:00
* Torrent: [16-bit](https://archive.org/details/gpt4chan_model_float16) / [32-bit](https://archive.org/details/gpt4chan_model)
* Direct download: [16-bit](https://theswissbay.ch/pdf/_notpdf_/gpt4chan_model_float16/) / [32-bit](https://theswissbay.ch/pdf/_notpdf_/gpt4chan_model/)
2023-01-07 23:13:43 -03:00
You also need to put GPT-J-6B's config.json file in the same folder: [config.json](https://huggingface.co/EleutherAI/gpt-j-6B/raw/main/config.json)
2022-12-21 16:49:30 -03:00
## Converting to pytorch
2023-01-06 01:41:52 -03:00
The script `convert-to-torch.py` allows you to convert models to .pt format, which is about 10x faster to load:
2022-12-21 16:49:30 -03:00
2023-01-08 14:37:43 -03:00
python convert-to-torch.py models/model-name
2022-12-21 16:49:30 -03:00
2023-01-08 14:37:43 -03:00
The output model will be saved to `torch-dumps/model-name.pt`. When you load a new model, the webui first looks for this .pt file; if it is not found, it loads the model as usual from `models/model-name`.
2022-12-21 16:49:30 -03:00
2022-12-21 13:17:06 -03:00
## Starting the webui
conda activate textgen
python server.py
2023-01-06 20:00:58 -03:00
Then browse to
`http://localhost:7860/?__theme=dark`
2023-01-06 20:07:58 -03:00
Optionally, you can use the following command-line flags:
2023-01-06 20:00:58 -03:00
2023-01-06 20:29:00 -03:00
`--model model-name`: Load this model by default.
`--notebook`: Launch the webui in notebook mode, where the output is written to the same text box as the input.
2022-12-21 16:52:23 -03:00
2023-01-07 22:52:46 -03:00
`--chat`: Launch the webui in chat mode.
2023-01-09 10:58:46 -03:00
`--cpu`: Use the CPU to generate text instead of the GPU.
2023-01-06 01:33:21 -03:00
## Presets
Inference settings presets can be created under `presets/` as text files. These files are detected automatically at startup.
2023-01-09 18:12:41 -03:00
## System requirements
2023-01-09 18:14:09 -03:00
These are the VRAM (in GiB) and RAM (in MiB) requirements to run some model examples.
2023-01-09 18:12:41 -03:00
#### GPU mode (default)
| model | VRAM (GPU) | RAM |
|:-----------------------|-------------:|--------:|
| OPT-350M-Erebus | 0.62 | 1939.3 |
| arxiv_ai_gpt2 | 1.48 | 6350.68 |
| blenderbot-1B-distill | 2.38 | 2705.9 |
| opt-1.3b | 2.45 | 2868.12 |
| gpt-neo-1.3b | 2.54 | 4047.04 |
| gpt4chan_model_float16 | 11.38 | 1909.79 |
| gpt-j-6b-float16 | 11.38 | 2847.75 |
| gpt-j-6B | 11.38 | 3959.55 |
| galactica-6.7b | 12.4 | 1933.19 |
| opt-6.7b | 12.4 | 1944.21 |
| bloomz-7b1-p3 | 13.17 | 1845.58 |
#### GPU mode with 8-bit precision
Allows you to load models that would not normally fit into your GPU. Enabled by default for 13b and 20b models in this webui.
| model | VRAM (GPU) | RAM |
|:---------------|-------------:|--------:|
| OPT-13B-Erebus | 12.23 | 749.08 |
| opt-13b | 12.23 | 1258.95 |
| gpt-neox-20b | 19.91 | 2104.04 |
#### CPU mode
A lot slower, but does not require a GPU.
| model | RAM |
|:-----------------------|---------:|
| OPT-350M-Erebus | 2622.17 |
| arxiv_ai_gpt2 | 3764.81 |
| gpt-neo-1.3b | 5937.81 |
| opt-1.3b | 7346.08 |
| blenderbot-1B-distill | 7565.36 |
| bloomz-7b1-p3 | 23613.9 |
| gpt-j-6B | 23975.5 |
| gpt4chan_model | 23999.5 |
| gpt-j-6b-float16 | 24999.1 |
| galactica-6.7b | 26248 |
| opt-6.7b | 27334.2 |
2022-12-21 16:52:23 -03:00
## Contributing
2023-01-09 16:09:27 -03:00
Pull requests, suggestions and issue reports are welcome.
2023-01-09 16:15:54 -03:00
## Other projects
Make sure to also check out the great work by [KoboldAI](https://github.com/KoboldAI/KoboldAI-Client). I have borrowed some of the presets listed on their [wiki](https://github.com/KoboldAI/KoboldAI-Client/wiki/Settings-Presets) after performing a k-means clustering analysis to select the most relevant subsample.