با سلام
من برای نمایش وزن لایه های عمیقتر در شبکههای عصبی کانولوشن با خطای Cannot display summaries of variables with more than 524288 elements در متلب مواجه می شوم.
خود متلب برای نمایش وزنهای لایه اول از این کد استفاده کرده است:
%
Get the network weights for the second convolutional layer
w1 = convnet.Layers(2).Weights;
% Scale and resize the weights for visualization
w1 = mat2gray(w1);
w1 = imresize(w1,5);
% Display a montage of network weights. There are 96 individual sets of
% weights in the first layer.
figure
montage(w1)
title('First convolutional layer weights')
اما برای لایه های عمیقتر به علت بالا رفتن سایز وزنها جواب نمیدهد.
لطفا راهنماییی کنید.