Microkernel Architecture for Machine Learning Library

By Medium - 2021-02-11

Description

The Microkernel Architecture is sometimes referred as Plug-in Architecture. It consists of a Core System and Plug-in components. Th Core System contains the minimal functionality required to make the…

Summary

  • An Example of Microkernel Architecture with Python Metaclass What is Microkernel Architecture Th Core System contains the minimal functionality required to make the system operational.
  • And they are best addressed by other engineers.
  • It defines how a class behaves and how the instances of that class are instantiated.
  • Conclusion In this article, I have introduced what Microkernel Architecture is and I have also created an PyPi package mkml to demonstrate how such architecture could bring benefits to the ML Library designs.

 

Topics

  1. Backend (0.28)
  2. Database (0.17)
  3. Machine_Learning (0.15)

Similar Articles

pytorch-widedeep: deep learning for tabular data

By Medium - 2021-02-22

This is the third of a series of posts introducing pytorch-widedeepa flexible package to combine tabular data with text and images (that could also be used for “standard” tabular data alone). The…

30 Most Asked Machine Learning Questions Answered

By Medium - 2021-03-18

Machine Learning is the path to a better and advanced future. A Machine Learning Developer is the most demanding job in 2021 and it is going to increase by 20–30% in the upcoming 3–5 years. Machine…

How to put machine learning models into production

By Stack Overflow Blog - 2020-10-12

The goal of building a machine learning model is to solve a problem, and a machine learning model can only do so when it is in production and actively in use by consumers. As such, model deployment is ...