Ahmadzei's picture
added 3 more tables for large emb model
5fa1a76
raw
history blame contribute delete
327 Bytes
Having correctly loaded the checkpoint into the 🤗 Transformers implementation, you can then save
the model under a folder of your choice /path/to/converted/checkpoint/folder that should then contain both a
pytorch_model.bin file and a config.json file:
python
model.save_pretrained("/path/to/converted/checkpoint/folder")
7.