
TensorFlow
吾名
积跬步以至千里
展开
-
Tensorflow 学习笔记(二)
安装Tensorflow很简单的, 安装好后,运行测试程序: import tensorflow as tf # Create TensorFlow object called tensor hello_constant = tf.constant('Hello World!') with tf.Session() as sess: # Run the tf.constant o...原创 2018-12-31 14:25:49 · 200 阅读 · 1 评论 -
TensorFlow 学习笔记(一)
虽然TensorFlow安装很简单,但还是有必要记下来的: 一、按照官网进行安装 https://www.tensorflow.org/install/pip?lang=python3 我是在windows上进行安装的. 按照步骤,当进行到第三步时: 3. 安装 TensorFlow pip 软件包 其实就是要你先通过pip安装TensorFlow软件包,即运行下面的指令: pip ...原创 2018-12-31 14:56:08 · 167 阅读 · 0 评论