how to get the time elapsed in matlab deep learning
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Lee Willy
el 17 de Jun. de 2020
Comentada: Lee Willy
el 1 de Jul. de 2020
I had saw my training modal's "info" .
But it didn't have any information about training time information.
how can I get the time elapsed ?
Thanks !
0 comentarios
Respuesta aceptada
Rushi Vyas
el 18 de Jun. de 2020
Hi Lee,
It is my understanding that you want get the elapsed time for training your deep learning model.
When you train your model using trainNetwork(), a “Training Progress” window will appear that has all the necessary information.
You can find the “elapsed time” data under “Training Time” heading
3 comentarios
Rushi Vyas
el 18 de Jun. de 2020
I understand that you want to save the elapsed time In a variable.
You can use stopwatch commands tic and toc to save the elapsed time of any function/code. For example,
>> tic;
trainNetwork(imdsTrain,layers,options);
elapsed = toc;
>> elapsed
elapsed =
81.4179
You can refer this link for more information : https://in.mathworks.com/help/matlab/ref/toc.html#:~:text=MATLAB%C2%AE%20reads%20the%20internal,tic%20function%20corresponding%20to%20timerVal%20.
Más respuestas (0)
Ver también
Categorías
Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!