
Bare minimum End-to-End ML application with Flask REST API Prediction Service
ML-End-to-End is an End-to-End bare minimum boilerplate Machine Learning application. It performs various steps including loading a toy dataset, dummy preprocess step through a data wrangler middleware, training a model, and saving it to disk. The prediction service uses the data wrangler middleware to preprocess and predict the requests received through a Flask REST API layer.
ML-End-to-End is a bare minimum boilerplate Machine Learning application that provides an end-to-end solution for training and deploying models. It includes features such as a data wrangler middleware for preprocessing the data, model training, and a Flask REST API for receiving prediction requests. By following the installation guide, users can easily set up and use this application for their Machine Learning projects.

Flask is a lightweight and popular web framework for Python, known for its simplicity and flexibility. It is widely used to build web applications, providing a minimalistic approach to web development with features like routing, templates, and support for extensions.