initial commit e15e448
Shaojie Jiang commited on
How to use NeuralNotwork/blenderbot-400M-ct with Transformers:
# Load model directly
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
tokenizer = AutoTokenizer.from_pretrained("NeuralNotwork/blenderbot-400M-ct")
model = AutoModelForSeq2SeqLM.from_pretrained("NeuralNotwork/blenderbot-400M-ct")