TheBloke commited on
Commit
16b4002
1 Parent(s): d9b00ec

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +181 -51
README.md CHANGED
@@ -1,13 +1,24 @@
1
  ---
2
- license: other
3
  datasets:
4
  - ehartford/wizard_vicuna_70k_unfiltered
 
5
  language:
6
  - en
 
 
 
 
 
 
 
 
 
 
7
  tags:
8
  - uncensored
9
- inference: false
10
  ---
 
11
  <!-- header start -->
12
  <!-- 200823 -->
13
  <div style="width: auto; margin-left: auto; margin-right: auto">
@@ -25,74 +36,189 @@ inference: false
25
  <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
26
  <!-- header end -->
27
 
28
- # Wizard-Vicuna-13B-Uncensored GPTQ
 
 
29
 
30
- This is GPTQ format quantised 4bit models of [Eric Hartford's 'uncensored' training of Wizard-Vicuna 13B](https://huggingface.co/ehartford/Wizard-Vicuna-13B-Uncensored).
 
31
 
32
- It is the result of quantising to 4bit using [GPTQ-for-LLaMa](https://github.com/qwopqwop200/GPTQ-for-LLaMa).
33
 
 
 
 
 
34
  ## Repositories available
35
 
36
- * [4bit GPTQ models for GPU inference](https://huggingface.co/TheBloke/Wizard-Vicuna-13B-Uncensored-GPTQ).
37
- * [4bit and 5bit GGML models for CPU inference](https://huggingface.co/TheBloke/Wizard-Vicuna-13B-Uncensored-GGML).
38
- * [float16 HF format model for GPU inference and further conversions](https://huggingface.co/TheBloke/Wizard-Vicuna-13B-Uncensored-HF).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
 
40
- ## How to easily download and use this model in text-generation-webui
41
 
42
- Open the text-generation-webui UI as normal.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
 
44
  1. Click the **Model tab**.
45
  2. Under **Download custom model or LoRA**, enter `TheBloke/Wizard-Vicuna-13B-Uncensored-GPTQ`.
 
 
46
  3. Click **Download**.
47
- 4. Wait until it says it's finished downloading.
48
- 5. Click the **Refresh** icon next to **Model** in the top left.
49
- 6. In the **Model drop-down**: choose the model you just downloaded, `Wizard-Vicuna-13B-Uncensored-GPTQ`.
50
- 7. If you see an error in the bottom right, ignore it - it's temporary.
51
- 8. Fill out the `GPTQ parameters` on the right: `Bits = 4`, `Groupsize = 128`, `model_type = Llama`
52
- 9. Click **Save settings for this model** in the top right.
53
- 10. Click **Reload the Model** in the top right.
54
- 11. Once it says it's loaded, click the **Text Generation tab** and enter a prompt!
 
 
 
 
 
 
 
 
 
 
 
 
55
 
56
- ## Provided files
57
 
58
- **Compatible file - Wizard-Vicuna-13B-Uncensored-GPTQ-4bit-128g.compat.no-act-order.safetensors**
 
 
 
 
 
59
 
60
- In the `main` branch - the default one - you will find `Wizard-Vicuna-13B-Uncensored-GPTQ-4bit-128g.compat.no-act-order.safetensors`
61
 
62
- This will work with all versions of GPTQ-for-LLaMa. It has maximum compatibility
 
 
 
 
63
 
64
- It was created without the `--act-order` parameter. It may have slightly lower inference quality compared to the other file, but is guaranteed to work on all versions of GPTQ-for-LLaMa and text-generation-webui.
65
 
66
- * `Wizard-Vicuna-13B-Uncensored-GPTQ-4bit-128g.compat.no-act-order.safetensors`
67
- * Works with all versions of GPTQ-for-LLaMa code, both Triton and CUDA branches
68
- * Works with AutoGPTQ.
69
- * Works with text-generation-webui one-click-installers
70
- * Parameters: Groupsize = 128g. No act-order.
71
- * Command used to create the GPTQ:
72
- ```
73
- python llama.py ehartford_Wizard-Vicuna-13B-Uncensored c4 --wbits 4 --groupsize 128 --true-sequential --save_safetensors Wizard-Vicuna-13B-Uncensored-GPTQ-4bit-128g.compat.no-act-order.safetensors
74
- ```
75
 
76
- **Latest file with act-order - Wizard-Vicuna-13B-Uncensored-GPTQ-4bit-128g.latest.act-order.safetensors**
 
 
 
 
 
 
77
 
78
- In the `latest` branch you will find `Wizard-Vicuna-13B-Uncensored-GPTQ-4bit-128g.latest.act-order.safetensors`
79
 
80
- This requires recent GPTQ-for-LLaMa code. It will not work with ooba's fork.
 
81
 
82
- It was created with the `--act-order` parameter to maximise inference quality.
83
 
 
84
 
85
- To download this branch in text-generation-webui, enter `TheBloke/Wizard-Vicuna-13B-Uncensored-GPTQ:latest` in the Download Model box.
 
 
86
 
87
- * `Wizard-Vicuna-13B-Uncensored-GPTQ-4bit-128g.latest.act-order.safetensors`
88
- * Works only with recent GPTQ-for-LLaMa.
89
- * Works with AutoGPTQ.
90
- * Will not work with text-generation-webui one-click-installers
91
- * Parameters: Groupsize = 128g. Act order.
92
- * Command used to create the GPTQ:
93
- ```
94
- python llama.py ehartford_Wizard-Vicuna-13B-Uncensored c4 --wbits 4 --groupsize 128 --true-sequential --act-order --save_safetensors Wizard-Vicuna-13B-Uncensored-GPTQ-4bit-128g.latest.act-order.safetensors
95
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
 
97
  <!-- footer start -->
98
  <!-- 200823 -->
@@ -102,10 +228,12 @@ For further support, and discussions on these models and AI in general, join us
102
 
103
  [TheBloke AI's Discord server](https://discord.gg/theblokeai)
104
 
105
- ## Thanks, and how to contribute.
106
 
107
  Thanks to the [chirper.ai](https://chirper.ai) team!
108
 
 
 
109
  I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training.
110
 
111
  If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects.
@@ -117,7 +245,7 @@ Donaters will get priority support on any and all AI/LLM/model questions and req
117
 
118
  **Special thanks to**: Aemon Algiz.
119
 
120
- **Patreon special mentions**: Sam, theTransient, Jonathan Leane, Steven Wood, webtim, Johann-Peter Hartmann, Geoffrey Montalvo, Gabriel Tamborski, Willem Michiel, John Villwock, Derek Yates, Mesiah Bishop, Eugene Pentland, Pieter, Chadd, Stephen Murray, Daniel P. Andersen, terasurfer, Brandon Frisco, Thomas Belote, Sid, Nathan LeClaire, Magnesian, Alps Aficionado, Stanislav Ovsiannikov, Alex, Joseph William Delisle, Nikolai Manek, Michael Davis, Junyu Yang, K, J, Spencer Kim, Stefan Sabev, Olusegun Samson, transmissions 11, Michael Levine, Cory Kujawski, Rainer Wilmers, zynix, Kalila, Luke @flexchar, Ajan Kanaga, Mandus, vamX, Ai Maven, Mano Prime, Matthew Berman, subjectnull, Vitor Caleffi, Clay Pascal, biorpg, alfie_i, 阿明, Jeffrey Morgan, ya boyyy, Raymond Fosdick, knownsqashed, Olakabola, Leonard Tan, ReadyPlayerEmma, Enrico Ros, Dave, Talal Aujan, Illia Dulskyi, Sean Connelly, senxiiz, Artur Olbinski, Elle, Raven Klaugh, Fen Risland, Deep Realms, Imad Khwaja, Fred von Graf, Will Dee, usrbinkat, SuperWojo, Alexandros Triantafyllidis, Swaroop Kallakuri, Dan Guido, John Detwiler, Pedro Madruga, Iucharbius, Viktor Bowallius, Asp the Wyvern, Edmond Seymore, Trenton Dambrowitz, Space Cruiser, Spiking Neurons AB, Pyrater, LangChain4j, Tony Hughes, Kacper Wikieł, Rishabh Srivastava, David Ziegler, Luke Pendergrass, Andrey, Gabriel Puliatti, Lone Striker, Sebastain Graf, Pierre Kircher, Randy H, NimbleBox.ai, Vadim, danny, Deo Leter
121
 
122
 
123
  Thank you to all my generous patrons and donaters!
@@ -125,15 +253,17 @@ Thank you to all my generous patrons and donaters!
125
  And thank you again to a16z for their generous grant.
126
 
127
  <!-- footer end -->
128
- # Original model card
 
 
129
 
130
  This is [wizard-vicuna-13b](https://huggingface.co/junelee/wizard-vicuna-13b) trained with a subset of the dataset - responses that contained alignment / moralizing were removed. The intent is to train a WizardLM that doesn't have alignment built-in, so that alignment (of any sort) can be added separately with for example with a RLHF LoRA.
131
 
132
  Shout out to the open source AI/ML community, and everyone who helped me out.
133
 
134
- Note:
135
 
136
- An uncensored model has no guardrails.
137
 
138
  You are responsible for anything you do with the model, just as you are responsible for anything you do with any dangerous object such as a knife, gun, lighter, or car.
139
 
 
1
  ---
2
+ base_model: https://huggingface.co/ehartford/Wizard-Vicuna-13B-Uncensored
3
  datasets:
4
  - ehartford/wizard_vicuna_70k_unfiltered
5
+ inference: false
6
  language:
7
  - en
8
+ license: other
9
+ model_creator: Eric Hartford
10
+ model_name: Wizard Vicuna 13B Uncensored
11
+ model_type: llama
12
+ prompt_template: 'A chat between a curious user and an artificial intelligence assistant.
13
+ The assistant gives helpful, detailed, and polite answers to the user''s questions.
14
+ USER: {prompt} ASSISTANT:
15
+
16
+ '
17
+ quantized_by: TheBloke
18
  tags:
19
  - uncensored
 
20
  ---
21
+
22
  <!-- header start -->
23
  <!-- 200823 -->
24
  <div style="width: auto; margin-left: auto; margin-right: auto">
 
36
  <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
37
  <!-- header end -->
38
 
39
+ # Wizard Vicuna 13B Uncensored - GPTQ
40
+ - Model creator: [Eric Hartford](https://huggingface.co/ehartford)
41
+ - Original model: [Wizard Vicuna 13B Uncensored](https://huggingface.co/ehartford/Wizard-Vicuna-13B-Uncensored)
42
 
43
+ <!-- description start -->
44
+ ## Description
45
 
46
+ This repo contains GPTQ model files for [Eric Hartford's Wizard Vicuna 13B Uncensored](https://huggingface.co/ehartford/Wizard-Vicuna-13B-Uncensored).
47
 
48
+ Multiple GPTQ parameter permutations are provided; see Provided Files below for details of the options provided, their parameters, and the software used to create them.
49
+
50
+ <!-- description end -->
51
+ <!-- repositories-available start -->
52
  ## Repositories available
53
 
54
+ * [AWQ model(s) for GPU inference.](https://huggingface.co/TheBloke/Wizard-Vicuna-13B-Uncensored-AWQ)
55
+ * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Wizard-Vicuna-13B-Uncensored-GPTQ)
56
+ * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/Wizard-Vicuna-13B-Uncensored-GGUF)
57
+ * [Eric Hartford's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/ehartford/Wizard-Vicuna-13B-Uncensored)
58
+ <!-- repositories-available end -->
59
+
60
+ <!-- prompt-template start -->
61
+ ## Prompt template: Vicuna
62
+
63
+ ```
64
+ A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. USER: {prompt} ASSISTANT:
65
+
66
+ ```
67
+
68
+ <!-- prompt-template end -->
69
+ <!-- licensing start -->
70
+ ## Licensing
71
+
72
+ The creator of the source model has listed its license as `other`, and this quantization has therefore used that same license.
73
+
74
+ As this model is based on Llama 2, it is also subject to the Meta Llama 2 license terms, and the license files for that are additionally included. It should therefore be considered as being claimed to be licensed under both licenses. I contacted Hugging Face for clarification on dual licensing but they do not yet have an official position. Should this change, or should Meta provide any feedback on this situation, I will update this section accordingly.
75
+
76
+ In the meantime, any questions regarding licensing, and in particular how these two licenses might interact, should be directed to the original model repository: [Eric Hartford's Wizard Vicuna 13B Uncensored](https://huggingface.co/ehartford/Wizard-Vicuna-13B-Uncensored).
77
+ <!-- licensing end -->
78
+ <!-- README_GPTQ.md-provided-files start -->
79
+ ## Provided files and GPTQ parameters
80
+
81
+ Multiple quantisation parameters are provided, to allow you to choose the best one for your hardware and requirements.
82
+
83
+ Each separate quant is in a different branch. See below for instructions on fetching from different branches.
84
+
85
+ All recent GPTQ files are made with AutoGPTQ, and all files in non-main branches are made with AutoGPTQ. Files in the `main` branch which were uploaded before August 2023 were made with GPTQ-for-LLaMa.
86
+
87
+ <details>
88
+ <summary>Explanation of GPTQ parameters</summary>
89
+
90
+ - Bits: The bit size of the quantised model.
91
+ - GS: GPTQ group size. Higher numbers use less VRAM, but have lower quantisation accuracy. "None" is the lowest possible value.
92
+ - Act Order: True or False. Also known as `desc_act`. True results in better quantisation accuracy. Some GPTQ clients have had issues with models that use Act Order plus Group Size, but this is generally resolved now.
93
+ - Damp %: A GPTQ parameter that affects how samples are processed for quantisation. 0.01 is default, but 0.1 results in slightly better accuracy.
94
+ - GPTQ dataset: The dataset used for quantisation. Using a dataset more appropriate to the model's training can improve quantisation accuracy. Note that the GPTQ dataset is not the same as the dataset used to train the model - please refer to the original model repo for details of the training dataset(s).
95
+ - Sequence Length: The length of the dataset sequences used for quantisation. Ideally this is the same as the model sequence length. For some very long sequence models (16+K), a lower sequence length may have to be used. Note that a lower sequence length does not limit the sequence length of the quantised model. It only impacts the quantisation accuracy on longer inference sequences.
96
+ - ExLlama Compatibility: Whether this file can be loaded with ExLlama, which currently only supports Llama models in 4-bit.
97
 
98
+ </details>
99
 
100
+ | Branch | Bits | GS | Act Order | Damp % | GPTQ Dataset | Seq Len | Size | ExLlama | Desc |
101
+ | ------ | ---- | -- | --------- | ------ | ------------ | ------- | ---- | ------- | ---- |
102
+ | [latest](https://huggingface.co/TheBloke/Wizard-Vicuna-13B-Uncensored-GPTQ/tree/latest) | 4 | 128 | Yes | 0.01 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 2048 | 8.11 GB | Yes | 4-bit, with Act Order and group size 128g. Uses even less VRAM than 64g, but with slightly lower accuracy. |
103
+ | [model_v1](https://huggingface.co/TheBloke/Wizard-Vicuna-13B-Uncensored-GPTQ/tree/model_v1) | 4 | 128 | No | 0.01 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 2048 | 8.11 GB | Yes | 4-bit, without Act Order and group size 128g. |
104
+ | [main](https://huggingface.co/TheBloke/Wizard-Vicuna-13B-Uncensored-GPTQ/tree/main) | 4 | 128 | No | 0.01 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 2048 | 8.11 GB | Yes | 4-bit, without Act Order and group size 128g. |
105
+
106
+ <!-- README_GPTQ.md-provided-files end -->
107
+
108
+ <!-- README_GPTQ.md-download-from-branches start -->
109
+ ## How to download from branches
110
+
111
+ - In text-generation-webui, you can add `:branch` to the end of the download name, eg `TheBloke/Wizard-Vicuna-13B-Uncensored-GPTQ:latest`
112
+ - With Git, you can clone a branch with:
113
+ ```
114
+ git clone --single-branch --branch latest https://huggingface.co/TheBloke/Wizard-Vicuna-13B-Uncensored-GPTQ
115
+ ```
116
+ - In Python Transformers code, the branch is the `revision` parameter; see below.
117
+ <!-- README_GPTQ.md-download-from-branches end -->
118
+ <!-- README_GPTQ.md-text-generation-webui start -->
119
+ ## How to easily download and use this model in [text-generation-webui](https://github.com/oobabooga/text-generation-webui).
120
+
121
+ Please make sure you're using the latest version of [text-generation-webui](https://github.com/oobabooga/text-generation-webui).
122
+
123
+ It is strongly recommended to use the text-generation-webui one-click-installers unless you're sure you know how to make a manual install.
124
 
125
  1. Click the **Model tab**.
126
  2. Under **Download custom model or LoRA**, enter `TheBloke/Wizard-Vicuna-13B-Uncensored-GPTQ`.
127
+ - To download from a specific branch, enter for example `TheBloke/Wizard-Vicuna-13B-Uncensored-GPTQ:latest`
128
+ - see Provided Files above for the list of branches for each option.
129
  3. Click **Download**.
130
+ 4. The model will start downloading. Once it's finished it will say "Done".
131
+ 5. In the top left, click the refresh icon next to **Model**.
132
+ 6. In the **Model** dropdown, choose the model you just downloaded: `Wizard-Vicuna-13B-Uncensored-GPTQ`
133
+ 7. The model will automatically load, and is now ready for use!
134
+ 8. If you want any custom settings, set them and then click **Save settings for this model** followed by **Reload the Model** in the top right.
135
+ * Note that you do not need to and should not set manual GPTQ parameters any more. These are set automatically from the file `quantize_config.json`.
136
+ 9. Once you're ready, click the **Text Generation tab** and enter a prompt to get started!
137
+ <!-- README_GPTQ.md-text-generation-webui end -->
138
+
139
+ <!-- README_GPTQ.md-use-from-python start -->
140
+ ## How to use this GPTQ model from Python code
141
+
142
+ ### Install the necessary packages
143
+
144
+ Requires: Transformers 4.32.0 or later, Optimum 1.12.0 or later, and AutoGPTQ 0.4.2 or later.
145
+
146
+ ```shell
147
+ pip3 install transformers>=4.32.0 optimum>=1.12.0
148
+ pip3 install auto-gptq --extra-index-url https://huggingface.github.io/autogptq-index/whl/cu118/ # Use cu117 if on CUDA 11.7
149
+ ```
150
 
151
+ If you have problems installing AutoGPTQ using the pre-built wheels, install it from source instead:
152
 
153
+ ```shell
154
+ pip3 uninstall -y auto-gptq
155
+ git clone https://github.com/PanQiWei/AutoGPTQ
156
+ cd AutoGPTQ
157
+ pip3 install .
158
+ ```
159
 
160
+ ### For CodeLlama models only: you must use Transformers 4.33.0 or later.
161
 
162
+ If 4.33.0 is not yet released when you read this, you will need to install Transformers from source:
163
+ ```shell
164
+ pip3 uninstall -y transformers
165
+ pip3 install git+https://github.com/huggingface/transformers.git
166
+ ```
167
 
168
+ ### You can then use the following code
169
 
170
+ ```python
171
+ from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
 
 
 
 
 
 
 
172
 
173
+ model_name_or_path = "TheBloke/Wizard-Vicuna-13B-Uncensored-GPTQ"
174
+ # To use a different branch, change revision
175
+ # For example: revision="latest"
176
+ model = AutoModelForCausalLM.from_pretrained(model_name_or_path,
177
+ device_map="auto",
178
+ trust_remote_code=False,
179
+ revision="main")
180
 
181
+ tokenizer = AutoTokenizer.from_pretrained(model_name_or_path, use_fast=True)
182
 
183
+ prompt = "Tell me about AI"
184
+ prompt_template=f'''A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. USER: {prompt} ASSISTANT:
185
 
186
+ '''
187
 
188
+ print("\n\n*** Generate:")
189
 
190
+ input_ids = tokenizer(prompt_template, return_tensors='pt').input_ids.cuda()
191
+ output = model.generate(inputs=input_ids, temperature=0.7, do_sample=True, top_p=0.95, top_k=40, max_new_tokens=512)
192
+ print(tokenizer.decode(output[0]))
193
 
194
+ # Inference can also be done using transformers' pipeline
195
+
196
+ print("*** Pipeline:")
197
+ pipe = pipeline(
198
+ "text-generation",
199
+ model=model,
200
+ tokenizer=tokenizer,
201
+ max_new_tokens=512,
202
+ do_sample=True,
203
+ temperature=0.7,
204
+ top_p=0.95,
205
+ top_k=40,
206
+ repetition_penalty=1.1
207
+ )
208
+
209
+ print(pipe(prompt_template)[0]['generated_text'])
210
+ ```
211
+ <!-- README_GPTQ.md-use-from-python end -->
212
+
213
+ <!-- README_GPTQ.md-compatibility start -->
214
+ ## Compatibility
215
+
216
+ The files provided are tested to work with AutoGPTQ, both via Transformers and using AutoGPTQ directly. They should also work with [Occ4m's GPTQ-for-LLaMa fork](https://github.com/0cc4m/KoboldAI).
217
+
218
+ [ExLlama](https://github.com/turboderp/exllama) is compatible with Llama models in 4-bit. Please see the Provided Files table above for per-file compatibility.
219
+
220
+ [Huggingface Text Generation Inference (TGI)](https://github.com/huggingface/text-generation-inference) is compatible with all GPTQ models.
221
+ <!-- README_GPTQ.md-compatibility end -->
222
 
223
  <!-- footer start -->
224
  <!-- 200823 -->
 
228
 
229
  [TheBloke AI's Discord server](https://discord.gg/theblokeai)
230
 
231
+ ## Thanks, and how to contribute
232
 
233
  Thanks to the [chirper.ai](https://chirper.ai) team!
234
 
235
+ Thanks to Clay from [gpus.llm-utils.org](llm-utils)!
236
+
237
  I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training.
238
 
239
  If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects.
 
245
 
246
  **Special thanks to**: Aemon Algiz.
247
 
248
+ **Patreon special mentions**: Alicia Loh, Stephen Murray, K, Ajan Kanaga, RoA, Magnesian, Deo Leter, Olakabola, Eugene Pentland, zynix, Deep Realms, Raymond Fosdick, Elijah Stavena, Iucharbius, Erik Bjäreholt, Luis Javier Navarrete Lozano, Nicholas, theTransient, John Detwiler, alfie_i, knownsqashed, Mano Prime, Willem Michiel, Enrico Ros, LangChain4j, OG, Michael Dempsey, Pierre Kircher, Pedro Madruga, James Bentley, Thomas Belote, Luke @flexchar, Leonard Tan, Johann-Peter Hartmann, Illia Dulskyi, Fen Risland, Chadd, S_X, Jeff Scroggin, Ken Nordquist, Sean Connelly, Artur Olbinski, Swaroop Kallakuri, Jack West, Ai Maven, David Ziegler, Russ Johnson, transmissions 11, John Villwock, Alps Aficionado, Clay Pascal, Viktor Bowallius, Subspace Studios, Rainer Wilmers, Trenton Dambrowitz, vamX, Michael Levine, 준교 김, Brandon Frisco, Kalila, Trailburnt, Randy H, Talal Aujan, Nathan Dryer, Vadim, 阿明, ReadyPlayerEmma, Tiffany J. Kim, George Stoitzev, Spencer Kim, Jerry Meng, Gabriel Tamborski, Cory Kujawski, Jeffrey Morgan, Spiking Neurons AB, Edmond Seymore, Alexandros Triantafyllidis, Lone Striker, Cap'n Zoog, Nikolai Manek, danny, ya boyyy, Derek Yates, usrbinkat, Mandus, TL, Nathan LeClaire, subjectnull, Imad Khwaja, webtim, Raven Klaugh, Asp the Wyvern, Gabriel Puliatti, Caitlyn Gatomon, Joseph William Delisle, Jonathan Leane, Luke Pendergrass, SuperWojo, Sebastain Graf, Will Dee, Fred von Graf, Andrey, Dan Guido, Daniel P. Andersen, Nitin Borwankar, Elle, Vitor Caleffi, biorpg, jjj, NimbleBox.ai, Pieter, Matthew Berman, terasurfer, Michael Davis, Alex, Stanislav Ovsiannikov
249
 
250
 
251
  Thank you to all my generous patrons and donaters!
 
253
  And thank you again to a16z for their generous grant.
254
 
255
  <!-- footer end -->
256
+
257
+ # Original model card: Eric Hartford's Wizard Vicuna 13B Uncensored
258
+
259
 
260
  This is [wizard-vicuna-13b](https://huggingface.co/junelee/wizard-vicuna-13b) trained with a subset of the dataset - responses that contained alignment / moralizing were removed. The intent is to train a WizardLM that doesn't have alignment built-in, so that alignment (of any sort) can be added separately with for example with a RLHF LoRA.
261
 
262
  Shout out to the open source AI/ML community, and everyone who helped me out.
263
 
264
+ Note:
265
 
266
+ An uncensored model has no guardrails.
267
 
268
  You are responsible for anything you do with the model, just as you are responsible for anything you do with any dangerous object such as a knife, gun, lighter, or car.
269