Getting started with TensorFlow
Getting started with TensorFlow
本篇文章主要是记录如何从零开始接触TensorFlow:
- 由于个人比较喜欢用Python, 所以本文中介绍的是Python 版本
- 由于没有Linux 电脑, clone 一个也比较麻烦, 所以直接安装Windows 版本
- TensorFlow 的新手入门学习
Python 安装
-参考的文档是:博客地址
- TensorFlow 的对应 Python版本必须是 Python3.5 版本及以上, (Python2.X 和Python3.X 是不兼容的, 所以必须看好Python的安装版本)
- Python 3.5.4安装:
安装地址
- 设置python的环境变量:
1. Control Panel\System and Security\System\ , 点击 Advanced system settings , 进入 Environment Variables, 设置PATH
2. 字符串后面添加 Python35 路径以及Python35的Scripts 路径(别忘记分号)
;C:\Users\ref3oz\AppData\Local\Programs\Python\Python35\;C:\Users\ref3oz\AppData\Local\Programs\Python\Python35\Scripts;
- note:需要把script里面的pip文件copy到python35这个目录;
TensorFlow 安装
最简单的安装方式就是通过pip 安装, 只要一条command line :
pip3 install –upgrade tensorflow
具体步骤:
- TensorFlow 安装官方教程: https://www.tensorflow.org/install/install_windows
- start 一个command prompt, cd 到Python35 路径下, in my case :
C:\Users\ref3oz\AppData\Local\Programs\Python\Python35 -
run command line:
pip3 install –upgrade tensorflow
安装好之后command显示如下:
-
安装好之后测试: (直接 启用Python的command Shell,再进行测试)
python
import tensorflow as tf
hello = tf.constant(‘Hello, TensorFlow!’)
sess = tf.Session()
print(sess.run(hello))
为防止有些童鞋不晓得,特意截屏:
TensorFlow 入门
如果是首次接触TensorFlow, 可以看看官方网站上面有关TensorFlow的介绍:
https://www.tensorflow.org/get_started/get_started
在本地将这些命令跑一遍就能大致简单理解各个command的作用.
尾注
- 今天是开始学习的第一天, 由于本人也是为在职旁枝coding人员, 对于图像处理感兴趣,所以利用业余时间充实一下自己,有何意见与建议,欢迎批评指正.
上一篇: EasyPoi导出Excel
下一篇: Socket
推荐阅读
-
在C#下使用TensorFlow.NET训练自己的数据集
-
浅谈tensorflow中dataset.shuffle和dataset.batch dataset.repeat注意点
-
CUDA 编程相关;tensorflow GPU 编程;关键知识点记录;CUDA 编译过程;NVCC
-
C#使用TensorFlow.NET训练自己的数据集的方法
-
Android创建服务之started service详细介绍
-
TensorFlow损失函数专题详解
-
Tensorflow之Saver的用法详解
-
TensorFlow发布了一则劲爆消息!Python就是这么牛逼!不信?你看
-
计算机视觉(python)tensorflow2.0框架下CNN做图像分类
-
使用tensorflow实现AlexNet