回答済み
How can I use random forest classifier with an excel file?
Something like this: data = xlsread('filename'); mdl = fitcensemble(data,'class');

5年以上 前 | 0

回答済み
How Can I Configure "the Trial License" for Cloud Use?
You can't cloud-enable a trial "license". You need to request a cloud-enabled trial, which is just become available at <https://...

5年以上 前 | 0

回答済み
Feature Selection PCA in Haar for face recognition
Well, you could try whether PCA finds a linear mapping among the 16 Haar wavelets that expresses most of the variability in your...

5年以上 前 | 0

回答済み
How to utilize GPU while the classifiers were running on the classification learner application?
<https://www.mathworks.com/help/stats/statistics-and-machine-learning-toolbox-functions-with-gpuarray-arguments.html This page> ...

5年以上 前 | 1

| 採用済み

回答済み
How to use a KNN classifier from Matlab in c++
Little late, but with MATLAB Coder you can convert a prediction function for KNN to C/C++ code, and then use that with your othe...

5年以上 前 | 0

回答済み
Is there any way to port the predict process of a machine learning model to C/C++ codes
Little late, but since 2017, with MATLAB Coder you can generate C/C++ code for your machine learning prediction function.

5年以上 前 | 0

回答済み
Can I plot/apply more than two predictors using classification learner app?
It's for plotting only, a simple 2-dimensional scatter plot is available in the Classification Learner. You can train classifier...

5年以上 前 | 0

回答済み
Clustering with big data
Maybe you are using the LINKAGE function incorrectly. You already has the pairwise distances, but for some reason the LINKAGE fu...

5年以上 前 | 0

| 採用済み

回答済み
Finding Pattern in the data set
You are asking a very basic question, like "tell me how to apply data analytics", which is why the comment pointed you to the mo...

6年弱 前 | 0

回答済み
Machine learning: Ensemble trees in a time series classification problem.
How are you encoding the time dependency in your predictors? If you add predictors that look back fixed number of elements in yo...

6年弱 前 | 0

回答済み
not getting same accuracy as classifier app
The model trained inside the Learner app doesn't exactly match the exported model because the latter will be trained on the comp...

6年弱 前 | 1

回答済み
Is there a way to parallelize the function hygepdf?
I am not an expert for the Parallel Computing toolbox, but if the calculation inside the for loop body is fairly simple (as it l...

6年弱 前 | 0

回答済み
Classification Learner App - generate a more generic function for your model training that could take varying size of prediction tables? One step beyond the default function generation
But if your table has fewer columns (predictors) typically you need to retrain the model, or at least have performance deteriora...

6年弱 前 | 0

質問


Problems trying to set iOS and get Human Activity Recognition example deployed on iPhone
I'm following the Human Activity Recognition Simulink example in doc in a MacBook. I successfully installed the Simulink support...

6年弱 前 | 0 件の回答 | 1

0

回答

回答済み
How can I classify columns of a table
You could try to train a classifier by considering each data point of your table an example for the corresponding column's name ...

6年弱 前 | 0

回答済み
How to provide parameters in fitrensemble
The parameters 'MinLeafSize', and 'MaxNumSplits' are available for optimization, see <https://www.mathworks.com/help/stats/fitre...

6年弱 前 | 0

回答済み
Is the function TreeBagger(NumTrees,Tbl,ResponseVarName) with NumTrees = 300 considered as random forest ?
TreeBagger grows a forest of trees, but that's a random forest not just with 300 of them.

6年弱 前 | 0

| 採用済み

回答済み
How to use classification learner for real time data (from serial port) for classification?
You can find an example how to read data from a serial device <https://www.mathworks.com/help/supportpkg/raspberrypiio/ref/raspi...

6年弱 前 | 0

回答済み
How to prioritize the cluster on the basis of number of data points in each cluster?
If X was your data, you could get the histogram with h = histogram(X); and then compare the centroids of your clusters ...

6年弱 前 | 1

| 採用済み

回答済み
How can I mark several features in an image with 'insertMarker' and save the image at full resolution?
That looks like you are on the right track, and should work if pos corresponds to a vector of (x y) positions for the markers. W...

6年弱 前 | 0

| 採用済み

回答済み
help in in writing fuzzy fp growth algorithm in matlab
Maybe this File Exchange submission helps you get started: <https://www.mathworks.com/matlabcentral/fileexchange/52868-fp-growth...

6年弱 前 | 0

| 採用済み

回答済み
CNN - training, cross-validating and testing procedure -procedure and issues
Yes, leaving-on-out is typically used to approximate performance on an unseen test set, but if you use it to optimize hyperparam...

6年弱 前 | 0

| 採用済み

回答済み
I have been stuck on the followng quesiton,please help.
It's not our role to help solve course problems here, but maybe copularnd and corr will let you do what you need.

6年弱 前 | 0

回答済み
Time Series Classification Advice
For deep learning with time series, practitioners are using LSTM. Here's an example in our documentation that shows you how to a...

6年弱 前 | 0

回答済み
Decision tree on binary data?
To apply machine learning to any binary classification problem, you need examples for both the class you are looking for (true d...

6年弱 前 | 0

| 採用済み

回答済み
Classification learner APP, why is there no leave one out option?
Leaving one out is not supported in the Learner app because it may have significant runtime, but it is supported in the programm...

6年弱 前 | 1

| 採用済み

回答済み
Lasso/Elastic Net feature selection with kFold crossvalidation
Crossvalidation just applies to assessing model performance. As described <https://www.mathworks.com/discovery/cross-validation....

6年弱 前 | 0

回答済み
Preparation of the data for N-Way ANOVA
Per documentation, you provide anovan a set of measurements and multiple assignments to different groups. I'm not sure you actua...

6年弱 前 | 0

回答済み
How to manage big data with Classification Learner
"Tall arrays" are currently not supported from within the Learner apps. If your data doesn't fit into memory, you have to use th...

6年弱 前 | 1

| 採用済み

さらに読み込む