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


Python util.im2col方法代码示例

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


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

示例1: forward

# 需要导入模块: from common import util [as 别名]
# 或者: from common.util import im2col [as 别名]
def forward(self, x):
        FN, C, FH, FW = self.W.shape
        N, C, H, W = x.shape
        out_h = 1 + int((H + 2 * self.pad - FH) / self.stride)
        out_w = 1 + int((W + 2 * self.pad - FW) / self.stride)

        col = im2col(x, FH, FW, self.stride, self.pad)
        col_W = self.W.reshape(FN, -1).T

        out = np.dot(col, col_W) + self.b
        out = out.reshape(N, out_h, out_w, -1).transpose(0, 3, 1, 2)

        self.x = x
        self.col = col
        self.col_W = col_W

        return out 
开发者ID:kenji0x02,项目名称:srcnn-from-scratch,代码行数:19,代码来源:layers.py

示例2: forward

# 需要导入模块: from common import util [as 别名]
# 或者: from common.util import im2col [as 别名]
def forward(self, x):
        FN, C, FH, FW = self.W.shape
        N, C, H, W = x.shape
        out_h = 1 + int((H + 2*self.pad - FH) / self.stride)
        out_w = 1 + int((W + 2*self.pad - FW) / self.stride)

        col = im2col(x, FH, FW, self.stride, self.pad)
        col_W = self.W.reshape(FN, -1).T

        out = np.dot(col, col_W) + self.b
        out = out.reshape(N, out_h, out_w, -1).transpose(0, 3, 1, 2)

        self.x = x
        self.col = col
        self.col_W = col_W

        return out 
开发者ID:HyeongTak,项目名称:Learning-Deep-Learning,代码行数:19,代码来源:layers.py

示例3: forward

# 需要导入模块: from common import util [as 别名]
# 或者: from common.util import im2col [as 别名]
def forward(self, x):
        FN, C, FH, FW = self.W.shape # 30, 1, 5, 5
        N, C, H, W = x.shape
        out_h = 1 + int((H + 2*self.pad - FH) / self.stride)
        out_w = 1 + int((W + 2*self.pad - FW) / self.stride)

        """
        im2col method 4d to 2d
        input: (batch size, input_filternum, input height, input width)
        output: (output height * output width * batch size, filter_h * filter_w * input_filternum)

        input_filternum == channel num
        """
        col = im2col(x, FH, FW, self.stride, self.pad)
        col_W = self.W.reshape(FN, -1).T
        out = np.dot(col, col_W) + self.b
        # reshape to tensor
        out = out.reshape(N, out_h, out_w, -1).transpose(0, 3, 1, 2)

        self.x = x
        self.col = col
        self.col_W = col_W

        return out 
开发者ID:YeongHyeon,项目名称:R-CNN_LIGHT,代码行数:26,代码来源:layers.py


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