IN THE CNN CODE
WHAT DOES THE BELOW LINE REFERS TO (ADD()-WHY DO WE USE THIS FUNCTION??)
out = add([shortcut, out])
IN THE CNN CODE
WHAT DOES THE BELOW LINE REFERS TO (ADD()-WHY DO WE USE THIS FUNCTION??)
out = add([shortcut, out])
please reply to my doubt
add([1,2], [3,4]) will give [4, 6]
See here for more details: https://www.tensorflow.org/api_docs/python/tf/keras/layers/Add