当前位置: 首页>>代码示例>>Python>>正文


Python model_base.ResNet方法代码示例

本文整理汇总了Python中model_base.ResNet方法的典型用法代码示例。如果您正苦于以下问题:Python model_base.ResNet方法的具体用法?Python model_base.ResNet怎么用?Python model_base.ResNet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在model_base的用法示例。


在下文中一共展示了model_base.ResNet方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: forward_pass

# 需要导入模块: import model_base [as 别名]
# 或者: from model_base import ResNet [as 别名]
def forward_pass(self, x, input_data_format='channels_last'):
    """Build the core model within the graph."""
    if self._data_format != input_data_format:
      if input_data_format == 'channels_last':
        # Computation requires channels_first.
        x = tf.transpose(x, [0, 3, 1, 2])
      else:
        # Computation requires channels_last.
        x = tf.transpose(x, [0, 2, 3, 1])

    # Image standardization.
    x = x / 128 - 1

    x = self._conv(x, 3, 16, 1)
    x = self._batch_norm(x)
    x = self._relu(x)

    # Use basic (non-bottleneck) block and ResNet V1 (post-activation).
    res_func = self._residual_v1

    # 3 stages of block stacking.
    for i in range(3):
      with tf.name_scope('stage'):
        for j in range(self.n):
          if j == 0:
            # First block in a stage, filters and strides may change.
            x = res_func(x, 3, self.filters[i], self.filters[i + 1],
                         self.strides[i])
          else:
            # Following blocks in a stage, constant filters and unit stride.
            x = res_func(x, 3, self.filters[i + 1], self.filters[i + 1], 1)

    x = self._global_avg_pool(x)
    x = self._fully_connected(x, self.num_classes)

    return x 
开发者ID:ringringyi,项目名称:DOTA_models,代码行数:38,代码来源:cifar10_model.py

示例2: forward_pass

# 需要导入模块: import model_base [as 别名]
# 或者: from model_base import ResNet [as 别名]
def forward_pass(self, x, input_data_format='channels_last'):
    """Build the core model within the graph."""
    if self._data_format != input_data_format:
      if input_data_format == 'channels_last':
        # Computation requires channels_first.
        x = tf.transpose(x, [0, 3, 1, 2])
      else:
        # Computation requires channels_last.
        x = tf.transpose(x, [0, 2, 3, 1])

    # Image standardization.
    x = x / 128 - 1

    x = self._conv(x, 3, 16, 1)
    x = self._batch_norm(x)
    x = self._relu(x)

    if self.version == 'v1':
      # Use basic (non-bottleneck) block and ResNet V1 (post-activation).
      res_func = self._residual_v1
    elif self.version == 'v2':
      # Use basic (non-bottleneck) block and ResNet V2 (pre-activation).
      res_func = self._residual_v2
    else:  # 'bv2'
      # Use bottleneck block and ResNet V2 (pre-activation).
      res_func = self._bottleneck_residual_v2

    # 3 stages of block stacking.
    for i in range(3):
      with tf.name_scope('stage'):
        for j in range(self.n):
          if j == 0:
            # First block in a stage, filters and strides may change.
            x = res_func(x, self.filters[i], self.filters[i + 1],
                         self.strides[i])
          else:
            # Following blocks in a stage, constant filters and unit stride.
            x = res_func(x, self.filters[i + 1], self.filters[i + 1], 1)

    x = self._global_avg_pool(x)
    x = self._fully_connected(x, self.num_classes, self.loss_type)

    return x 
开发者ID:richardaecn,项目名称:class-balanced-loss,代码行数:45,代码来源:cifar_model.py


注:本文中的model_base.ResNet方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。