
tensorflow
liangbaqiang
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
tensorflow GPU的使用
https://www.tensorflow.org/guide/gpu原创 2020-08-26 10:45:17 · 132 阅读 · 0 评论 -
查看pb模型的节点
查看pb模型的节点原创 2020-06-01 17:39:23 · 1356 阅读 · 0 评论 -
tensorflow下已经初始化,但还是存在 Attempting to use uninitialized value的解决方案
init = tf.global_variables_initializer()要写到函数调用的后面import tensorflow.contrib.slim as slimimport tensorflow as tfdef Mobilenet(input_shape,classes,is_training=True,width_multiplier=1,use_bias=True):...原创 2020-03-19 13:40:30 · 2704 阅读 · 0 评论 -
tf中list和tensor的转换
input_shape = [4,224,224,4]input = tf.random_normal(input_shape) #转成tensorinputs_shape = input.get_shape().as_list() #转成listprint(inputs_shape)[4,224,224,4]原创 2020-03-18 16:08:43 · 10573 阅读 · 2 评论 -
Tensorflow打印网络结构与变量
在用tens...转载 2020-03-17 14:42:25 · 1021 阅读 · 0 评论 -
tensorflow ckpt模型和pb模型获取节点名称,以及ckpt转pb模型
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本...转载 2019-10-22 14:30:02 · 477 阅读 · 0 评论