我通过云控制台(不是 ctpu、gcloud)创建了同名的 TPU 和 VM 实例。当我使用命令检查 VM 上的 tpu 时,
gcloud compute tpus list
我的 TPU 已准备就绪。
但是当我运行 python 脚本时:
from tensorflow.contrib.cluster_resolver import TPUClusterResolver
tpu_grpc_url = TPUClusterResolver(tpu="v3-nonpre", zone="us-central1-a").get_master()
它说googleapiclient.errors.HttpError: <HttpError 403 when requesting https://tpu.googleapis.com/v1alpha1/projects/red-splice-230206/locations/us-central1-a/nodes/v3-nonpre?alt=json returned "Request had insufficient authentication scopes.">
我应该做些什么来获得所需的身份验证?