Category: Technical Notes

Topological Sort

While reviewing some basic concept, I come across an interesting problem which is called topological sorting. Basically the problem is to find an ordering where the dependency requirements are respected. One concrete example of this problem is how to determine the build order of projects given a set of...

Running PyTorch in Docker Container

Hi, does it that frustrate you that it is very complicated to setup your environment when you want to try out a new framework. Luckily, there is a solution for that by using docker container. In this post we will try out how to train neural network using PyTorch...