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