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