Update README.md
Browse files
README.md
CHANGED
@@ -50,15 +50,13 @@ The other `safetensors` model file was created with the latest GPTQ code, and us
|
|
50 |
|
51 |
If you want to use the `safetensors` file and need to update GPTQ-for-LLaMa, here are the commands I used to clone the Triton branch of GPTQ-for-LLaMa, clone text-generation-webui, and install GPTQ into the UI:
|
52 |
```
|
53 |
-
#
|
54 |
-
git clone -n https://github.com/qwopqwop200/GPTQ-for-LLaMa gptq-safe
|
55 |
-
cd gptq-safe && git checkout 58c8ab4c7aaccc50f507fd08cce941976affe5e0
|
56 |
-
|
57 |
-
# Now clone text-generation-webui, if you don't already have it
|
58 |
git clone https://github.com/oobabooga/text-generation-webui
|
59 |
-
#
|
60 |
-
mkdir
|
61 |
-
|
|
|
|
|
62 |
```
|
63 |
|
64 |
Then install this model into `text-generation-webui/models` and launch the UI as follows:
|
|
|
50 |
|
51 |
If you want to use the `safetensors` file and need to update GPTQ-for-LLaMa, here are the commands I used to clone the Triton branch of GPTQ-for-LLaMa, clone text-generation-webui, and install GPTQ into the UI:
|
52 |
```
|
53 |
+
# Clone text-generation-webui, if you don't already have it
|
|
|
|
|
|
|
|
|
54 |
git clone https://github.com/oobabooga/text-generation-webui
|
55 |
+
# Make a repositories directory
|
56 |
+
mkdir text-generation-webui/repositories
|
57 |
+
cd text-generation-webui/repositories
|
58 |
+
# Clone the latest GPTQ-for-LLaMa code inside text-generation-webui
|
59 |
+
git clone https://github.com/qwopqwop200/GPTQ-for-LLaMa
|
60 |
```
|
61 |
|
62 |
Then install this model into `text-generation-webui/models` and launch the UI as follows:
|