Configuration of masks in PixelCNN2019 Community Moderator ElectionQuestions about CNN: weights and biasesCustom loss function which is included gradient in KerasIntuitive explanation of Convolutional layers in Deep CNNDetermining size of FC layer after Conv layer in PyTorchWhat is the purpose of a 1x1 convolutional layer?Wrangling data for CNNwhat happens to the depth channels when convolved by multiple filters in a cnn (keras, tensorflow)CNN architecture design guidelines when doing multilabel classification of 1K possible “easy” classesWhat is the motivation for row-wise convolution and folding in Kalchbrenner et al. (2014)?What are the possible values of a filter in a CNN?

Applicability of Single Responsibility Principle

Irreducibility of a simple polynomial

What is the opposite of 'gravitas'?

Failed to fetch jessie backports repository

Why does John Bercow say “unlock” after reading out the results of a vote?

How can I replace every global instance of "x[2]" with "x_2"

Cynical novel that describes an America ruled by the media, arms manufacturers, and ethnic figureheads

Hostile work environment after whistle-blowing on coworker and our boss. What do I do?

Have I saved too much for retirement so far?

Opposite of a diet

Was Spock the First Vulcan in Starfleet?

At which point does a character regain all their Hit Dice?

Can a monster with multiattack use this ability if they are missing a limb?

Efficiently merge handle parallel feature branches in SFDX

Why Were Madagascar and New Zealand Discovered So Late?

What defines a dissertation?

What is the term when two people sing in harmony, but they aren't singing the same notes?

Is a roofing delivery truck likely to crack my driveway slab?

apt-get update is failing in debian

Tiptoe or tiphoof? Adjusting words to better fit fantasy races

Everything Bob says is false. How does he get people to trust him?

Is there any reason not to eat food that's been dropped on the surface of the moon?

Coordinate position not precise

Valid Badminton Score?



Configuration of masks in PixelCNN



2019 Community Moderator ElectionQuestions about CNN: weights and biasesCustom loss function which is included gradient in KerasIntuitive explanation of Convolutional layers in Deep CNNDetermining size of FC layer after Conv layer in PyTorchWhat is the purpose of a 1x1 convolutional layer?Wrangling data for CNNwhat happens to the depth channels when convolved by multiple filters in a cnn (keras, tensorflow)CNN architecture design guidelines when doing multilabel classification of 1K possible “easy” classesWhat is the motivation for row-wise convolution and folding in Kalchbrenner et al. (2014)?What are the possible values of a filter in a CNN?










1












$begingroup$


I have trouble understanding the masks in PixelCNN 1.



enter image description hereenter image description here



Here for A, each channel is connected to prior channels. For B, channels are also connected to themselves. My problem is in first layer when I go from 3 channels to number of filters. Let's say I have 128 filters, how is the mask then implemented? What I implemented so far with the assumption that there is same number of channels in each layer is:



H = KERNEL_SIZE[0]
W = KERNEL_SIZE[1]
N = OUT_CHANNEL
M = IN_CHANNEL

# implement context mask
mask = np.zeros((N, M, H, W))
mask[:,:,:(H//2)] = 1
mask[:,:,(H//2),range((W//2))] = 1

# implement channel mask
if mask_type == 'A':
mask[np.triu_indices(N, k=0, m=M)] = 0
elif mask_type == 'B':
mask[np.triu_indices(N, k=1, m=M)] = 0









share|improve this question







New contributor




Oğuz Şerbetci is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$
















    1












    $begingroup$


    I have trouble understanding the masks in PixelCNN 1.



    enter image description hereenter image description here



    Here for A, each channel is connected to prior channels. For B, channels are also connected to themselves. My problem is in first layer when I go from 3 channels to number of filters. Let's say I have 128 filters, how is the mask then implemented? What I implemented so far with the assumption that there is same number of channels in each layer is:



    H = KERNEL_SIZE[0]
    W = KERNEL_SIZE[1]
    N = OUT_CHANNEL
    M = IN_CHANNEL

    # implement context mask
    mask = np.zeros((N, M, H, W))
    mask[:,:,:(H//2)] = 1
    mask[:,:,(H//2),range((W//2))] = 1

    # implement channel mask
    if mask_type == 'A':
    mask[np.triu_indices(N, k=0, m=M)] = 0
    elif mask_type == 'B':
    mask[np.triu_indices(N, k=1, m=M)] = 0









    share|improve this question







    New contributor




    Oğuz Şerbetci is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.







    $endgroup$














      1












      1








      1





      $begingroup$


      I have trouble understanding the masks in PixelCNN 1.



      enter image description hereenter image description here



      Here for A, each channel is connected to prior channels. For B, channels are also connected to themselves. My problem is in first layer when I go from 3 channels to number of filters. Let's say I have 128 filters, how is the mask then implemented? What I implemented so far with the assumption that there is same number of channels in each layer is:



      H = KERNEL_SIZE[0]
      W = KERNEL_SIZE[1]
      N = OUT_CHANNEL
      M = IN_CHANNEL

      # implement context mask
      mask = np.zeros((N, M, H, W))
      mask[:,:,:(H//2)] = 1
      mask[:,:,(H//2),range((W//2))] = 1

      # implement channel mask
      if mask_type == 'A':
      mask[np.triu_indices(N, k=0, m=M)] = 0
      elif mask_type == 'B':
      mask[np.triu_indices(N, k=1, m=M)] = 0









      share|improve this question







      New contributor




      Oğuz Şerbetci is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.







      $endgroup$




      I have trouble understanding the masks in PixelCNN 1.



      enter image description hereenter image description here



      Here for A, each channel is connected to prior channels. For B, channels are also connected to themselves. My problem is in first layer when I go from 3 channels to number of filters. Let's say I have 128 filters, how is the mask then implemented? What I implemented so far with the assumption that there is same number of channels in each layer is:



      H = KERNEL_SIZE[0]
      W = KERNEL_SIZE[1]
      N = OUT_CHANNEL
      M = IN_CHANNEL

      # implement context mask
      mask = np.zeros((N, M, H, W))
      mask[:,:,:(H//2)] = 1
      mask[:,:,(H//2),range((W//2))] = 1

      # implement channel mask
      if mask_type == 'A':
      mask[np.triu_indices(N, k=0, m=M)] = 0
      elif mask_type == 'B':
      mask[np.triu_indices(N, k=1, m=M)] = 0






      cnn






      share|improve this question







      New contributor




      Oğuz Şerbetci is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Oğuz Şerbetci is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Oğuz Şerbetci is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked Mar 21 at 12:43









      Oğuz ŞerbetciOğuz Şerbetci

      1061




      1061




      New contributor




      Oğuz Şerbetci is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Oğuz Şerbetci is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Oğuz Şerbetci is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          0






          active

          oldest

          votes











          Your Answer





          StackExchange.ifUsing("editor", function ()
          return StackExchange.using("mathjaxEditing", function ()
          StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
          StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
          );
          );
          , "mathjax-editing");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "557"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );






          Oğuz Şerbetci is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f47737%2fconfiguration-of-masks-in-pixelcnn%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Oğuz Şerbetci is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          Oğuz Şerbetci is a new contributor. Be nice, and check out our Code of Conduct.












          Oğuz Şerbetci is a new contributor. Be nice, and check out our Code of Conduct.











          Oğuz Şerbetci is a new contributor. Be nice, and check out our Code of Conduct.














          Thanks for contributing an answer to Data Science Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f47737%2fconfiguration-of-masks-in-pixelcnn%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Adding axes to figuresAdding axes labels to LaTeX figuresLaTeX equivalent of ConTeXt buffersRotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?TikZ scaling graphic and adjust node position and keep font sizeNumerical conditional within tikz keys?adding axes to shapesAlign axes across subfiguresAdding figures with a certain orderLine up nested tikz enviroments or how to get rid of themAdding axes labels to LaTeX figures

          Luettelo Yhdysvaltain laivaston lentotukialuksista Lähteet | Navigointivalikko

          Gary (muusikko) Sisällysluettelo Historia | Rockin' High | Lähteet | Aiheesta muualla | NavigointivalikkoInfobox OKTuomas "Gary" Keskinen Ancaran kitaristiksiProjekti Rockin' High