文章
3111
标签
111
分类
73
首页
时间轴
标签
分类
关于
友链
Estom的博客
TensorFlow-OP(控制)
返回首页
搜索
首页
时间轴
标签
分类
关于
友链
TensorFlow-OP(控制)
发表于
2021-03-08
|
更新于
2021-03-20
|
Tensorflow
|
总字数:
1
|
阅读时长:
1分钟
|
浏览量:
merge
swich
enter
leave
文章作者:
Estom
文章链接:
https://estom.github.com/2021/03/08/Tensorflow/TensorFlow1.0/TensorFlow-OP%EF%BC%88%E6%8E%A7%E5%88%B6%EF%BC%89/
版权声明:
本博客所有文章除特别声明外,均采用
CC BY-NC-SA 4.0
许可协议。转载请注明来源
Estom的博客
!
上一篇
TensorFlow-Queue & Thread
TensorFlow-Queue & Thread 使用TensorFlow进行异步计算 Queue tf.queue.* 分类 tf.queue.FIFOQueue :按入列顺序出列的队列 tf.queue.RandomShuffleQueue :随机顺序出列的队列 tf.queue.PaddingFIFOQueue :以固定长度批量出列的队列 tf.queue.PriorityQueue :带优先级出列的队列 基本方法(tf.queue.queuebase) dequeue(name=None) Dequeues one element from this queue.If the queue is empty when this operation executes, it will block until there is an element to dequeue. The tuple of tensors that was dequeued. dequeuemany(n,name=None) Dequeues and con...
下一篇
TensorFlow-OP(计算)
TensorFlow-OP元素op 求和 1tf.add(x,y,name=None) 减法 1tf.sub(x,y,name=None) 乘法 1tf.mutipy(x,y,name=None) 除法 1tf.div(x,y,name=None) 取模 1tf.mod(x,y,name=None) 求绝对值 1tf.abs(x,name=None) 取反 1tf.neg(x,name=None) 赋值 1tf.sign(x,name=None) 返回符号 1tf.inv(x,name=None) 计算平方 1tf.square(x,name=None) 开根号 1tf.sqrt(x,name=None) 计算e的次方 1tf.exp(x,name=None) 计算log 1tf.log(x,name=None) 返回最大值 1tf.maximum(x,y,name=None) 返回最小值 1tf.minimum(x,y,name=None) 三角函数cos 1tf.cos(x,name=None) 三角函数s...
Estom
也许那年在绿色的麦浪中奔跑的时候,就注定了我此生的繁华与悲叹
文章
3111
标签
111
分类
73
关注
公告
欢迎参观Estom的小屋
目录
1.
merge
2.
swich
3.
enter
4.
leave
最新文章
自引用泛型概述
2025-12-21
06 JUC并发容器
2025-12-18
02 集合底层结构
2025-12-18
30 问题排查和性能优化指南
2025-09-14
面试说明
2025-09-03
搜索
数据加载中