Code




Getting a Handle on Vector for Machine Learning
Code

Getting a Handle on Vector for Machine Learning

The word vector comes from the Latin for “carrier”, reason might be the nature of vector to move from one location to another. In physics, a Vector is an object that...

Mimicking Biological Neural Network | Artificial Neurons and Biological Neurons | Perceptron | Multi-Layer Perceptron | Backpropagation
Code

Mimicking Biological Neural Network | Artificial Neurons and Biological Neurons | Perceptron | Multi-Layer Perceptron | Backpropagation

Although a present day artificial neural network resembles the biological neural network/human brain much as a paper plane resembles a supersonic jet, although, ANN...

Activation functions in a deep neural networks
Code

Activation functions in a deep neural networks

This activation function prevents collapsing because it adds a extra bit of processing before transfering the output of a neuron. Let's say we have an...

Building a Currency Converter using OpenExchangeRates API and requests
Code

Building a Currency Converter using OpenExchangeRates API and requests

Converting Currency in google is no fun and no brainer. Explore the power of programming by building our own Currency Converter.

How often should we commit? Is git commit quantification of quality?
Code

How often should we commit? Is git commit quantification of quality?

The best answer to question "How often should you commit?" would be "More often than you are doing now". Commit every change that you don't think breaks something,...

How to sort a dictionary in python: Sort a dictionary by key, value, key and value and reverse.
Code

How to sort a dictionary in python: Sort a dictionary by key, value, key and value and reverse.

The dictionary is a fundamental data structure of a python ecosystem. It is written as a series of key:value pairs, separated by commas, enclosed in curly braces.

How to create a dict in python?
Code

How to create a dict in python?

How to create an empty dictionary in python?

Simple time-of-day TCP Client-Server model example using sockets in C
Code

Simple time-of-day TCP Client-Server model example using sockets in C

In a client-server model, a server is an application program that offers a service over a network. The server's code runs first, which opens a port and accepts an...