Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Analysis
#1
Hi,

[1.1] “Appendix J: Multiple (Maximum and Range) Pooling Statistics in a Convolution Network” in the book, Understanding
Deep Learning. Download from https://www.understandingdeeplearning.com
Apply multiple pooling as shown in [1.1] on any image data set.



How can we apply multiple pooling as shown in [1.1] on any image data set.


Thanks..
Reply
#2
And your code so far....?
Reply
#3
The process diagram in chapter 6.11 and the recipe in Appendix J provides a reasonable outline for working with Keras to solve the problem but not sure how to progress for this.


Thanks..
Reply
#4
Most likely you want to start in a notebook style app for your program - Jupyter notebooks, Google's colab, whatever.
After a markdown cell describing what you want to do, first coding cell should be your imports.
Once the imports work (you may need to pip install tensorflow depeneding on your system) next cell would start to read your data
Next cell display that data to be sure it is in the format you expected
Next cell start your analysis

And show your work so far.

And please keep this publicly posted. There is no reason for private messaging here.
Reply
#5
is there any need to do pip install tensorflow if whole of this exercise is tried to be done on Google's colab as there we need not to do such pip installations as it has all the required packages inbuilt in itself?


Thanks..
Reply
#6
That's why I said depending on your system. You are correct, Google's colab does not require you to install tensorflow. If instead you were using Watson, Jupyter lab, Jupyter notebook, or VSCode you would.

The instances where you would need to do that appears to outnumber those where you don't.
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020