Zymrael commited on
Commit
1ec26ca
1 Parent(s): 9562f3f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -0
README.md CHANGED
@@ -16,6 +16,19 @@ tags:
16
  <img src="https://cdn-uploads.huggingface.co/production/uploads/62a1306bbe7fa896d2c8de44/JoEHcvLTUlHoMcgh3mmAz.png" width="70%" />
17
  </p>
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
  ### About
21
 
 
16
  <img src="https://cdn-uploads.huggingface.co/production/uploads/62a1306bbe7fa896d2c8de44/JoEHcvLTUlHoMcgh3mmAz.png" width="70%" />
17
  </p>
18
 
19
+ ### News
20
+
21
+ We identified and fixed an issue related to a wrong permutation of some projections, which affects generation quality. To use the new model revision, please load as follows:
22
+
23
+ ```
24
+ config = AutoConfig.from_pretrained(model_name, trust_remote_code=True, revision="1.1_fix")
25
+ model = AutoModelForCausalLM.from_pretrained(
26
+ model_name,
27
+ config=config,
28
+ trust_remote_code=True,
29
+ revision="1.1_fix"
30
+ )
31
+ ```
32
 
33
  ### About
34