Зачем транспонировать в пространственной пакетной нормализацииPython

Программы на Python
Ответить Пред. темаСлед. тема
Anonymous
 Зачем транспонировать в пространственной пакетной нормализации

Сообщение Anonymous »

Я пытался написать функцию Spatial_batchnorm_forward, используемую в сверточной нейронной сети. В этой функции я хотел повторно использовать функцию patchnorm_foward, которая реализована для ввода в форме (N, D) в полностью подключенной сети.
Ниже приведена правильная реализация.

Код: Выделить всё

def spatial_batchnorm_forward(x, gamma, beta, bn_param):
"""Computes the forward pass for spatial batch normalization.
"""
out, cache = None, None

N, C, H, W = x.shape
x_ = x.transpose(0,2,3,1).reshape(N*H*W, C)
out_, cache = batchnorm_forward(x_, gamma, beta, bn_param)
out = out_.reshape(N, H, W, C).transpose(0,3,1,2)

return out, cache
Но сначала я написал так:

Код: Выделить всё

def spatial_batchnorm_forward(x, gamma, beta, bn_param):
"""Computes the forward pass for spatial batch normalization.
"""
out, cache = None, None

N, C, H, W = x.shape
x_ = x.reshape(-1, C)
out_, cache = batchnorm_forward(x_, gamma, beta, bn_param)
out = out_.reshape(N, C, H, W)

return out, cache
Этот код может работать, а это значит, что размеры совпадают. Но результат немного отличается от приведенного выше.
Мне интересно, что здесь происходит.
Очень ценю ваше терпение и помощь!!!
Думаю, проблема возникает в функции изменения формы, поэтому я прочитал документ.

Код: Выделить всё

numpy.reshape(a, newshape, order='C')[source]
Gives a new shape to an array without changing its data.

Parameters
aarray_like
Array to be reshaped.

newshapeint or tuple of ints
The new shape should be compatible with the original shape. If an integer, then the result will be a 1-D array of that length. One shape dimension can be -1. In this case, the value is inferred from the length of the array and remaining dimensions.

order{‘C’, ‘F’, ‘A’}, optional
Read the elements of a using this index order, and place the elements into the reshaped array using this index order. ‘C’ means to read / write the elements using C-like index order, with the last axis index changing fastest, back to the first axis index changing slowest. ‘F’ means to read / write the elements using Fortran-like index order, with the first index changing fastest, and the last index changing slowest. Note that the ‘C’ and ‘F’ options take no account of the memory layout of the underlying array, and only refer to the order of indexing. ‘A’ means to read / write the elements in Fortran-like index order if a is Fortran contiguous in memory, C-like order otherwise.

Returns
reshaped_arrayndarray
This will be a new view object if possible; otherwise, it will be a copy. Note there is no guarantee of the memory layout (C- or Fortran- contiguous) of the returned array.
Но я до сих пор не могу понять, что здесь происходит.

Подробнее здесь: https://stackoverflow.com/questions/717 ... malization
Реклама
Ответить Пред. темаСлед. тема

Быстрый ответ

Изменение регистра текста: 
Смайлики
:) :( :oops: :roll: :wink: :muza: :clever: :sorry: :angel: :read: *x)
Ещё смайлики…
   
К этому ответу прикреплено по крайней мере одно вложение.

Если вы не хотите добавлять вложения, оставьте поля пустыми.

Максимально разрешённый размер вложения: 15 МБ.

  • Похожие темы
    Ответы
    Просмотры
    Последнее сообщение
  • Добавление пакетной нормализации снижает производительность.
    Anonymous » » в форуме Python
    0 Ответы
    8 Просмотры
    Последнее сообщение Anonymous
  • Заказ пакетной нормализации и отсева?
    Anonymous » » в форуме Python
    0 Ответы
    3 Просмотры
    Последнее сообщение Anonymous
  • Транспонирование квадратной матрицы с использованием ArrayList с Collections.swap и пространственной сложностью O (1) в
    Anonymous » » в форуме JAVA
    0 Ответы
    26 Просмотры
    Последнее сообщение Anonymous
  • Получение временной и пространственной сложности из программы
    Anonymous » » в форуме JAVA
    0 Ответы
    15 Просмотры
    Последнее сообщение Anonymous
  • Как мне найти все внутренние ячейки в пространственной сети узлов?
    Anonymous » » в форуме Python
    0 Ответы
    7 Просмотры
    Последнее сообщение Anonymous

Вернуться в «Python»