File size: 203 Bytes
2fba63b |
1 2 3 4 5 6 7 |
from transformers import GPT2Config
model_dir = "." # ${MODEL_DIR}
config = GPT2Config.from_pretrained("gpt2-large", resid_pdrop=0.0, embd_pdrop=0.0, attn_pdrop=0.0)
config.save_pretrained(model_dir)
|