Community Profile

photo

Aditya Patil

MathWorks

Last seen: ongeveer 2 jaar ago Active since 2020

I am an Engineer with Engineering Development Group at Mathworks.

My area of interest includes Deep Learning and Machine Learning.

DISCLAIMER: Any advice or opinion here are my own and in no way reflect that of MathWorks.

Statistics

  • 6 Month Streak
  • Knowledgeable Level 4
  • Revival Level 3
  • First Answer

View badges

Content Feed

View by

Answered
Cluster Standard Errors with fitlm
Currently, clustered standard errors is not supported in Statistics and Machine Learning Toolbox. I have brought the request to ...

meer dan 2 jaar ago | 1

Answered
Finding pixel distances from sets of lines making up a curve?
As per my understanding, you have a set of points (let us say P) and each of them has a corresponding set of line segments (say ...

meer dan 2 jaar ago | 0

Answered
How to get DBSCAN to assign the items to the clusters found
As per my understanding, you have some data that you use for clustering, and some other corresponding data that you want to mat...

meer dan 2 jaar ago | 0

| accepted

Answered
Time Series Classification with a convolutional neural network ?
As the data is temporal, you can use one of the sequence classification models. For example, you can use LSTMs (Long Short-Term ...

meer dan 2 jaar ago | 0

| accepted

Answered
Why Matlab SVR is not working for exponential data and works well with data that fluctuates?
SVR uses a linear kernel by default, which might not be appropriate for exponential data. You might want to try the gaussian ker...

meer dan 2 jaar ago | 0

Answered
What parameters are optimized by default when the crossval-on name-value pair option is used in the fitrensemble function?
Cross validation splits the data into K partitions. Then it trains the models on the K permutations of (K - 1) sets and validate...

meer dan 2 jaar ago | 0

Answered
what is the role of streaming multiprocessor(multiprocessorcount in gpuDevice()) on GPU coder?
Streaming Multiprocessors (SMs) is a concept from Nvidia GPUs, where each SM processes threads in parallel. More the number of S...

meer dan 2 jaar ago | 0

Answered
How to extract best features using MRMR function?
As per my understanding, you are looking to get the feature importance using the minimum redundancy maximum relevance algorithm....

meer dan 2 jaar ago | 0

Answered
How can I reduce the size of machine learning model from classification learner app, to be used by my code?
The size of the model depends on the number of parameters required to define it. Due to their nature, ensembles in general, and ...

meer dan 2 jaar ago | 0

Answered
How to run Classification Learner App on multiple data sets?
Currently, classification learner app doesn't provide feature to use multiple datasets. One workaround is to export code for on...

bijna 3 jaar ago | 0

| accepted

Answered
solving symbolic inverse of big matrix takes long
In this case, using inverse is much faster than mldivide. N = 15; syms s A1=rand(N); A2=rand(N); B1=rand(N,1); B2=rand(N,1...

bijna 3 jaar ago | 0

Answered
Adding license agreement to compiled MATLAB program
Aside from including a text license agreement with the application process by including the file in the "Files installed for you...

bijna 3 jaar ago | 0

| accepted

Answered
How to run the function again after a error?
I would recommend separating the logic of the function and the code to take inputs from the user. Two of the possible ways to do...

bijna 3 jaar ago | 0

| accepted

Answered
Git on Matlab online
Currently git integration / source control integration is not supported in MATLAB Online. I have brought this request to the not...

bijna 3 jaar ago | 5

Answered
How can i use Hyperbolic tangent activation function in Neural Network
You can create a custom function, and assign it to transerFcn property. The details are mentioned in the Custom Neural Network H...

bijna 3 jaar ago | 0

| accepted

Answered
What is the best way to share matlab code online to general public?
MATLAB doesn't provide a way for users to run MATLAB code without having the license. However, you can use MATLAB Compiler run...

bijna 3 jaar ago | 0

Answered
Optimally search for which positions a rectangle is within a polygon, faster way than using shapeID of union?
As the outershape is not convex, there is no quick way to surely say that the rectangle is inside the polygon. One alternative ...

bijna 3 jaar ago | 1

Answered
What is the Horizontal axis represent in R value figure in the ANN fitting?
The plot shown is created using plotregression function. It shows relation between the targets on the y axis, and the predicted ...

bijna 3 jaar ago | 0

| accepted

Answered
Solving second-order non-linear PDE
As per my understanding, the core issue here is with the variable k which needs to be saturated. In other words, k = min(0, max...

bijna 3 jaar ago | 0

Answered
Why is dual boot installation not working?
For any installation related help, contact MathWorks support via the contact us page.

bijna 3 jaar ago | 0

| accepted

Answered
Increasing the number of iterations in GeneralizedLinearModel.fit
As per my understanding, you want to get the p values from the fitted model. You can use fitglm for this purpose. You can increa...

bijna 3 jaar ago | 0

Answered
Simulink does not work (Ubuntu 20.04)
This might happen due to installation issues. It looks like some files are missing. Reinstall MATLAB, and disable antivirus soft...

bijna 3 jaar ago | 0

Answered
Help with a vectorizing: rearranging a matrix
Assuming F itself can be vectorized, first calculate all required values of F. len = 5; F = randi(len, [len, len]); % Replace ...

bijna 3 jaar ago | 0

Answered
Have a Problem using CONV2
The plot function requires both arguments to be of same size. While the solution depends on the nature of the data, the most li...

bijna 3 jaar ago | 0

Answered
Unrecognized function or variable 'fitrnet'.
fitrnet was introduced in R2021a. Ensure you have the correct release installed, and that you have the statistics and machine le...

bijna 3 jaar ago | 0

Answered
Calculating principal component scores from principal component coefficients of the new data
To get the scores for new data, you need to first get the outputs mu and coeff. X = rand(100, 5); XTrain = X(1:75, :) XTest =...

bijna 3 jaar ago | 0

| accepted

Answered
speeding up trainbr using more cpu cores or a gpu
Bayesian regularization requires calculating the Jacobian. Jacobian calculation is not supported on GPU. Hence trainbr doesn't s...

bijna 3 jaar ago | 1

Answered
Low accuracy of CNN
You can use all the data by passing some data at a time, also called as a MiniBatch. See the MiniBatchSize option in traningopti...

bijna 3 jaar ago | 0

Answered
Function 'fmincon' not supported for code generation
fmincon codegen support was added in R2019b. Also, optimOptions is the last argument for fmincon, you should pass other argument...

bijna 3 jaar ago | 1

| accepted

Answered
Some CNN architecture are working, other are not
As some of the models are working, but others are not, the issue is likely with the training options used while transfer learnin...

bijna 3 jaar ago | 1

| accepted

Load more