t5-base-dutch / flax_to_pytorch.py
yhavinga's picture
Add pytorch and tensorflow models
6ff213f
raw
history blame
No virus
292 Bytes
from transformers import T5ForConditionalGeneration, TFT5ForConditionalGeneration
pt_model = T5ForConditionalGeneration.from_pretrained(".", from_flax=True)
pt_model.save_pretrained(".")
tf_model = TFT5ForConditionalGeneration.from_pretrained(".", from_pt=True)
tf_model.save_pretrained(".")