Respondida
A single hidden layered NN but the weight matrix is a diagonal matrix (with a bias) -- how to design that?
Refer to Weight and Bias Values, Input Weights, Layer Weights & net.layerWeights{i,j}.learn. You can access the layer weights a...

casi 6 años hace | 1

| aceptada

Respondida
How do I download data that is updated everyday in a new file?
Refer to websave and Download Web Page and Files. websave('01-22-2020.csv',rawFileVersionURL)

casi 6 años hace | 0

Respondida
I have MATLAB, want to download Signal Processing Toolbox
Refer to Get and Manage Add-Ons. Visit License Center, click on your license and check which toolboxes you have licensed for.

casi 6 años hace | 0

Respondida
How can I create multiple scatter3 figures for each k-value?
Try running the following code and check whether you are getting different plots or not: close all for i=4:6 [X,Y,Z] = sp...

casi 6 años hace | 0

Respondida
command image changing colors
The following code might help you: A = [1 1 1;1 0 1; 1 1 0] %Create an image matrix same as size(A) with 3 RGB channels img =...

casi 6 años hace | 0

Respondida
Want to add regularization (L2) in Resnet50 code
You can specify the L2 regularization factors for the weights and biases in Convolutional and Fully Connected Layers by specifyi...

casi 6 años hace | 0

| aceptada

Respondida
K-means image processing color scales
Refer to the Colormap Name-Value Pair Argument of the function labeloverlay. colorMap = [1 0 0; 0 0 1; 0 1 0]; B = labeloverla...

casi 6 años hace | 1

| aceptada

Respondida
How to get values over x-axis from a plotted Histogram?
Seems that from the documentation of histogram & Histogram Properties there isn't any built in property to get the values you ar...

casi 6 años hace | 1

| aceptada

Respondida
Averaging mutiple structures to get a single mean waveform
The following code might help you: clear all a(1).waveforms = rand(101,1); a(2).waveforms = rand(101,1); a(3).waveforms = ra...

casi 6 años hace | 0

| aceptada

Respondida
How do i turn a line graph into a bar graph?
plotyy is not recommended. Use yyaxis instead. For more information, see Compatibility Considerations. Refer to the Examples of...

casi 6 años hace | 0

Respondida
What function replaced vision.GeometricTransformEstimator
Starting MATLAB R2016a release when you use the System object vision.GeometricTransformEstimator, MATLAB® issues a warning. Repl...

casi 6 años hace | 1

Respondida
Displacement Graph (How to center it) ?
If your concern is regarding the plot only then the quick work around would be to replace plot(Xc,Yc) with plot(Xc,Yc-max(Yc)...

casi 6 años hace | 0

Respondida
How to plot two function multiplied by each other.
The output of sind(120*pi*t) & exp(-180*t) are vectors of size equal to size(t) = 1x10001. Hence as the error indicates you to ...

casi 6 años hace | 0

Respondida
How to get rid of error: Error using horzcat. Dimensions of array being concatenated are not consistent.
While concatenating arrays, the lengths of the dimensions must match except for the operating dimension. Refer to horzcat, cat,...

casi 6 años hace | 0

Respondida
Need help understanding error PLEASE
Below is the code from lines 142-147 Fmax=max(abs(F))+1; subplot(2,1,1) plot(x,U, '-ob '); axis([0 x(n) -UMax ...

casi 6 años hace | 0

Respondida
How to grab intermediate feature maps to do deep supervision
The following resources might help you: Define Custom Training Loops, Loss Functions, and Networks Deep Learning Import, Expor...

casi 6 años hace | 0

| aceptada

Respondida
Data augmentation_CNN
As @Mohammad Sami already mentioned, evaluating the performance of the neural network based on training accuracy/loss only is no...

casi 6 años hace | 0

| aceptada

Respondida
Error 'Function definition not supported in this context. Create functions in code file.'
You have to create functions in files, refer to Create Functions in Files, Add Functions to Scripts & Functions. If you have si...

casi 6 años hace | 0

Respondida
How to reshape (digitTrain4DArrayData) inbuilt number dataset provided in MATLAB ?
[XTrain,YTrain] = digitTrain4DArrayData; Use the reshape function as follows: reshapedXTrain = reshape(XTrain,784,5000);

casi 6 años hace | 0

| aceptada

Respondida
deep learning multiple cpus
In the trainingOptions mention the name value pair arguments 'ExecutionEnvironment','parallel'. Make sure that you have installe...

casi 6 años hace | 0

Respondida
How to divide images in a folder into two groups (training set and test set)?
To divide the trainingSet and testSet in the ratio 7:3, use the function splitEachLabel as follows: [trainingSet,testSet] = spl...

casi 6 años hace | 0

Respondida
Intelligent fault diagnosis based on deep learning techniques
Here are some resources that might be relevant to your question: Fault detection using deep learning in MATLAB Chemical Proces...

casi 6 años hace | 0

Respondida
Unable to resolve the name helperCIFAR10Data.download.
The helperCIFAR10Data is used in the example Train Object Detector Using R-CNN Deep Learning. In order to use it Make sure yo...

casi 6 años hace | 0

Respondida
Classifying Validation Video Using Fine-Tuned Transfer Learning Network
I think the function centerCrop you are using is an helper function from the example Classify Videos Using Deep Learning. Since...

casi 6 años hace | 0

Respondida
Download Products Without Installing for Other Version of MATLAB
The Download Products Without Installing is available w.r.t MATLAB R2019b also, make sure that you are administrator for the lic...

casi 6 años hace | 1

| aceptada

Respondida
Error in function ssdLayer
The function ssdLayers is introduced in R2020a, make sure that the MATLAB version you are using is R2020a and you have Computer ...

casi 6 años hace | 0

| aceptada

Respondida
Predicting the future values based on the historical data without setting target values in multi layer neural network
Refer to Shallow Neural Network Time-Series Prediction and Modeling and proceed with Nonlinear Autoregressive (NAR).

casi 6 años hace | 0

| aceptada

Respondida
image agumentation_CNN
The rows correspond to the predicted class (Output Class) and the columns correspond to the true class (Target Class). The diago...

casi 6 años hace | 0

| aceptada

Respondida
Augmentation of data in image processing
With plotconfusion(YValidation,YPred) you will be plotting the confusion matrix only for the validation data which is 30% of...

casi 6 años hace | 0

| aceptada

Respondida
Error using trainNetwork: Invalid training data. The output size of the last layer does not match the response size.
Based on the above information and code, I think you are trying to build a network to classify between the classes deer and Non-...

casi 6 años hace | 0

Cargar más