(our, oai, dst2src=False)
| 383 | load_weights(oai.c_proj, our.dense_4h_to_h, dst2src) |
| 384 | |
| 385 | def load_attention(our, oai, dst2src=False): |
| 386 | load_weights(oai.c_attn, our.query_key_value, dst2src) |
| 387 | load_weights(oai.c_proj, our.dense, dst2src) |
| 388 | |
| 389 | def load_transformer_layer(our, oai, dst2src=False): |
| 390 | load_weights(oai.ln_1, our.input_layernorm, dst2src) |
no test coverage detected