Ask an expert. Trust the answer.
Your academic and career questions answered
by verified experts.
When I create a SOM using the following: >> x = simplecluster_dataset; >> net = selforgmap([10 10]); >> net = train(net, x); I click "SOM Sample ...
Hello everybody, In order to determine optimal hidden neurons, Trial and error algorithm has been used (trial = 10, 10 < H < 100, dH = 100). I get ...
If you have elements of 2D data that are put into a 3D inputs variable, is it possible to do pattern recognition on this data in MATLAB? >> inpu...
Why does AlexNet have non-scalar values for NumChannels and NumFilters in some convolutional layers? Take the layers 'conv1' and 'conv2' for example. ...
How to get the encoded data from a retrained autoencoder? Here is my example: X = bodyfat_dataset; autoenc = trainAutoencoder(X); extract1= enco...
Mapstd is used for standardization, mapminmax is for normalization. But When to use mapstd and mapminmax? I want to do a regression(function fitting) ...
I would like to confirm a few images just to understand what imageDataAugmenter does. Is there a way to visualize the augmented image data created by ...
I am trying to use MATLAB and the Neural Network Toolbox to predict a future value from a time series. I am trying to use a recurrent network (Elman),...
There is some interesting behaviour with plotconfusion when passing it double values instead of categorical values. If I have some predicted responses...
Hello, I'm trying to develop a neural network for classification of 2 non mutually exclusive outputs, based on 1 input. Using the standard param...