abdullahalzubaer commited on
Commit
ba42f52
1 Parent(s): 22b447e

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -0
README.md ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ This lora adapter is from "asprenger/bloom-6b4-clp-german-instruct-lora". Thanks for the adapter!
2
+
3
+ I thought I was uploading the complete bloom-6b4-clp-german model with the adapter that I made to work but then after pushing the model I realized that it was only the adapter. Still exploring how this PEFT works with LoRA works :)
4
+
5
+ strict requirments for peft
6
+
7
+ `peft==0.2.0`
8
+
9
+ requirment
10
+
11
+ `pip install transformers accelerate bitsandbytes peft==0.2.0`
12
+
13
+ latest peft has breaking changes with the bloom-6b4-clp-german and this lora adapter, and the only way to get them both work is (I think) is to train the base model or the adapter
14
+ again (I am not sure yet).
15
+
16
+ Reference:
17
+ - https://github.com/linhduongtuan/BLOOM-LORA/issues/5
18
+ - https://github.com/huggingface/peft/issues/276