码迷,mamicode.com
首页 > 其他好文 > 详细

TensorflowTensorflow细节-P158-slim的使用

时间:2019-10-06 11:15:34      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:imp   code   pool   stride   flow   pre   scope   net   str   

slim的使用

从以下细节可以看出先使用slim = tf.contrib.slim要回用,剩下的看看以下代码就懂了

import tensorflow as tf
slim = tf.contrib.slim

with slim.arg_scope([slim.conv2d, slim.max_pool2d, slim.avg_pool2d], stride=1, padding='VALID'):
    with tf.variable_scope('Mixed_7c'):
        with tf.variable_scope('Branch_0'):
            branch_0 = slim.conv2d(net, 320, [1, 1], scope='Conv2d_0a_1x1')

TensorflowTensorflow细节-P158-slim的使用

标签:imp   code   pool   stride   flow   pre   scope   net   str   

原文地址:https://www.cnblogs.com/liuboblog/p/11626560.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!