
Philip Brown
Statistics
RANK
1 041
of 258 163
REPUTATION
50
CONTRIBUTIONS
0 Questions
14 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
5
RANK
of 17 792
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
How to use classify into App Designer to classify images using a pretrained neural network
My guess at what's happening: you're not using the classify function on AlexNet, but calling it on something else. In your scree...
6 månader ago | 0
When use Sequence and when Feature for Neural Networks input layer in regression problem?
You're completely correct - you want to use featureInputLayer(3) as the input layer, and regressionOutputLayer as the output. f...
6 månader ago | 1
| accepted
Invalid training data. The output size (1000) of the last layer does not match the number of classes (5).
As in Yanqi Liu's comment, you probably need to modify the fully connected layer too: fullyConnectedLayer(5,"Name","fc","BiasLe...
6 månader ago | 0
| accepted
I am trying to use a different data for my Validation and it is saying that: Training and validation responses must have the same categories. To view the categories of the res
It's likely that your training and validation folders contain different folder names, and those are being used as the class labe...
6 månader ago | 0
| accepted
Neural Network Confusion Matrix
It looks like your network is just predicting all observations into class 5. If your test dataset is very unbalanced, so nearly ...
6 månader ago | 0
Problem in automatic gradient calculation using Deep Learning Toolbox
To ensure tracing is happening, you need to pass your modelGradients function to dlfeval - see this doc page for more details. R...
9 månader ago | 1
| accepted
Connect SVM to CNN using matlab deep network designer
There's no built-in SVM classifier layer available in Deep Network Designer, but you should still be able to use the approach ou...
9 månader ago | 0
| accepted
Performing semantic segmentation of brain volume on 2D slices
You could take a look at this GitHub repo Brain-MRI-Age-Classification-using-Deep-Learning. The function prepare2DImageDataset.m...
11 månader ago | 0
How to get multiple output response using time series response of ANN deep learning toolbox?
You can use the outputIndex option for plotresponse. plotresponse(T,Y,'outputIndex',2); You might also want to set the sampleI...
11 månader ago | 0
Deep Network Designer Early Stopping
You can use the ValidationPatience setting in trainingOptions (doc page). In Deep Network Designer, on the "Training" tab, open...
11 månader ago | 1
| accepted
Is there an equivalent to close all for deep learning training windows?
Currently, you can't directly close just deep learning plots with a particular command. However, it is possible to close all fi...
11 månader ago | 1
| accepted
Group Layers in Deep Network Designer
It's not currently possible to view nested "subsystem"-like blocks in Deep Network Designer. We're aware this would be a useful ...
11 månader ago | 0
| accepted
What is Validation data in deep learning?
The "validation data" is a set of data held separate from your training data. It's used during the training process to see how t...
11 månader ago | 1
| accepted
How to Realize 'Gradient Reversal Layer' ?
It looks like you should be able to do this by writing your own custom layer. See the "Intermediate Layer Template" for some cod...
11 månader ago | 0
| accepted
Solved
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
nästan 5 år ago
Solved
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
nästan 5 år ago
Solved
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
nästan 5 år ago