gpt4 book ai didi

Python AWS Boto URL 连接错误

转载 作者:行者123 更新时间:2023-11-30 09:29:05 25 4
gpt4 key购买 nike

我正在尝试使用 Python BOTO 创建 AWS 机器学习模型:

import boto3
from boto3.session import Session
import uuid

session = Session(aws_access_key_id='...', aws_secret_access_key='...', region_name='us-west-1')
client = session.client('machinelearning')

response = client.create_ml_model(
MLModelId=str(uuid.uuid4()),
MLModelName='banking',
MLModelType='BINARY',
TrainingDataSourceId='...',
)

但是,我收到以下错误:

botocore.exceptions.EndpointConnectionError:无法连接到端点 URL:“https://machinelearning.us-west-1.amazonaws.com/

我不认为region_name有问题。这可能是权限问题吗?

最佳答案

实际上是地区问题。 Amazon Machine Learning 目前仅在弗吉尼亚州和爱尔兰地区提供 per documentation

enter image description here

关于Python AWS Boto URL 连接错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44958161/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com