File size: 195 Bytes
c3ab426 |
1 2 3 4 5 6 7 |
#!/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("./") |