how to get the time elapsed in matlab deep learning

3 次查看(过去 30 天)
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 !

采纳的回答

Rushi Vyas
Rushi Vyas 2020-6-18
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 个评论
Rushi Vyas
Rushi Vyas 2020-6-18
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

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Parallel and Cloud 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by