Data format in neural network
Mostrar comentarios más antiguos
Hi all, Kindly i really appreciate your help , i have a plan to make skin color segmentation by using neural network , i just have a problem how to format my database ,input vectors it's gona be YCbCr color space and the target 1,0 skin,non skin
Thanks
Respuesta aceptada
Más respuestas (1)
Yasir
el 18 de Oct. de 2013
0 votos
4 comentarios
Greg Heath
el 19 de Oct. de 2013
PLEASE USE THE COMMENT BOX, NOT THE ANSWER BOX FOR FOLLOW UP QUESTIONS AND COMMENTS.
NOT ONLY IS IT CONFUSING, IT MESSES UP MATLABS QUESTION/ANSWER/COMMENT BEAN COUNTING.
THANKS.
GREG
Greg Heath
el 19 de Oct. de 2013
I don't understand your confusion. If an I dimensional input column vector corresponds to an O dimensional target output column vector, the dimensions of the input and output target matrices are
[ I N ] = size(input)
[ O N ] = size(target)
[ X, T ] = wine_dataset;
[ I N ] = size(X)
[ O N ] = size(T)
whos X T
I = 13
N = 178
O = 3
N = 178
Name Size Bytes Class Attributes
T 3x178 4272 double
X 13x178 18512 double
Hope this helps.
Greg
Yasir
el 19 de Oct. de 2013
Image Analyst
el 29 de Oct. de 2013
I marked Greg's answer as accepted for you because you forgot to.
Categorías
Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!