aloobun commited on
Commit
7e6637a
1 Parent(s): b74055d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -22,7 +22,7 @@ vector = math_model.state_dict()[k] - base_model.state_dict()[k]
22
  - Vector retrieved from the result of step one, is added to third model(lex-hue/Delexa-7b). This should transfer **math** *skills* to our third model.
23
 
24
  ```
25
- vector = math_model.state_dict()[k]
26
  new_v = v + vector.to(v.device)
27
  v.copy_(new_v)
28
  ```
 
22
  - Vector retrieved from the result of step one, is added to third model(lex-hue/Delexa-7b). This should transfer **math** *skills* to our third model.
23
 
24
  ```
25
+ vector = new_math_model.state_dict()[k]
26
  new_v = v + vector.to(v.device)
27
  v.copy_(new_v)
28
  ```