File size: 385 Bytes
1c07095
 
 
 
 
 
 
 
 
f23f5c5
 
1c07095
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from modeling_arctic_m_bge_small import ConcatModel, ConcatModelConfig

config = ConcatModelConfig()
model = ConcatModel(config)
model.load_weights_from_automodels(
    in_models=['Snowflake/snowflake-arctic-embed-m-v1.5', 'BAAI/bge-small-en-v1.5'],
    has_pooling_layer=[True, True]
)

output_path = 'model'
model.save_pretrained(output_path)

print(f'Model saved as {output_path}')