我很困惑使用什麼,有效,相同或完整。我也不知道它是做什麼的。我無法在Docs中找到它。而border_mode
對於MaxPooling2D
層對我來說沒有意義。 (雖然它對我來說確實對於卷積層有意義)。keras中的border_mode是什麼意思?
1
A
回答
2
當您使用二維圖像與m rows and n cols
和axb kernal
進行卷積輸入圖像,這是發生了什麼:
如果border_mode是「全」,返回(m+a-1)x(n+b-1)
圖像;
if border_mode爲'same',返回與輸入圖像相同的維數;
如果border_mode爲'有效',則返回(m-a+1)x(n-b+1)
圖像。 例如,
輸入: 在以下的4×4圖像
A = [12 13 14 15;1 2 3 4;16 17 18 19;5 6 7 8], and a 3x3 kernel B = [1 2 3;4 5 6;7 8 9]
,
如果border_mode是 '滿',然後返回一個6x6
矩陣;
if border_mode is'same',then returns a 4x4
matrix;
如果border_mode爲'有效',則返回2x2
矩陣。
也可以使用功能CONV2(A,B,border_mode)在MATLAB來測試輸出矩陣。
希望這個答案可以幫助。
相關問題
- 1. 是什麼意思:是什麼意思?
- 2. KERAS的model.summary中的「無」是什麼意思?
- 3. keras python中model.sumary()的不同參數是什麼意思?
- 4. 是什麼意思,在Python中是什麼意思?
- 5. SURF的min_dist和max_dist是什麼意思,FlannMatcher是什麼意思
- 6. 「?」是什麼意思?調用jsp的標記是什麼意思?
- 7. %{}是什麼意思?
- 8. '#'是什麼意思?
- 9. 「?」是什麼意思?
- 10. #{...}是什麼意思?
- 11. || =是什麼意思?
- 12. @是什麼意思
- 13. $$ $$是什麼意思?
- 14. `/ * @`是什麼意思?
- 15. 「=」是什麼意思
- 16. + =是什麼意思?
- 17. {..} [..]是什麼意思?
- 18. 什麼是:!:意思?
- 19. @ []是什麼意思?
- 20. 什麼是「||」意思?
- 21. /([^.]*)\.(.*)/是什麼意思?
- 22. &**是什麼意思?
- 23. @(...)是什麼意思?
- 24. &@是什麼意思?
- 25. 「\\。\」,「\ ?? \」,「\\?\」,「\\」是什麼意思?
- 26. &=是什麼意思?
- 27. {%=%}是什麼意思?
- 28. 是什麼意思?
- 29. %%是什麼意思?
- 30. {}是什麼意思?
什麼是'內核'?我從未見過這個詞。 –