Credit Card Fraud Detection on Edge Devices
You are deploying a fraud detection model directly onto the credit card terminal (edge device) with only 500KB of RAM available. Inference must happen in < 5 milliseconds. The data is highly non-linear.
While a Random Forest or Kernel SVM would handle the non-linear boundaries well, they violate the memory and latency constraints. The solution is to use Logistic Regression (requiring only memory), but to manually engineer non-linear features (e.g., polynomial features) prior to deployment.
The model achieved 92% of the Random Forest's accuracy but fit within 15KB of RAM and executed in 0.1ms.