
深度学习
Performer_Cherry
EI论文,SCI论文已发,已授权专利7项,软件著作权授权2项。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Tensorflow 多元线性回归实现的总结
Tensorflow 多元线性回归实现的总结1,定义算法公式,也就是神经网络forward时的计算2,定义loss,选定优化器,并指定优化器优化loss3,迭代地对数据进行训练4,在测试集或验证集上对准确率进行评测1,定义算法公式,也就是神经网络forward时的计算from tensorflow.examples.tutorials.mnist import input_datai...原创 2019-06-06 10:06:31 · 2754 阅读 · 0 评论 -
DNN
构建图阶段构建神经网络层构建计算图计算图阶段import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_dataimport numpy as npfrom tensorflow.contrib.layers import fully_connected构建图阶段# 构建图阶段n_i...原创 2019-06-08 16:18:41 · 1749 阅读 · 0 评论 -
TensorFlow学习笔记
TensorFlow是Google Brain 2015年11月在GitHub开源TensorFlow官方网址:www.tensorflow.orgGitHub网址:https://github.com/tensorflow/tensorflow模型仓库网址:https://github.com/tensorflow/modelsTensorFlow支持的语言Python、C++、GO、J...原创 2019-06-04 20:53:57 · 279 阅读 · 0 评论