TensorFlow
tensorflow
若水cjj
人生如果没有目标,那就会像无头苍蝇一样乱飞乱撞
展开
-
安装tf-gpu1.14
1.创建环境conda create -n tf114 python=3.6.122.安装tensorflow-gpu==1.14.0pip install tensorflow-gpu==1.14.0 -i https://pypi.doubanio.com/simple3.安装opencv(可选)pip install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-contrib-python4.安装Pillow(PIL)(可选)原创 2021-04-27 23:13:07 · 467 阅读 · 0 评论 -
极客兔兔 TensorFlow入门教程
TensorFlow入门(一) - mnist手写数字识别(网络搭建)TensorFlow入门(二) - mnist手写数字识别(模型保存加载)TensorFlow入门(三) - mnist手写数字识别(可视化训练)TensorFlow入门(四) - mnist手写数字识别(制作h5py训练集)TensorFlow 2.0 (五) - mnist手写数字识别(CNN卷积神经网络)...原创 2021-03-19 20:42:52 · 529 阅读 · 0 评论 -
tensorflow 1.x基础练习一:使用二维随机数据训练单个神经元网络
tensorflow 1.x基础练习一import tensorflow as tfimport numpy as np# 使用 NumPy 生成假数据(phony data), 总共 100 个点.x_data = np.float32(np.random.rand(2, 100))y_data = np.dot([0.1, 0.2], x_data) + 0.3# 构造一个线性模型w = tf.Variable(tf.ones((1, 2)))b = tf.Variable(tf.ze原创 2021-03-17 21:57:08 · 200 阅读 · 0 评论 -
安装tensorflow cpu版(python==3.5 tf==1.8)
1.conda create -n tfcpu python==3.52.conda activate tfcpu183.pip install tensorflow==1.8 -i https://pypi.doubanio.com/simple这样安装tf会报错,原因是numpy版本太高4. pip install numpy==1.16 -i https://pypi.doubanio.com/simple原创 2021-01-31 16:00:38 · 445 阅读 · 0 评论 -
搭建前端keras,后端tensorflow环境
1.创建一个keras的虚拟环境conda create -n keras python==3.6注:python==3.6因为jupyter notebook切换内核的库nb_conda 支持的python版本有限,不是所有的python版本都支持,好像3.7-3.9不支持2.安装kerasconda install mingw libpythonconda install keras3.安装后端(tensorflow)CPU版本pip install tensorflow==2.0原创 2020-12-19 17:37:11 · 839 阅读 · 1 评论 -
安装tensorflow 2.3
本机环境Anaconda3-2020.02-Windows-x86_64.exepython 3.7.3安装步骤打开anaconda Prompt ,创建一个环境: conda create -n tensorflow python=3.7激活tensorflowactivate tensorflow3.安装tensorflowpip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow这样安装就可以原创 2020-09-21 18:17:10 · 386 阅读 · 0 评论 -
安装tensorflow-cpu
由于直接安装tensorflow太慢了,所以被迫使用镜像站来安装使用清华镜像安装pip install tensorflow-gpu -i https://pypi.tuna.tsinghua.edu.cn/simple或pip install tensorflow -i https://pypi.tuna.tsinghua.edu.cn/simple豆瓣镜像(推荐,好像比清华更快一点)pip install tensorflow-gpu -i http://pypi.douban.com/s原创 2020-09-18 21:42:30 · 477 阅读 · 0 评论 -
3.1 张量,计算图,会话
3.1 张量,计算图,会话本节课目标:搭建第一个神经网络,总结搭建八股基于TensorFlow的NN:用张量表示数据,用计算图搭建神经网络,用会话执行计算图,优化线上的权重(参数),得到模型.张量(Tensor):多维数组(列表)阶:张量的维数维数阶名字例子0-D0标量 scalars=1231-D1向量 vectorv=[1,2,3]2-...原创 2019-02-02 14:22:37 · 308 阅读 · 0 评论 -
3.2前向传播
前向传播:搭建模型,实现推理(以全连接网络为例)例如:生产一批零件讲体积x1,和重量x2为特征输入NN,通过NN后输入一个数值。神经网络图变量初始化,计算图节点运算都要用会话(with结构)实现with tf.Session() as sess: sess.run()变量初始化:在sess.run函数中用tf.global_variables_initializer()in...原创 2019-02-02 20:39:09 · 288 阅读 · 0 评论