Theo Lee

In an AI-driven world,

true agency

and the courage to act

still belong to us.

Stay flexible, keep evolving!

Latest

[ML] Everything You Need to Know About Decision Trees: From the Basics to Random Forest, XGBoost, and Stacking
Thursday, Dec 11 2025
[ML] Everything You Need to Know About Decision Trees: From the Basics to Random Forest, XGBoost, and Stacking
1. Decision trees are powerful but rarely used in practice due to their high variance. 2. They are low-bias, high-variance models, and ensemble meth...
Box<T> vs Rc<T> vs Arc<T>
Monday, Dec 1 2025
Box<T> vs Rc<T> vs Arc<T>
The main ideas are the progression of Rust's smart pointers (Box, Rc, Arc) and their design philosophies. Box<T> is native, Rc<T> handles ownership, a...