Answered
Solver of Neural Network Models in Regression Learner app
The page https://www.mathworks.com/help/stats/choose-regression-model-options.html indicates that Regression Learner uses the fi...

3 years ago | 0

Answered
time series cross validation in svm
In R2022b, the "tspartition" function for time series partition was introduced: https://www.mathworks.com/help/stats/tspartition...

3 years ago | 0

Answered
training error in k-fold method
The Regression Learner app does not show the error metrics on the training data using the final model. The answer at https://www...

3 years ago | 0

Answered
Different Plots with the same dara on two different Versions
In the plot that looks like a line (21a), it looks like the observations in the data have been sorted from lowest to highest val...

3 years ago | 0

Answered
How is the prediction speed, in the regression learner, calculated?
The short answer is that Regression Learner uses the tic and toc commands around the model "predict" method call/s on the valida...

3 years ago | 1

| accepted

Answered
Is k-folds cross-valiation in regressionlearner random or block/leave one out?
You can perform leave-one-out cross-validation in Regression Learner by setting the number of cross-validation folds equal to th...

3 years ago | 0

Answered
How can I test different kernels on my data using Gaussian process regression (GPR) ?
Your data has only seven points, so this is a very small dataset. Here are some results using R2022b RegressionLearner to build ...

3 years ago | 0

Answered
Question on Regression Learner App
To get the RMSE results on validation data, a set of k-fold cross-validation models are needed. In the example provided, 50-fol...

3 years ago | 1

| accepted

Answered
Question on Regression Learner App
To work with a model from the Regression Learner app at the MATLAB commandline, it is recommended to use the "Export model" or "...

3 years ago | 0

Answered
What type of cross validation to use if my data has 5 scans per sample to avoid having same sample in train and test set
In near-infrared spectroscopy, it is common to average the spectra obtained from scans of the same sample. Even if some scans we...

3 years ago | 0

| accepted

Answered
How to find training confusion matrix for model exported from classification learner app?
Given: (1) A model exported from Classification Learner is in the workspace as trainedModel (that is the default name when expo...

3 years ago | 2

Answered
ClassificationLearner Cross Validation without shuffling
You can have Classification Learner train on reps 1 and 2 and test on rep 3 by first separating the data at the commandline. The...

3 years ago | 0

Answered
How to find the accuracy rate of Regression Models in Classification Learner App
The page that you referenced is for the Regression Learner app. If you look at the doc pages for Classification Learner, or use ...

3 years ago | 0

Answered
kFoldLoss output is different from R2018b to R2021b
The differences in kfoldloss are generally caused by differences in the k-fold partition, which results in different k-fold mode...

3 years ago | 0

Answered
Classification Model Accuracy Using Classification Learner
It sounds like the model is overfitting on the training data. Some techniques to avoid overfitting can be seen here: https://www...

3 years ago | 0

Answered
does regression learner bagged tree is random forest or just bagged tree?
The short answer is that the "Bagged Trees" preset in the Regression Learner app does create a random forest of bagged trees usi...

3 years ago | 0

Answered
Question about using regressionLearner app
Since the 95% prediction interval for GPR models is not viewable within the regression learner app, you can move to the matlab c...

3 years ago | 1

Answered
Regression tree and regression equation
You can train a regression model using the regression learner app, then export the model to the workspace to predict new data as...

3 years ago | 0

| accepted

Answered
How to use random forest in MATLAB?
The short answer to your question is yes. That is, the "Bagged Trees" classifier in the classification learner app uses a random...

3 years ago | 0

Answered
How to solve an error using a function generated by Classification Learner
Based on the warning messages, it looks like there are a couple of issues in your dataset. (1) The first warning sounds like y...

3 years ago | 0

Answered
How can the classification learner app can output a single tree after cross validation?
The short answer is that the Classification Learner does not export the k cross-validation models, but rather exports a final mo...

3 years ago | 0

| accepted

Answered
Issue with the output of 'Classificaion learner app'
This is fixed in R2022b.

3 years ago | 0

| accepted

Answered
How would I use Classification algorithms to identify waveforms and assign them a label?
To fully answer your question would require more info about your application and data. From what you wrote, perhaps you have a t...

3 years ago | 0

Answered
How do I make the results of a boosted classification tree reproducible?
The different results are likely coming from randomization in the hyperparameter optimization. https://www.mathworks.com/help/st...

3 years ago | 0

Answered
How can I use the output of a classifier as the input of other classifier?
Using the output of one classifier as the input of another classifier is called stacking. Stacking, bagging, and boosting are al...

3 years ago | 0

| accepted

Answered
MATLAB: Which components are kept in PCA with Classification Learner?
Each PCA component consists of a linear combination of the original features. The PCA components are ordered according to the e...

3 years ago | 1

Answered
Machine Learning using Image Labeler App, Classification Learner App
Here is an example of how to extract image features using a pretrained network, and then build a classifier with those features:...

3 years ago | 0

Answered
Image classification (Image Labeler, Classification Learner App)
Here is an example of how to extract image features using a pretrained network, and then build a classifier with those features....

3 years ago | 0

| accepted

Answered
PDP plots for ensembled tree from matlab classification learner app
Note, starting in R2022b, Partial Dependence line plots are available within the Classification and Regression Learner apps. For...

3 years ago | 0

Answered
Saving Classification Learner Results
In R2022b and higher, Classification Learner and Regression Learner now have a "Results Table" which contains lots of informatio...

3 years ago | 1

| accepted