cekal commited on
Commit
e72c03e
1 Parent(s): 59e9357

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -1
README.md CHANGED
@@ -14,4 +14,56 @@ datasets:
14
  inference: false
15
  ---
16
 
17
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  inference: false
15
  ---
16
 
17
+ This is the Python model code for MPT-7B patched so that it can be used with a LoRA. Note that while I tested that it works and I get reasonable results out, it is very possible that the model isn't being trained correctly. The model code specifically says that left padding is not supported, but I forcibly did so and got decent results.
18
+
19
+ Note that when using LoRA, there is a strange quirk that prevents me from causing generation with an empty prompt.
20
+
21
+ I also included a model-agnostic export_hf_checkpoint.py script, which you can use to merge your lora back into a new full model. Once you do this, you do not need to use the patched version of the model code anymore. That being said, if you want to be able to load the model in 8bit you will still need it. The usage is python export_hf_checkpoint.py <source> <lora> <dest>.
22
+
23
+ If you would like to use this with text-generation-webui, apply the following patch:
24
+
25
+ --- a/modules/training.py
26
+ +++ b/modules/training.py
27
+ @@ -28,12 +28,13 @@ try:
28
+ MODEL_CLASSES = {v: k for k, v in MODEL_FOR_CAUSAL_LM_MAPPING_NAMES}
29
+ except:
30
+ standard_modules = ["q_proj", "v_proj"]
31
+ - model_to_lora_modules = {"llama": standard_modules, "opt": standard_modules, "gptj": standard_modules, "gpt_neox": ["query_key_value"]}
32
+ + model_to_lora_modules = {"llama": standard_modules, "opt": standard_modules, "gptj": standard_modules, "gpt_neox": ["query_key_value"], "mpt": ["Wqkv"]}
33
+ MODEL_CLASSES = {
34
+ "LlamaForCausalLM": "llama",
35
+ "OPTForCausalLM": "opt",
36
+ "GPTJForCausalLM": "gptj",
37
+ - "GPTNeoXForCausalLM": "gpt_neox"
38
+ + "GPTNeoXForCausalLM": "gpt_neox",
39
+ + "MPTForCausalLM": "mpt"
40
+ }
41
+
42
+ WANT_INTERRUPT = False
43
+
44
+ You will need to run the webui with these options:
45
+ python server.py --model mosaicml_mpt-7b-instruct --trust-remote-code --load-in-8bit
46
+
47
+ You may also need to patch bitsandbytes/nn/modules.py to prevent running out of VRAM when saving the LoRA:
48
+ --- a/modules.py
49
+ +++ b/modules.py
50
+ @@ -259,13 +259,13 @@
51
+ if not self.state.has_fp16_weights and self.state.CB is None and self.state.CxB is not None:
52
+ # reorder weight layout back from ampere/turing to row
53
+ reorder_layout = True
54
+ - weight_clone = self.weight.data.clone()
55
+ + weight_clone = self.weight.data
56
+ else:
57
+ reorder_layout = False
58
+
59
+ try:
60
+ if reorder_layout:
61
+ - self.weight.data = undo_layout(self.state.CxB, self.state.tile_indices)
62
+ + self.weight.data = undo_layout(self.state.CxB.cpu(), self.state.tile_indices.cpu())
63
+
64
+ super()._save_to_state_dict(destination, prefix, keep_vars)
65
+
66
+ (It resides in miniconda3/envs/textgen/lib/python3.10/site-packages/bitsandbytes/nn/modules.py for me.)
67
+
68
+ The alterations are based on the source code for the llama model from HF Transformers.
69
+