Hi everyone I have a step in vertex ai pipelines that looks like this:
transcribe_task = transcribe_audios(audio_files=download_task.output)
transcribe_task.set_cpu_limit("2").set_memory_limit(
"8G"
).add_node_selector_constraint("NVIDIA_TESLA_T4").set_gpu_limit("1")
yet that task is not executed due to:
com.google.cloud.ai.platform.common.errors.AiPlatformException: code=RESOURCE_EXHAUSTED, message=The following quota metrics exceed quota limits: aiplatform.googleapis.com/custom_model_training_nvidia_t4_gpus, cause=null; Failed to create custom job for the task.
But that quota is not listed anywhere in the quota manager, how can I enable GPU in Vertex AI pipelines?
Solved! Go to Solution.
I solved it, it is quite not easy to find:
So for anyone with the same problem, go to Quotas and use the following filters:
Hope it can help anyone
I solved it, it is quite not easy to find:
So for anyone with the same problem, go to Quotas and use the following filters:
Hope it can help anyone
Hi, I got 1 value available but I get the same error