Platform to train machine learning

During this course, we write code on Jupyter notebook to train machine learning algorithms.
In the real practice, which platforms are people using to train machine learning algorithms?

People could write their code from scratch like here, or use available parts of code from other projects, or use ML services offered from many IT companies including aws, google, ibm, azure…

1 Like

It depends on the project. Usually, I start with a regular jupyter notebook, most of the time on the cloud like Google colab or even kaggle, there are other platform that offers notebooks like Google cloud (usually we use this to have better computer power), once I have a better understanding on what do I need I conver that notebook into a python script and use MLops tools like W&B to track the performance of different models.

I hope this helps!

1 Like

Thanks!

Thanks! It helps!