I am currently working on a deep neural network, but i am confused about how we can compute the training time of a deep neural network. How i will know that my neural network takes less time compared to other deep neural networks.
I am looking forward to your help and any article recommendation.
%%time
, to calculate the time to run the cell.time
library before and after the training portion of the code, you could use the following methodfrom time import time
start = time()
"Your code"
print(time()-start)