Running an application in the local machine only exposes it to yourself. The benefit of using web platforms to run the application is the easiness of publishing it to the world. Typically, we buy the web server ourselves and maintain it so that it can host the web page by running an HTTP server. However, this takes a long time and we have to do an array of things to complete the setup.
There is a better way to publish a website quickly. GitHub Pages is a service that hosts static pages stored in the GitHub repository. This service is used for publishing the websites, portfolios, blogs, and so on. The simplicity and capability of this service is attracting many developers. Just editing and pushing the code will make these changes public.
In this section, we will publish the machine learning application we have created so far.
GitHub Pages...