94What is the GGUF format, and what do llama.cpp k-quants (Q4_K_M, Q5_K_S) actually mean?▼mediumHugging FaceAppleAWS1 replies◆ premiumGGUF powers most local LLM runs, and its quant names look cryptic. What matters is decoding what Q4_K_M means and why mixed-precision k-quants outperform naive uniform quantization.Open full answer →
32Design an on-device AI assistant (runs locally on a phone or laptop).▼hardAppleGoogleMicrosoft1 replies◆ premiumOn-device AI gives up raw capability for privacy, offline use, and latency, under tight memory and battery limits. The signal is the small-quantized-model stack plus a hybrid router that sends the hard queries to the cloud without leaking private context.Open full answer →
50Design a human activity recognition system (from sensors or video).▼hardAppleGoogleMeta1 replies◆ premiumDetecting walking, driving, or a fall from a sensor stream is windowed time-series classification, typically on a battery-bound device. What matters is windowing, temporal smoothing, and the on-device constraints most candidates overlook. Here is the design.Open full answer →
13How do you run LLMs on edge/on-device, and what is GGUF's role?▼mediumAppleNVIDIAMicrosoft1 replies○ sign inOn-device AI is a genuine product surface (privacy, offline, latency), and it imposes hard constraints. The signal is the quantization plus format plus runtime stack and the tradeoffs you accept under tight memory and battery budgets.Open full answer →
08Design a landmark or image recognition system at scale.▼hardGoogleApplePinterestunlockedMillions of landmarks exist, most with only a handful of photos, and the next photo could show something not in your catalog at all. A flat classifier collapses on the long tail and never says 'I don't know.' The interview is embeddings plus retrieval plus a confident refusal.Open full answer →