Instructions to use google/flan-t5-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use google/flan-t5-base with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("google/flan-t5-base") model = AutoModelForSeq2SeqLM.from_pretrained("google/flan-t5-base") - Notebooks
- Google Colab
- Kaggle
Issue with Flan-T5 in Huggingface Langflow
#19
by Ankitab-6 - opened
Hello, I am trying to create a legal chatbot with huggingface langflow. I followed a tutorial on how to create a simple chatbot with a prompt, however I am facing an issue. No matter what question I ask the chatbot, I don't receive an answer. Attached is what I created with langflow, and what I see after asking the chatbot a question.
