%在变量前意味着什么

时间:2019-12-06 13:00:18

标签: python

嗨,我在tensorflow tutorial中遇到了以下几行:

from __future__ import absolute_import, division, print_function, unicode_literals

# Install TensorFlow
try:
  # %tensorflow_version only exists in Colab.
  %tensorflow_version 2.x
except Exception:
  pass

import tensorflow as tf

但是我不明白这一行:

%tensorflow_version 2.x

我可以知道模块化标志在这里做什么吗?谢谢

1 个答案:

答案 0 :(得分:0)

这是选择2.X TensorFlow版本的魔术命令。仅在Google Colab中可用。