E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
tensorflow2.0
TensorFlow2.0
笔记4:
TensorFlow2.0
的基础操作!
TensorFlow2.0
的基础操作!
炊烟袅袅岁月情
·
2019-04-05 15:43
Tensorflow
Deep
Learning
TensorFlow2.0
笔记3:手写数字(MNIST)识别问题初体验!
手写数字(MNIST)识别问题初体验!文章目录一.整体思路解读1.1.mnist数据集分析1.2.准备网络结构和优化器1.3.计算输出值和损失值二、附录:代码实现2.1、python代码2.2.运行结果三.需要全套课程视频+PPT+代码资源可以私聊我!一.整体思路解读1.1.mnist数据集分析注意:Dataset类型有一个好处:比如一次给一个样本[1,784],这个样本对于GPU来说是非常快的。
炊烟袅袅岁月情
·
2019-04-04 23:26
Tensorflow
Deep
Learning
争论不休的TF 2.0与PyTorch,到底现在战局如何了? | 技术头条
点击上方↑↑↑蓝字关注我们~「2019Python开发者日」全日程揭晓,请扫码咨询↑↑↑作者|JeffHale译者|Jackey编辑|Jane出品|AI科技大本营(id:rgznai100)【导语】
TensorFlow2.0
AI科技大本营
·
2019-04-04 18:23
Tensorflow 2.0 教程-卷积自编码器
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284完整
tensorflow2.0
教程代码请看
tensorflow2.0
Doit_
·
2019-04-04 08:43
tensorflow
TensorFlow2教程
tensorflow2.0
笔记2:Numpy—实现线性回归问题!
Numpy实现—线性回归问题实战文章目录一、思路分析1.1、步骤1:计算损失函数1.2、步骤2:损失函数的梯度1.3、步骤3:设定w=w'和循环二、代码综合梳理2.1、程序运行结果2.2、实验的数据集2.3、matplotlib可视化2.4、线性回归的理解一、思路分析连续性预测找出w,bw,bw,b的偏导数,1.1、步骤1:计算损失函数#计算损失函数#y=wx+bdefcomputer_error
炊烟袅袅岁月情
·
2019-04-03 23:33
Python
Tensorflow
Deep
Learning
Tensorflow2.0
笔记1:
Tensorflow2.0
正式版(2019-10-1)介绍以及安装+Windows&Linux!
Tensorflow2.0
正式版(2019-10-1)介绍以及安装+Windows&Linux!
炊烟袅袅岁月情
·
2019-04-03 18:51
Ubuntu
Tensorflow
Deep
Learning
TensorFlow 2.0 教程-DCGAN
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284完整
tensorflow2.0
教程代码请看
tensorflow2.0
Doit_
·
2019-04-03 11:48
tensorflow
TensorFlow2教程
TensorFlow 2.0 教程-词嵌入
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284完整
tensorflow2.0
教程代码请看
tensorflow2.0
Doit_
·
2019-04-03 11:02
tensorflow
TensorFlow2教程
TensorFlow2.0
中训练代码的新风格
TF2.0默认为动态图,即eager模式。意味着TF能像Pytorch一样不用在session中才能输出中间参数值了,那么动态图和静态图毕竟是有区别的,tf2.0也会有写法上的变化。不过值得吐槽的是,tf2.0启动速度仍然比Pytorch慢的多。操作被记录在磁带中(tape)这是一个关键的变化。在TF0.x到TF1.X时代,操作(operation)被加入到Graph中。但现在,操作会被梯度带记录
咆哮的阿杰
·
2019-04-02 18:58
TesorFlow
tensorflow2.0
索引与切片
最左边索引为0,然后1,2,3……从左往右最右边索引为-1,然后-2,-3……从右往左[开始:结束]:“开始”默认为0,“结束”默认为最后索引+1,所以全部不写返回所有元素返回结果包含“开始”,但不包含“结束”。Step:步长步长为负数表示倒序…:表示省略逻辑上全部的维度Tf.gather:第一个参数是数据源,axis搜索的维度序号,indices在该维度下搜索值的序号可改变数据次序。【2,1,4
编程序的艺术家
·
2019-04-02 15:57
tensorflow
tensorflow2.0
创建tensor
需要注意的是:Convert_to_tensor的参数是data即数据本身。Zeros、ones的参数是shape,也就是维度。Zeros_like=zeros(a.shape)ones_like=ones(a.shape)第一个参数是shape,第二个参数是默认值Tf.random.normal正态分布,第一个参数是shape,第二个参数是均值(缺省是0),第三个参数是方差(缺省是1)。Tf.r
编程序的艺术家
·
2019-04-02 15:44
tensorflow
tensorflow2.0
的数据类型
Scalar:标量。Dim=0Vector:向量。Dim=1Matrix:矩阵。Dim=2Tensor:Dim>2Constant:创建一个普通的tensor对象Device:用什么设备创建环境(cpu、gpu)Gpu():切换成gpu设备环境Cpu():切换成cpu设备环境Numpy():返回对象在numpy下的定义Ndim:返回对象的dim维度Rank():返回对象的维度,以tensor的形式
编程序的艺术家
·
2019-04-02 15:45
tensorflow
TensorFlow 2.0 教程-安装TensorFlow 2.0
完整
tensorflow2.0
教程代码请看github:中文教程tensorflow2_tutorials_chinese(欢迎star)更多
TensorFlow2.0
入门教程请持续关注本博客:https
Doit_
·
2019-04-02 09:01
tensorflow
TensorFlow2教程
TensorFlow2教程-自编码器
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284完整
tensorflow2.0
教程代码请看
tensorflow2.0
Doit_
·
2019-04-01 08:51
tensorflow
TensorFlow2教程
TensorFlow2教程-CNN-RNN结构用于图像处理
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284完整
tensorflow2.0
教程代码请看
tensorflow2.0
Doit_
·
2019-03-31 16:26
tensorflow
TensorFlow2教程
TensorFlow2教程-LSTM和GRU
TensorFlow2教程-LSTM和GRUTensorflow2.0教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284完整
tensorflow2.0
Doit_
·
2019-03-31 16:40
tensorflow
TensorFlow2教程
TensorFlow2教程-使用预训练CNN模型
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284完整
tensorflow2.0
教程代码请看
tensorflow2.0
Doit_
·
2019-03-30 17:41
tensorflow
TensorFlow2教程
Tensorflow2教程-文本卷积
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284完整
tensorflow2.0
教程代码请看
tensorflow2.0
Doit_
·
2019-03-30 17:05
tensorflow
TensorFlow2教程
Tensorflow2教程-CNN变体网络
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284完整
tensorflow2.0
教程代码请看
tensorflow2.0
Doit_
·
2019-03-30 17:15
tensorflow
TensorFlow2教程
Tensorflow2教程-基础CNN网络
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284完整
tensorflow2.0
教程代码请看
tensorflow2.0
Doit_
·
2019-03-30 17:09
tensorflow
TensorFlow2教程
TensorFlow2教程-mlp及深度学习常见技巧
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284完整
tensorflow2.0
教程代码请看
tensorflow2.0
Doit_
·
2019-03-30 17:33
tensorflow
TensorFlow2教程
TensorFlow2教程-基础MLP网络
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284完整
tensorflow2.0
教程代码请看
tensorflow2.0
Doit_
·
2019-03-30 17:50
tensorflow
TensorFlow2教程
TensorFlow2.0
教程-保持和读取模型
TensorFlow2.0
教程-保持和读取模型
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284
Doit_
·
2019-03-26 20:23
tensorflow
TensorFlow2教程
TensorFlow2.0
教程-回归
TensorFlow2.0
教程-回归
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284完整
tensorflow2.0
Doit_
·
2019-03-24 16:07
tensorflow
TensorFlow2教程
TensorFlow2.0
教程-结构化数据分类
TensorFlow2.0
教程-结构化数据分类
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284
Doit_
·
2019-03-24 15:50
tensorflow
TensorFlow2教程
TensorFlow2.0
问世,Pytorch还能否撼动老大哥地位?
文章目录TensorFlow2.0previewTensorFlow2.0上线市场占有率全球情况中国概览TensorFlow与PyTorch区别
TensorFlow2.0
新特性主要变化简要总结1.0到2.0
IT界的小小小学生
·
2019-03-19 15:00
tensorflow
深度学习
TensorFlow 2.0 教程
最全
TensorFlow2.0
教程-持续更新原文地址:https://blog.csdn.net/qq_31456593/article/details/88606284最新tensorflow2教程和相关资源
Doit_
·
2019-03-16 21:39
tensorflow
2.0
教程
入门
实践
tensorflow
TensorFlow2教程
TensorFlow2.0
教程-过拟合和欠拟合
TensorFlow2.0
教程-过拟合和欠拟合
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284TensorFlow2.0
Doit_
·
2019-03-16 21:55
tensorflow
TensorFlow2教程
TensorFlow2.0
教程-图像分类
TensorFlow2.0
教程-图像分类
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284TensorFlow2.0
Doit_
·
2019-03-16 21:02
tensorflow
TensorFlow2教程
TensorFlow2.0
教程-AutoGraph
Tensorflow2.0
教程持续更新https://blog.csdn.net/qq_31456593/article/details/88606284TensorFlow2.0教程-Keras快速入门
Doit_
·
2019-03-16 20:26
tensorflow2.0
教程
大全
AutoGraph
特性
tensorflow
TensorFlow2教程
TensorFlow2.0
教程-Variables
TensorFlow2.0
教程-VariablesTensorflow2.0教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284TensorFlow2.0
Doit_
·
2019-03-16 20:44
Tensorflow
教程
基础
Variable
入门
tensorflow
TensorFlow2教程
TensorFlow2.0
教程-eager模式
TensorFlow2.0
教程-eager模式
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284TensorFlow2.0
Doit_
·
2019-03-16 20:58
tensorflow2
教程
eager
代码
2.0
tensorflow
TensorFlow2教程
TensorFlow2.0
教程-keras模型保存和序列化
TensorFlow2.0
教程-keras模型保存和序列化
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284TensorFlow2.0
Doit_
·
2019-03-16 20:09
tensorflow
TensorFlow2教程
TensorFlow2.0
教程-用keras构建自己的网络层
TensorFlow2.0
教程-用keras构建自己的网络层
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284TensorFlow2.0
Doit_
·
2019-03-16 20:50
tensorflow
教程
2.0
keras
网络层
tensorflow
TensorFlow2教程
deepai新课代码The Hello World of Deep Learning with Neural Networks的tf1.0版本
伴随着
Tensorflow2.0
的发布,前段时间吴恩达在Coursera上发布了配套新课《tensorflow:从入门到精通》,主要由LaurenceMoroney讲授,共四周的内容,课程如图所示。
GreatEngineer
·
2019-03-15 21:57
深度学习
TensorFlow2.0
来了
自今年1月份谷歌放出
TensorFlow2.0
开发者预览版,开发者们如今终于迎来了万众期待的TensorFlow2.0Alpha版的正式发布。
喜欢打酱油的老鸟
·
2019-03-15 11:50
人工智能
TensorFlow2.0
教程-文本分类
TensorFlow2.0
教程-文本分类
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284TensorFlow2.0
Doit_
·
2019-03-11 23:20
tensorflow
TensorFlow2教程
TensorFlow2.0
教程-使用keras训练模型
TensorFlow2.0
教程-使用keras训练模型
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284TensorFlow2.0
Doit_
·
2019-03-10 13:20
tensorflow
深度学习
中文教程
代码
入门
tensorflow
TensorFlow2教程
TensorFlow2.0
教程-keras 函数api
TensorFlow2.0
教程-keras函数apiTensorflow2.0教程持续更新:https://blog.csdn.net/qq_31456593/article/details/88606284TensorFlow2.0
Doit_
·
2019-03-10 13:52
tensorflow
深度学习
教程
keras
入门
tensorflow
TensorFlow2教程
tensorflow2.0
教程- Keras 快速入门
tensorflow2.0
教程-tensorflow.keras快速入门
Tensorflow2.0
教程持续更新:https://blog.csdn.net/qq_31456593/article/details
Doit_
·
2019-03-10 12:56
tensorflow
教程
keras
入门
代码
深度学习
TensorFlow 2.0 Alpha 版发布啦!快来尝鲜!
TensorFlow2.0
终于来了!今天凌晨,谷歌在加州举办TensorFlow开发者峰会(TensorFlowDevSum
R3eE9y2OeFcU40
·
2019-03-08 10:00
Google 升级 TensorFlow 2.0 Alpha ,发布机器学习新硬件 coral开发板
博主地址是:http://blog.csdn.net/freewebsys1,关于coral是一个google在发布
TensorFlow2.0
的时候顺便发布的。
freewebsys
·
2019-03-07 22:06
Google
TensorFlow
【
Tensorflow2.0
】
Tensorflow2.0
的安装教程
anaconda可以使tensorflow的安装变的简单昨天tensorflow开发者大会刚开完,会上发布了关于
TensorFlow2.0
,TensorFlowLite,TensorFlow.js,SwiftforTensorFlow
牛andmore牛
·
2019-03-07 19:08
#
Tensorflow
TensorFlow 2.0 Alpha 版发布啦!
在
TensorFlow2.0
的新功能和标
AI科技大本营
·
2019-03-07 11:50
TensorFlow 2.0 极简教程,不到 20 行代码带你入门
今天,Google发布了
TensorFlow2.0
的alpha版本,真是千呼万唤始出来,对应的2.0官方教程也释出,本文翻译了官方最简单的一个教程,带你入门TensorFlow。
蓝三金
·
2019-03-07 09:48
tensorflow
2.0
mnist
google
TensorFlow
TensorFlow
教程
全球即将同步直播:TensorFlow Dev Summit 2019
届时,TensorFlow团队会发布关于
TensorFlow2.0
,TensorFlowLite,Tens
谷歌开发者_
·
2019-03-05 16:47
请注意更新TensorFlow 2.0的旧代码
TensorFlow2.0
将包含许多API变更,例如,对参数进行重新排序、重新命名符号和更改参数的默认值。手动执行所有这些变更不仅枯燥乏味,而且容易出错。
AI科技大本营
·
2019-02-28 20:32
新鲜开源:基于TF2.0的深度强化学习平台
此框架基于
TensorFlow2.0
构建,使用了tf.kerasAPI,保证了其简洁性和可读性。Huskarl可以使多环境的并行计算变得很容易,这将对加速策略学习算法(比如A2C和PPO)非常有用。
AI科技大本营
·
2019-02-23 20:28
新鲜开源:基于TF2.0的深度强化学习平台
此框架基于
TensorFlow2.0
构建,使用了tf.kerasAPI,保证了其简洁性和可读性。Huskarl可以使多环境的并行计算变得很容易,这将对加速策略学习算法(比如A2C和PPO)非常有用。
AI科技大本营
·
2019-02-23 20:28
我们期待的TensorFlow 2.0还有哪些变化?
来源|GoogleTensorFlow团队为提高TensorFlow的工作效率,
TensorFlow2.0
进行了多项更改,包括删除了多余的API,使API更加一致统一,例如统一的RNNs(循环神经网络)
AI科技大本营
·
2019-02-17 20:58
上一页
35
36
37
38
39
40
41
42
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他