photo

Prasanna


Last seen: 6 mois il y a Actif depuis 2024

Followers: 0   Following: 0

Programmer

Statistiques

All
MATLAB Answers

0 Questions
130 Réponses

Cody

0 Problèmes
1 Solution

RANG
1 122
of 300 750

RÉPUTATION
66

CONTRIBUTIONS
0 Questions
130 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
16

RANG
 of 21 073

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
133 274
of 170 837

CONTRIBUTIONS
0 Problèmes
1 Solution

SCORE
20

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • 6 Month Streak
  • MATLAB Central Treasure Hunt Finisher
  • Solver
  • Knowledgeable Level 2
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
Does anyone have the source code for the alexnet add-on?
Hi Matthew, Alexnet is fully accessible programmatically via the ‘alexnet’ function. When you call the function, MATLAB load...

7 mois il y a | 0

Réponse apportée
densenet264 pretrained network loading problem
Hi Asif, The issue you're encountering likely stems from the fact that densenet201 is a built-in pretrained model available ...

7 mois il y a | 0

Réponse apportée
Genuine and Imposter Scores
Hi Christian, To calculate genuine and imposter score distributions, you typically need to extract feature vectors for each ...

7 mois il y a | 0

Réponse apportée
How to remove least significant bits in a pixel.
Hi Niranjan, It is my understanding you want to remove the 3 least significant bits (LSBs) from every pixel in the image. Each ...

7 mois il y a | 0

Réponse apportée
Difference between PSNR and SSIM comparison
Hi Muzammil, It is my understanding that you're trying to clearly understand the differences between PSNR, SSIM, and SNR when c...

7 mois il y a | 1

Réponse apportée
please need help. Can we use learngd() function to train Deep neural network
Hi Shailaja, The function 'learngd()' implements gradient descent as a learning algorithm, primarily used for training shall...

7 mois il y a | 0

Réponse apportée
deepnets for image localisation and counting
Hi Akhil, For image localization and counting, MATLAB offers several pre-trained deep neural networks. Some of which are: Y...

7 mois il y a | 0

Réponse apportée
How to use PCA (Principal component analysis) with SVM for classification in Mathlab?
Hi Huda, When you run “[coeff, score, latent] = pca(X)”, MATLAB performs PCA and returns: coeff: the principal component c...

7 mois il y a | 0

Réponse apportée
How to load two ARFF file in Matlab?
Hi Afef, It is my understanding that you're trying to load two ARFF files ("train.arff" and "test.arff") into MATLAB using t...

7 mois il y a | 0

Réponse apportée
Revert Weight and Set Weight in nntool
Hi Satrio, It is my understanding that you are working with MATLAB’s Neural Network Toolbox and are unsure about the purpose of...

7 mois il y a | 0

Réponse apportée
Explained variance and interactive PCA
Hi Giulia, It is my understanding that you're working with a 129-channel EEG signal in EEGLAB and using ICA with 'interactiv...

7 mois il y a | 0

Réponse apportée
Feature Reduction using PCA
Hi Hend, It is my understanding that you have extracted a large number of features from your data using a Gabor filter bank, ...

7 mois il y a | 0

Réponse apportée
2D wavelet transform of modeshape values of plate structures
Hi Abina, It is my understanding that you have a matrix containing x and y coordinates of a plate structure, along with mode ...

10 mois il y a | 0

Réponse apportée
k medoid with heterogene data( numerik,binar ,nominal)
Hi Peka, It is my understanding that you are trying to apply the k-medoids clustering algorithm to a dataset that contains b...

10 mois il y a | 0

Réponse apportée
Inconsistent forecasts using LSTM deep learning model
Hi Manny, Different predictions from a LSTM model on the same input data across many runs is due to a variety of factors as ...

environ un an il y a | 0

Réponse apportée
Getting this error" Invalid training data. Sequence responses must have the same sequence length as the corresponding predictors."
Hi Sumana, The error message obtained indicates that the sequence length of your predictors('XTrain') and responses('YTrain'...

environ un an il y a | 0

Réponse apportée
what is problem in ResNet50 Code, Error: Check for incorrect argument data type or missing argument in call to function 'activations'. line 30
Hi Muhammad, The error “Check for incorrect argument data type or missing argument in call to function activations” you are ...

environ un an il y a | 0

Réponse apportée
How to increase feed-forward NN training performance?
Hi Osman, When training a neural network using MATLAB's ‘trainbr’ (Bayesian Regularization Backpropagation) function, severa...

environ un an il y a | 0

Réponse apportée
Invalid training data. Predictors must be a numeric array, a datastore, or a table. For networks with sequence input, predictors can also be a cell array of sequences.
Hi Neeta, The error message you are getting indicates training data provided to the ‘trainNetwork’ function is not in the ex...

environ un an il y a | 0

Réponse apportée
How to change size of input layer from 224x224x3 to 224x224x1 in Pretrained GoogLeNet convolutional neural network?
Hi Jahandad, To adapt a pre-trained model like GoogleNet or AlexNet for 2D (224*224*1) images instead of 3D images (224*224*...

environ un an il y a | 0

Réponse apportée
Estimating LASSO regression without intercept
Hi Vincent, To impose the constraint "intercept=0" when estimating LASSO regression in MATLAB, you can specify the 'Intercep...

environ un an il y a | 0

Réponse apportée
bayesian additive regression trees
Hi Mohammadfarid, You can implement BART in MATLAB by following the general algorithm described in the BART literature. To i...

environ un an il y a | 1

Réponse apportée
Default mini-batch size in the Fitrnet function
Hi Karthik, The ‘fitrnet’ function in MATLAB's Statistics and Machine Learning Toolbox is used for training neural network r...

environ un an il y a | 0

Réponse apportée
Hi, I have the acceleration data, how to get plot of ensemble autocorrelation??
Hi Rajkumar, To plot the ensemble autocorrelation of acceleration data in MATLAB, refer the following steps: Load and prepa...

environ un an il y a | 0

Réponse apportée
HelloI want to implement hierarchical clustering using basic code
Hi Ali, To implement hierarchical clustering without using inbuild MATLAB functions, you can perform the following: Prepare...

environ un an il y a | 0

Réponse apportée
How can I use fitnet coefficients of my older neural network in training a new one?
Hi Vahagn, To use the weights and biases from your first trained neural network to initialize a new network with additional ...

environ un an il y a | 0

Réponse apportée
how to find the filter size, kernels, stride and padding for the next convolutional layer in a neural network
Hi Aiman, Designing a neural network architecture like AlexNet involves a mix of empirical experimentation, domain knowledge...

environ un an il y a | 0

Réponse apportée
how to get frequency bands of eeg?
Hi Vaggelis, To extract specific frequency bands like the mu and beta bands from the EEG signals, you can decompose the give...

environ un an il y a | 0

Réponse apportée
about using HYSDEL toolbox
Hi Mohamed, The error obtained suggests that the ‘hysdel3’ function is not able to find the file during the compilation proc...

environ un an il y a | 0

Réponse apportée
Predicting air moisture content at high altitude
Hi Ennes, To model the humidifier for your PEM fuel cell at high altitude, you need to determine the moisture content in the...

environ un an il y a | 0

Charger plus