Zymrael commited on
Commit
cb2b3eb
1 Parent(s): 578dc72

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -0
README.md CHANGED
@@ -17,6 +17,20 @@ tags:
17
  </p>
18
 
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  ### About
21
 
22
  Evo is a biological foundation model capable of long-context modeling and design.
 
17
  </p>
18
 
19
 
20
+ ### News
21
+
22
+ 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:
23
+
24
+ ```python
25
+ config = AutoConfig.from_pretrained(model_name, trust_remote_code=True, revision="1.1_fix")
26
+ model = AutoModelForCausalLM.from_pretrained(
27
+ model_name,
28
+ config=config,
29
+ trust_remote_code=True,
30
+ revision="1.1_fix"
31
+ )
32
+ ```
33
+
34
  ### About
35
 
36
  Evo is a biological foundation model capable of long-context modeling and design.