how to get the time elapsed in matlab deep learning

5 Ansichten (letzte 30 Tage)
Lee Willy
Lee Willy am 17 Jun. 2020
Kommentiert: Lee Willy am 1 Jul. 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 !

Akzeptierte Antwort

Rushi Vyas
Rushi Vyas am 18 Jun. 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 Kommentare
Rushi Vyas
Rushi Vyas am 18 Jun. 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
Lee Willy
Lee Willy am 1 Jul. 2020
I got it. Thank a lots.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Introduction to Installation and Licensing 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!

Translated by