Instructions to use google/flan-t5-xxl with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use google/flan-t5-xxl with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("google/flan-t5-xxl") model = AutoModelForSeq2SeqLM.from_pretrained("google/flan-t5-xxl") - Notebooks
- Google Colab
- Kaggle
Model google/flan-t5-xxl does not exist
#45
by phdykd - opened
I have this code running smoothly before,
llm=HuggingFaceHub(repo_id="google/flan-t5-xxl", model_kwargs={"temperature":0.7, "max_length":512}).
Bu today, it says "HfHubHTTPError: 404 Client Error: Not Found for url: https://huggingface.co/api/models/google/flan-t5-xxl (Request ID: Root=1-645a5b93-4a130f591edbbc965dc50e6b)
Sorry, we can't find the page you are looking for.".
Any idea?
Yeah thats correct, I also had my code running but suddenly we are getting different answers now.
Any idea?