Posts by Year

2020

Idiosyncrasies of AsyncIO

5 minute read

We take a look at the idiosyncrasies and inherent nature of asyncio library in Python. asyncio is a library to write coroutines which run asynchronously on a...

Back to top ↑

2019

Guide to Kubernetes

less than 1 minute read

I highly recommend the Golden Guide To Kubernetes Application Development book by Matthew Palmer for beginners to master Kubernetes. The book guides us step ...

Back to top ↑

2018

Golang

less than 1 minute read

Below, I have listed several helpful notes for installing and using Golang.

Quotes

less than 1 minute read

“There is no such thing as free lunch” - Milton Friedman [Famed Economist]

Merging two sorted lists in Scala

less than 1 minute read

This post elucidates the power of programming in Scala. We describe how to merge two sorted lists into a third sorted list in Scala. Although there are built...

Thoughts on machine learning

1 minute read

A diverse array of algorithms has been developed such as matrix factorization (e.g., for recommender systems), latent Dirichlet allocation (e.g., for topic m...

How objects are called in Keras

less than 1 minute read

This post elucidates how layers (for instance class MyLayer(Layer)) are called in Keras when we perform operations such as x_output = MyLayer( .... , ...)(x_...

Back to top ↑

2017

Online courses in machine learning

1 minute read

Machine learning predominantly uses Python as the programming language. For python programming, the free Anaconda distribution is suggested, which is availa...

Back to top ↑