How to use uclanlp/plbart-base with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("uclanlp/plbart-base") model = AutoModelForSeq2SeqLM.from_pretrained("uclanlp/plbart-base")
Hello, on your page it says that plbart-base is Autotrain compatible. However, when I tried to select this model in Autotrain for translation task, I got this error: "Model uclanlp/plbart-base is missing a tokenizer config file". Can this be fixed?
· Sign up or log in to comment