Machine Learning Notes

Machine Learning review notes ...

October 12, 2022 · Mark Tang

C/C++: printing stacktrace containing file name, function name, and line numbers using libbacktrace

I needed a library for printing stack traces when developing tan. More specifically, the compiler and the runtime had to print the function names, source file names, and the line numbers when an assertion failed or an error was raised. ...

July 27, 2021 · Mark Tang

Understanding the Math Behind CTC

In this post, I’m writing down my thought process of understanding the math behind Connectionist Temporal Classification (CTC) {% cite graves_ctc_2006 %}{% cite graves_ctc_2012 %}. ...

June 18, 2021 · Mark Tang