arctic-m-bge-small / save_safetensors.py
michaeldinzinger's picture
Update README.md with text
f23f5c5
raw
history blame contribute delete
385 Bytes
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}')