train.py takes too long when i run locally on jupyter lab (45-46sec per epoch) but faster on colab(3-4sec per epoch) #879
-
Beta Was this translation helpful? Give feedback.
Answered by
LuluW8071
Mar 27, 2024
Replies: 1 comment 1 reply
-
Could be due to many reasons:
Maybe in your case one solution would be increase |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
SuryanshuBasa
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Could be due to many reasons:
Maybe in your case one solution would be increase
num_workers
in your dataloader script to half of your cpu threads and run the train script again. Also remember to check task manager to see other applications resource consumption. Maybe that is slowing down your training progress.