CVpartition inside CVpartition to decrease dataset siz
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Tomasz Kaczmarski
le 27 Oct 2020
Réponse apportée : Aditya Patil
le 17 Nov 2020
Hi
My training time is very slow to improve it i got idea to make cv partition inside cv partition
but im not sure how to do it. my code is belows
X = importdata('TrainSet_UCL.csv')
Y = importdata('TargetSet_UCL.csv')
cv = cvpartition(Y,'Holdout',0.3);
Xtrain = X(training(cv),:);
Ytrain = Y(training(cv));
Xtest = X(test(cv),:);
Ytest = Y(test(cv));
0 commentaires
Réponse acceptée
Aditya Patil
le 17 Nov 2020
Instead of partitioning dataset again, you can increase the holdout size. Alternately, consider using simpler models or smaller networks.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Model Building and Assessment dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!