【发布时间】:2020-10-03 08:56:06
【问题描述】:
我想在我的深度学习项目中使用 LMS,我为此使用了代码:
import tensorflow as tf
tf.config.experimental.set_lms_enabled(True)
来自这个IBM GitHub link。但我得到了提到的错误。
AttributeError: module 'tensorflow._api.v2.config.experimental' has no attribute 'set_lms_enabled'
我在使用 tensorflow 2.2 的 colab notebook 中尝试过。我应该降级吗?我该如何解决这个问题?
【问题讨论】:
标签: tensorflow google-colaboratory