so I constantly get the same error when trying to run a code on Juyperlabs:
“ResourceExhausted: 429 Quota exceeded for aiplatform.googleapis.com/online_prediction_requests_per_base_model with base model: textembedding-gecko. Please submit a quota increase request. https://cloud.google.com/vertex-ai/docs/generative-ai/quotas-genai.”
I am currently on a test account but so is my collegue and for him, with the exact same setup, the exact same code with the same dataset is running perfectly fine.
I’m really confused as to what could be the problem here. I’m very new to this so if anyone has any idea of how to fix this, it would be greatly appreciated!
My code:
“pdf_folder_path = “data/”
image_description_prompt = “””Explain what is going on in the image.
If it’s a table, extract all elements of the table.
If it’s a graph, explain the findings in the graph.
Do not include any numbers that are not mentioned in the image.
“””
text_metadata_df, image_metadata_df = get_document_metadata(
multimodal_model,
pdf_folder_path,
image_save_dir=”images”,
image_description_prompt=image_description_prompt,
embedding_size=1408,
)
print(“nn — Completed processing. —“)”
Currently, it is processing just one simple 5-pager PDF with no image, so it should work perefectly fine.
Anca p is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.