Files
papuGaPT2/convert_to_pytorch.py

6 lines
155 B
Python
Raw Permalink Normal View History

#!/usr/bin/env python3
from transformers import GPT2LMHeadModel
model = GPT2LMHeadModel.from_pretrained("./", from_flax=True)
model.save_pretrained("./")