Creating & Visualizing Neural Network

Have you ever wondered what goes on inside a machine that can learn? In this blog, we'll be diving into the world of neural networks by building a simple one ourselves! Using the powerful Keras API, we'll step-by-step craft a very simple neural network and visualize it with the Netron visualizer tool.

Introduction to Machine Learning

Machine learning is an integral part of developing a better future. In due course of time, Machine learning along with AI will change the course of development. It holds the potential to transform the way we carry out our daily tasks.

Loss Functions in Machine Learning

Machine learns by loss function. The Loss function is a method of assessing how accurately algorithm models the given data. Optimization problem use loss functions for minimizing errors. One of the most widely used losses functions is Mean Square Error (MSE) and Minimum Absolute Error (MAE). In this article, we’ll see these two loss functions in detail.