Home > Blockchain >  why is training a model taking so long?
why is training a model taking so long?

Time:11-12

I am an absolute beginner in tensorflow. I am trying to run the program colab-button
If you click it colab opens and you could then create a copy of the example in your own google drive and play around with it in colab.
This video might be a good starting point on using colab.

CodePudding user response:

The difference in speed has nothing to do with the IDE. There can be several reasons for this:

  1. You must be running with different versions of Tensorflow. In some older versions of tensorflow versions you need to mention the GPU otherwise it uses CPU to train your model.

  2. Maybe PyCharm and IDLE are running on different versions of Python

  • Related