How to best present multi-parameter, multi-read, multi-sample data for neural net learning?
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I understand how to input multiple parameters of data for each sample in a NN (as in the example datasets). However in flow cytometry each sample consists of multiparameter data from thousands of cells (that all belong to the one sample) and it is the distribution of data from each sample that is important that I want to enter as a numeric array of data.
I have only been successful in entering data in a similar way as the example data sets but have not had not much luck entering the data I want to.
I.e. my eg dataset looks like this
Sample 1 = 4000 data reads of 18 parameters with outcome 1 Sample 2 = 5390 data reads of 18 parameters with outcome 1 Sample 3 = 8999 data reads of 18 parameters with outcome 0 etc etc etc...
What is the best way to present this data to a NN, remembering that the distribution of the data reads per sample is important (so I don't want to just join all the data reads together (omitting sample distribution)?
0 commentaires
Réponses (2)
Greg Heath
le 24 Mar 2018
Both target and inputs should be as mixed as possible. Something close to
S1,S3,S2,S3,S1,S3,S2,S3,...
should work well.
Hope this helps.
Thank you for formally accepting my answer
Greg
0 commentaires
Voir également
Catégories
En savoir plus sur Deep Learning Toolbox 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!