Instructions to use roborovski/superprompt-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use roborovski/superprompt-v1 with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("roborovski/superprompt-v1") model = AutoModelForSeq2SeqLM.from_pretrained("roborovski/superprompt-v1") - Notebooks
- Google Colab
- Kaggle
Use the right tokenizer
#10
by Nick088 - opened
As its a finetune of the Google Flan T5 Small model, the tokenizer its the same, so there isn't really a reason to use the base model repo tokenizer when you can just use the one of your own model as its like a duplicate one
Good catch, ty!
roborovski changed pull request status to merged