-
Neighbor Generator
Just a quick gist that I found very useful class Solution(object): def __init__(self, board, click): #""" :param board: List[List[str]] :param click: List[int] :return: List[List[str]] #"…
-
Semantic Segmentation / Background Subtraction with Deep Learning
Abstract: getting into deep learning sounds big but it is quite simple. In this post, I listed the steps from one of my projects to show you how to train your network. BTW when your segmentation only has two classes, which is either foreground or bac…
-
How To Setup Docker with Detectron
Abstract: Being talked around docker with machine learning, I finally get the chance to learn and set it up. This post is about what is docker and how to use it. Docker Logic Docker in short words has two confusing items: image and container. An Imag…
-
How to Fix Windows and Linux Showing Different Times When Dual Booting
Your computer stores the time in a hardware clock on its motherboard. The clock keeps track of time, even when the computer is off. By default, Windows assumes the time is stored in local time, while Linux assumes the time is stored in UTC time and a…
-
My Bashrc
It is very helpful to keep your bashrc consistant. # for tilix terminal # Use this commented line to create the link and first. # sudo ln -s /etc/profile.d/vte-2.91.sh /etc/profile.d/vte.sh if [ $TILIX_ID ] || [ $VTE_VERSION ]; then source /e…