10 lines
189 B
Python
10 lines
189 B
Python
from transformers import GPT2Config
|
|
|
|
model_dir = "./"
|
|
|
|
config = GPT2Config.from_pretrained(
|
|
"gpt2", resid_pdrop=0.0, embd_pdrop=0.0, attn_pdrop=0.0
|
|
)
|
|
config.save_pretrained(model_dir)
|
|
|