roberta-base-emotion / convert_flax_to_pytorch.py
bhadresh-savani's picture
added flax and tensorflow model
90a5f86
raw history blame
No virus
168 Bytes
from transformers import AutoModelForSequenceClassification
model = AutoModelForSequenceClassification.from_pretrained("./", from_flax=True)
model.save_pretrained("./")