当前位置:  开发笔记 > 编程语言 > 正文

Google Colab KeyError:“ COLAB_TPU_ADDR”

如何解决《GoogleColabKeyError:“COLAB_TPU_ADDR”》经验,为你挑选了1个好方法。

我正在尝试使用TPU选项在Google Colab上运行一个简单的MNIST分类器。使用Keras创建模型后,我尝试通过以下方法将其转换为TPU:

import tensorflow as tf
import os

tpu_model = tf.contrib.tpu.keras_to_tpu_model(
    model,
    strategy=tf.contrib.tpu.TPUDistributionStrategy(
        tf.contrib.cluster_resolver.TPUClusterResolver(tpu='grpc://' + os.environ['COLAB_TPU_ADDR'])
    )
)
tpu_model.compile(
    optimizer='rmsprop',
    loss='categorical_crossentropy',
    metrics=['accuracy']
)


print(model.summary())

我得到的错误是:

---------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
 in ()
      5     model,
      6     strategy=tf.contrib.tpu.TPUDistributionStrategy(
----> 7         tf.contrib.cluster_resolver.TPUClusterResolver(tpu='grpc://' + os.environ['COLAB_TPU_ADDR'])
      8     )
      9 )

/usr/lib/python3.6/os.py in __getitem__(self, key)
    667         except KeyError:
    668             # raise KeyError with the original key value
--> 669             raise KeyError(key) from None
    670         return self.decodevalue(value)
    671 

KeyError: 'COLAB_TPU_ADDR'

看来我需要更改TPU地址,但是正在谷歌搜索并且还没有找到任何东西。感谢一些帮助,谢谢!



1> Bob Smith..:

您需要使用编辑->笔记本设置菜单中可用的笔记本设置来更改后端以包括TPU。

推荐阅读
mobiledu2402851323
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有