My API_ENDPOINT
is set to europe-west1-aiplatform.googleapis.com
.
I define a pipeline:
def pipeline(project: str = PROJECT_ID, region: str = REGION, api_endpoint: str = API_ENDPOINT):
when I run it:
job = aip.PipelineJob(
display_name=DISPLAY_NAME,
template_path="image classification_pipeline.json".replace(" ", "_"),)
job.run()
it is always created in USandA:
INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob created.
Resource name: projects/my_proj_id/locations/us-central1/pipelineJobs/automl-image-training-v2-anumber
How do I get it into Europe?