Solution available: Week 6 Convolution neural networks

The solution has been posted.

Note: A student informed me of an error. When building the convolution layers, you need to edit the code as follows (or download the exercise again).

Change "conv = convLayer2D(data, ...)" to "conv = convLayer2D(conv, ...)"

----------------------------- Updated code ------------------------------

conv = data
for ii in range(len(numbOfFilters)):
    layerName = 'convLayer%s' % ii
    conv = convLayer2D(conv, ...)

 

 

 

Publisert 6. mars 2018 09:34 - Sist endret 6. mars 2018 09:34