溫馨提示×

怎么查看tensorflow版本

小億
199
2024-03-20 14:45:31
欄目: 深度學習

要查看TensorFlow的版本,可以通過以下步驟:

1. 打開Python交互式環(huán)境,可以使用命令行工具或者Jupyter Notebook。

2. 導入TensorFlow庫:`import tensorflow as tf`

3. 使用`tf.__version__`命令來查看TensorFlow的版本號。

例如,在Python交互式環(huán)境中輸入以下代碼:

```

import tensorflow as tf

print(tf.__version__)

```

運行后會輸出當前安裝的TensorFlow版本號。

0