
Maria Duarte Rosa
Statistics
0 Questions
18 Answers
RANK
891
of 262.661
REPUTATION
64
CONTRIBUTIONS
0 Questions
18 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
11
RANK
of 17.980
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 113.663
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
I want to implement Multilayer perceptron for software effort estimation. Which function should I use feedforwardnet, fitnet or something else.
For continuous outputs both fitnet and feedforwardnet are equivalent and the natural choice. Perhaps an easier way to get stra...
alrededor de 3 años ago | 1
| accepted
Custom Layer- Incorrent number of outputs
Hi Valentin, Thank you for your question. Multi-input/Multi-output custom layers are supported from R2019a. From your error me...
alrededor de 3 años ago | 0
| accepted
Mini batch size for SeriesNetwork
Hi Maxim, Thanks for providing more details. If your data is in a D x S matrix format (D being 2e6 and S being 15) MATLAB assu...
alrededor de 3 años ago | 3
| accepted
How can I use importKerasNetwork function to Import a pretrained VGGFace Keras network and weights?
Hi Ibrahim, you first need to install and run the python package as described in the GitHub page to obtain the model (including ...
alrededor de 3 años ago | 0
Correct weight Initialization in CNN
In R2019a, the following weight initializers are available (including a custom initializer via a function handle): 'glorot' (de...
alrededor de 3 años ago | 1
| accepted
How can I use importKerasNetwork function to Import a pretrained VGGFace Keras network and weights?
Hi Ibrahim, layers = importKerasLayers(modelfile) imports the architecture and weights of Keras models saved as .h5 files. Thes...
alrededor de 3 años ago | 0
| accepted
What is the order of the InputWeigths vector in a NARX net?
Hi Francisco, One suggestion is to use genFunction(net) to generate a MATLAB script from the trained network that contains all ...
alrededor de 3 años ago | 0
| accepted
How can we train images in matlab using Deep learning?
Please see here for different examples of how to use Deep Learning for Image Processing, including image super-resolution: http...
más de 3 años ago | 0
weight balancing in pretraining networks.
Once can define a custom weighted classfication layer: https://www.mathworks.com/help/deeplearning/ug/create-custom-weighted-cr...
más de 3 años ago | 0
How to customize Neural Networks' activation function
For Deep Learning networks one can create a custom activation layer using: https://www.mathworks.com/help/deeplearning/ug/defin...
más de 3 años ago | 1
How to get deep learning layer output size?
Hi Itzik, Have you tried analyzeNetwork? https://www.mathworks.com/help/deeplearning/ref/analyzenetwork.html
más de 3 años ago | 3
| accepted
deepdream error at cuda
Hi Michael, thanks for your question. deepDreamImage does not currently support DAG networks, such as GoogLeNet, and there is n...
más de 3 años ago | 0
| accepted
what is the difference between LayerGraph and DAGNetwork in deep learning?
LayerGraphs and Layers contain the network architecture (for DAGs and Series networks, respectively). These objects are then pas...
más de 3 años ago | 0
| accepted
How do I export a Neural Network from MATLAB?
The recently released https://www.mathworks.com/matlabcentral/fileexchange/67296-deep-learning-toolbox-converter-for-onnx-model-...
alrededor de 4 años ago | 1
Differences between "nntools" and "neural network fitting app"
'nntools' is an older GUI for neural networks comparing to 'nnstart' and the other GUIs featured in 'nnstart', such as the 'neur...
más de 4 años ago | 0
LSTM Layer Architecture: LSTM units and sequence length
Hi Otto, The outputSize of a LSTM layer is not directly related to a time window that slides through the data. The entire seq...
más de 4 años ago | 1
Neural Network: output representation (output layer)
Can you treat the problem as an object detection one? If so, then this example might help: <https://www.mathworks.com/help/vi...
más de 4 años ago | 0
| accepted
Plot validation curve of Neural Network
Hi Jacky, When you work with imageDatastore you do not need to pass the files and labels separately into trainNetwork and als...
más de 4 años ago | 0