Neural network - target dataset
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
vidhya v
am 7 Mär. 2020
Kommentiert: vidhya v
am 10 Mär. 2020
I am doing project on sleep apnes (face recognition). I have to use artificial neural network for training and testing the dataset. For target dataset the values must be in 0s and 1s. how can i change my own target dataset into 0 and 1. Is there any code or something else from which i can get my correct target dataset to be trained. Pls help me with it.
I have attached my train and test data.
Thank you in advance
0 Kommentare
Akzeptierte Antwort
michael scheinfeild
am 7 Mär. 2020
Bearbeitet: michael scheinfeild
am 7 Mär. 2020
i suppose first you can normilize the train set and use it to normalize test set
meant=mean(train)
mint=min(train)
maxt=max(train)
data=(data-mint)/(mint-maxt)
this for features , same for outputs, i think you need regression network
https://www.researchgate.net/post/how_to_normalize_data_using_matlab_How_do_you_now_use_the_normalized_data_set_to_forecast_using_ann_on_matlab
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!