Monitoring resource utilization on Linux

This is a quick reference guide for tools to monitor resource utilization on Linux. Top A simple CLI utility to display CPU/memory on Linux. Use SHIFT+P to sort by CPU, SHIFT+M to sort by memory. Htop Htop is a cleaner more graphical version of top with slightly different information. Install with “apt-get install htop” or … Read more

The road to Reinforcement Learning

So you’re an absolute beginner who wants to learn about Reinforcement Learning. Let’s start with what reinforcement learning, or RL, is. RL is a process where an agent interacts with an environment and gets rewards. The agent then uses those rewards to slowly get better at the task that’s being rewarded. It’s a simple concept, … Read more