robit-roberta-base-it / create_config.py
prateekagrawal's picture
Saving weights and logs of step 8
b1b3841
raw
history blame contribute delete
195 Bytes
#!/usr/bin/env python3
# Setup the config file for roberta-base model
from transformers import RobertaConfig
config = RobertaConfig.from_pretrained("roberta-base")
config.save_pretrained("./")