Colaboratory
Colaboratory is a free and open source environment for Python development that requires no setup and runs entirely on the cloud. It contains all the pre-installed packages required for your AI implementations so that they are ready to run with a simple plug and play process. By plug, I just mean to copy and paste the code inside a new Colab file (I'll explain how to open one next), and by play, I just mean to click on the play button (an example of that follows).
Here is the link to the main page of Colaboratory:
https://colab.research.google.com/notebooks/welcome.ipynb
You should get a page like this:
Figure 2: Colaboratory – main page
Click File in the upper left, and then click New Python 3 notebook:
Figure 3: Colaboratory – opening a notebook
Then you will get this view. Paste your Python code inside the cell (red arrow). That's the "plug" part:
Figure 4: Colaboratory – the...