Ben Chuanlong Du's Blog

It is never too late to learn.

Visualization for AI Concepts

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Tools for (approximately) visualizing the architures of existing neural networks or for visualizing the traing process (training/validation loss/accuracy, activation, etc.) are extremely helpful! TensorBoard is one of the best …

Understand the Design of Python

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Design

  1. There is no constant variables in Python. If you need a constant variable in Python, just define one and never change it. It is suggested that you use UPPER_WITH_UNDERSCORE naming …