Is it possible to do maxpooling on two matrix and change it to single matrix?How to create a neural network that has a dynamic input?Matrix multiplication between two feature maps in CaffeReduce the size of features map in convolution neual network (CNN)About max-pooling?Max pool layer vs Convolution with stride performancemerge multiple keras max pooling layersIn Torch/Lua can I split/concat tensors as they flow through a network?Divide matrix into square 2x2 submatrices - maxpooling fpropAlexNet paper does not match dimensions they reported?how max pool layer decrease/increase the numbers of feature channels?

Why would anyone ever invest in a cash-only etf?

What is a good example for artistic ND filter applications?

Is it safe if the neutral lead is exposed and disconnected?

How to have poached eggs in "sphere form"?

2010 (?) science fiction TV show with new world

Why were contact sensors put on three of the Lunar Module's four legs? Did they ever bend and stick out sideways?

Shouldn't there be "us" instead of "our" in this sentence?

Surviving a planet collision?

Why did House of Representatives need to condemn Trumps Tweets?

In syntax, why cannot we say things like "he took walked at the park"? but can say "he took a walk at the park"?

Scam? Checks via Email

Classic vs Modern Experience

How to improve king safety

If the Moon were impacted by a suitably sized meteor, how long would it take to impact the Earth?

How does a poisoned arrow combine with the spell Conjure Barrage?

GNU sort stable sort when sort does not know sort order

How to efficiently shred a lot of cabbage?

What do I lose by going Paladin 17 / Warlock 3, instead of taking 1 additional level or 1 fewer level in Warlock?

Alternatives to minimizing loss in regression

Polish citizen flying from Canada to Honolulu with a layover in Chicago

What would the United Kingdom's "optimal" Brexit deal look like?

Is it okay for me to decline a project on ethical grounds?

Why did some Apollo missions carry a grenade launcher?

Is there a word to describe someone who is, or the state of being, content with hanging around others without interacting with them?



Is it possible to do maxpooling on two matrix and change it to single matrix?


How to create a neural network that has a dynamic input?Matrix multiplication between two feature maps in CaffeReduce the size of features map in convolution neual network (CNN)About max-pooling?Max pool layer vs Convolution with stride performancemerge multiple keras max pooling layersIn Torch/Lua can I split/concat tensors as they flow through a network?Divide matrix into square 2x2 submatrices - maxpooling fpropAlexNet paper does not match dimensions they reported?how max pool layer decrease/increase the numbers of feature channels?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















Can I convert two 3x3 matrices into a single 3x3 matrix using a max pooling layer?



For example let's take 2 matrices:



matrix 1



1 2 2 
0 1 0
2 1 1


matrix 2



1 0 10
1 0 1
0 1 0


using maxpool(dim = (2,2), stride =1)










share|improve this question





















  • 1





    what do you expect the output matrix to look like?

    – Kai Aeberli
    Mar 26 at 20:42











  • a single matrix ,which would be the combine value of the 2 matrix

    – user3135139
    Mar 27 at 6:13






  • 1





    if you make your two matrices into samples of your training set, max pooling would do that

    – Kai Aeberli
    Mar 27 at 6:18

















0















Can I convert two 3x3 matrices into a single 3x3 matrix using a max pooling layer?



For example let's take 2 matrices:



matrix 1



1 2 2 
0 1 0
2 1 1


matrix 2



1 0 10
1 0 1
0 1 0


using maxpool(dim = (2,2), stride =1)










share|improve this question





















  • 1





    what do you expect the output matrix to look like?

    – Kai Aeberli
    Mar 26 at 20:42











  • a single matrix ,which would be the combine value of the 2 matrix

    – user3135139
    Mar 27 at 6:13






  • 1





    if you make your two matrices into samples of your training set, max pooling would do that

    – Kai Aeberli
    Mar 27 at 6:18













0












0








0








Can I convert two 3x3 matrices into a single 3x3 matrix using a max pooling layer?



For example let's take 2 matrices:



matrix 1



1 2 2 
0 1 0
2 1 1


matrix 2



1 0 10
1 0 1
0 1 0


using maxpool(dim = (2,2), stride =1)










share|improve this question
















Can I convert two 3x3 matrices into a single 3x3 matrix using a max pooling layer?



For example let's take 2 matrices:



matrix 1



1 2 2 
0 1 0
2 1 1


matrix 2



1 0 10
1 0 1
0 1 0


using maxpool(dim = (2,2), stride =1)







deep-learning max-pooling






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 26 at 21:13









Kai Aeberli

7265 silver badges15 bronze badges




7265 silver badges15 bronze badges










asked Mar 26 at 20:29









user3135139user3135139

61 bronze badge




61 bronze badge










  • 1





    what do you expect the output matrix to look like?

    – Kai Aeberli
    Mar 26 at 20:42











  • a single matrix ,which would be the combine value of the 2 matrix

    – user3135139
    Mar 27 at 6:13






  • 1





    if you make your two matrices into samples of your training set, max pooling would do that

    – Kai Aeberli
    Mar 27 at 6:18












  • 1





    what do you expect the output matrix to look like?

    – Kai Aeberli
    Mar 26 at 20:42











  • a single matrix ,which would be the combine value of the 2 matrix

    – user3135139
    Mar 27 at 6:13






  • 1





    if you make your two matrices into samples of your training set, max pooling would do that

    – Kai Aeberli
    Mar 27 at 6:18







1




1





what do you expect the output matrix to look like?

– Kai Aeberli
Mar 26 at 20:42





what do you expect the output matrix to look like?

– Kai Aeberli
Mar 26 at 20:42













a single matrix ,which would be the combine value of the 2 matrix

– user3135139
Mar 27 at 6:13





a single matrix ,which would be the combine value of the 2 matrix

– user3135139
Mar 27 at 6:13




1




1





if you make your two matrices into samples of your training set, max pooling would do that

– Kai Aeberli
Mar 27 at 6:18





if you make your two matrices into samples of your training set, max pooling would do that

– Kai Aeberli
Mar 27 at 6:18












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55365728%2fis-it-possible-to-do-maxpooling-on-two-matrix-and-change-it-to-single-matrix%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




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • 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.

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%2fstackoverflow.com%2fquestions%2f55365728%2fis-it-possible-to-do-maxpooling-on-two-matrix-and-change-it-to-single-matrix%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

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript