photo

Ayush Aniket


Last seen: 6 days ago Active since 2017

Followers: 1   Following: 0

Programming Languages:
MATLAB

Statistics

All
MATLAB Answers

0 Questions
157 Answers

Cody

0 Problems
1 Solution

RANK
545
of 298,974

REPUTATION
144

CONTRIBUTIONS
0 Questions
157 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
8

RANK
 of 20,664

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
128,154
of 162,957

CONTRIBUTIONS
0 Problems
1 Solution

SCORE
20

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • 6 Month Streak
  • Knowledgeable Level 4
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
How to design a single layer perceptron with MATLAB built-in functions/nets/Apps?
You can design a single-layer perceptron in MATLAB using built-in functions from the Deep Learning Toolbox. MATLAB provides func...

6 days ago | 0

Answered
How can I use gensim neural network generated block for online training the network in simulink?
There are three ways in which you can train a neural network online in Simulink for system identification using the NARX model: ...

6 days ago | 0

Answered
compare model result using neural network
One way to do this would be by using a Generalized Regression Neural Network (GRNN). GRNN is particularly useful for function ap...

7 days ago | 0

Answered
how to simulate custom reinforcement learning agent?
You can extract the action sequence from your trained DDPG agent and use it in your custom environment (step.m) for simulation. ...

7 days ago | 0

Answered
Machine Learning: Use cross-validation between time series
You can use grouped cross-validation using the cvpartition function, which ensures that all data points from a single measuremen...

8 days ago | 0

Answered
How to find the final formula or equation that is produced by regression learner.
You can extract the equation from your trained model by accessing its coefficients and predictor names. Since trainedModel.predi...

8 days ago | 0

Answered
How to create a hierarchical neural network (merge multiple neural networks together)?
You can create a hierarchical neural network in MATLAB by using addLayers and connectLayers functions. Since MATLAB's network ob...

8 days ago | 0

Answered
neural network equivalent for 'Prior' argument in fitensemble
Neural networks don't have a direct equivalent to the 'Prior' argument, but you can achieve similar effects using class weightin...

9 days ago | 0

Answered
Building random forest with cross-validation
The models used in cross validation (5, as you mentioned) are not directly combined into a single final model. The goal of cros...

9 days ago | 0

Answered
Which point is in which leaf in decision trees
You can achieve this by using the predict function and the node property of the tree. Refer the steps below and the code snippet...

10 days ago | 0

Answered
Decision tree - Tree Depth
For controlling tree depth in fitctree, you can set MaxDepth to directly specify the maximum tree depth, or indirectly - Set M...

10 days ago | 0

Answered
How is root node value chosen in regression decision tree?
The split value at the root node in a decision tree is chosen based on optimization criteria, not necessarily the median or mean...

15 days ago | 0

Answered
Decision tree and pruning optimization with imbalanced data
Since your dataset is imbalanced, the tree is biased toward the majority class. Even though you tried oversampling, decision tre...

15 days ago | 0

Answered
Using Euclidean Distance in Resizable Filter Window for Noise Reduction
To replace the central pixel with the closest pixel based on Euclidean distance, you can find the pixel with the minimum distanc...

16 days ago | 0

| accepted

Answered
Connecting Artificial Neural Network (ANN) Model to Extended Kalman Filter
One of the ways you can integrate an ANN model with an Extended or Unscented Kalman Filter (UKF) in Simulink is by careful formu...

16 days ago | 0

Answered
Generating artificial anomalies of a specific dataset
Both of the methods are logically correct to generate anomaly data. Let's analyze them individually: Using randn : The formul...

16 days ago | 0

Answered
Hi, How can i perform sensitivity analysis using my trained neural network model?
There are three ways you can perform sensitvity analysis on the trained neural network: 1. For each input factor, you slightly ...

17 days ago | 0

Answered
I am unable to train a good performing model using NNTOOL
From the MSE graph image shared by you, it seems that the neural netowork is overfitting your training data. Since the whole pro...

17 days ago | 0

Answered
I'm using a 'convolution2dLayer' in my program but I'm unable to get that what it is doing after applying it to an image?
The convolution2dLayer in MATLAB creates a layer that applies 2D convolution to an input image. When you train your network, the...

1 month ago | 0

Answered
How to change architecture of conditional GAN to generate 224x224x3 images?
If you use a projection size that doesn't align with the upsampling path, the generator output won't match the expected image si...

1 month ago | 0

Answered
How can I get Same Results form multiple networks with same network architecture, network options and training and validation data ?
Even if you set Shuffle, never in trainingOptions, the results can vary between runs unless you control all sources of randomnes...

1 month ago | 0

Answered
Clustering data and then classifying a new set of data
After performing k-means clustering, you can use the resulting cluster centroids to classify new data points by assigning each n...

1 month ago | 1

Answered
Help with Probability density functions?
Yes, what you are describing is a Monte Carlo simulation where you randomly sample from specified distributions to generate scen...

1 month ago | 0

Answered
Can we use the output of a regression ML algorithm as an input for another ML algorithm?
The drop in performance when using predicted values from the first regression decision tree as inputs to the second model is a c...

1 month ago | 0

Answered
How to color each cluster of Expectation maximization EM for my data which is (5000,2). I chose the number of cluster is 15
For plotting each cluster with a unique color, you should plot them individually using scatter function in a loop. Refer the exa...

1 month ago | 0

Answered
how to recall matrix in nntool
If the requirement is to import your 120x2 dimension matrix, you can easily do so using the Import button on the left upper corn...

1 month ago | 0

Answered
Exploration in Deep Reinforcement Learning
In the provided example explicit exploration techniques are not directly implemented. However, exploration is inherently handled...

1 month ago | 0

Answered
How to import input into the custom forwardLoss and backwardLoss function?
In addition to @BartGoris's approach, another way to achieve this is to write your own training loop using dlnetwork and dlfeval...

1 month ago | 0

Answered
How to using the Neural net fitting in MATLAB to acquire the empirical parameters?
As far as I understand, you have an empirical model y = f(x, t; a, b, c, d, e, f) with known coefficients (a–f) recommended by p...

1 month ago | 0

Answered
How is multiclass classification and finding accuracy using ANN from the exracted features by LBP done?
A simple way to do this would be as follows: Load Features and Labels - % Load features data = importdata('features....

2 months ago | 0

Load more