Bits and Paradoxes


All about programming, algorithms, technology, philosophy and life.

Let's learn perceptron the noob way - Part 2

The Weights are updated by using the error/deviation in predicted values.

Read More...


Let's learn perceptron the noob way

A perceptron is a decision maker. It outputs certain number which can be interpreted as yes/no or 0/1 or similar range of decision.

Read More...


Decorator in Python

A python decorator is just a wrapper to an existing function to add more functionality to it.

Read More...


On Codes and Cleanliness

Writing no code is better than buggy ones. Minimalism should be the essence of coding. Just Keep It Simple Stupid(KISS).

Read More...


Lookaround in Regex

Lookarounds in regex are awesome non-capturing group. It is used to match pattern but not included in the matching list.

Read More...