Erfan E. Fakhabi

Things I Learned

A running log of technical lessons I pick up day by day.

Quantized Arithmetic

I learned that in quantized models, the integer operations are not truly in low-bit arithmetic — the accumulations happen in higher precision (usually int32). The scale and zero-point conversions make the math approximate, but safe. It’s a subtle design that preserves speed without fully abandoning numerical stability.

2025-10-05

Dynamic Importing in Python

Learned to use importlib.import_module with file mtime checks for plugin-style dynamic loading.

2025-09-29

Kubernetes Ingress

Understood that an Ingress is a general K8s resource that manages external access to services, typically HTTP/HTTPS, with routing rules.

2025-09-28