Update README.md
Browse files
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 =
|
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 |
```
|