53Train a reward model for a coding agent from 100K noisy human scores biased toward short solutions.▼expertOpenAIAnthropicCognition2 replies◆ premiumHuman 1-5 scores are biased toward short, simple code. Debias the labels, fuse test-pass rate without letting the agent game it, and pick PPO with a fused reward over a DPO ranking loss. Plus the hard cap on the action space so the agent can't delete the repo.Open full answer →
54RL-train a 7B model to use SQL and a calculator with no human feedback on intermediate steps.▼expertOpenAIAnthropicSierra1 replies◆ premiumReward only on the final answer and learning crawls; shape intermediate tool calls and the model learns to spam SQL. Use outcome-grounded credit assignment, GRPO over a group of trajectories, and fine-tune a pre-aligned model so you're not teaching tool syntax from scratch.Open full answer →
55Spend a 1000-token test-time budget on a math problem: process-reward scoring with tree search.▼expertOpenAIGoogle DeepMindAnthropic2 replies◆ premiumA fixed 1000-token budget forces the search choice. Step-level beam search guided by a process-reward model beats best-of-N and MCTS on accuracy per token for math, and you collect the PRM labels automatically with Monte-Carlo rollouts, no human step annotation.Open full answer →
44Design a Graph-RAG pipeline that turns a question into Cypher, runs it, and heals its own broken queries.▼expertPalantirGleanNeo4j1 replies◆ premiumA multi-hop question over a property graph is a query-generation problem, not a similarity-search one. The staff-level move is grounding generation in the live schema and closing an auto-healing loop on the DB's own error messages.Open full answer →
45Build a simulation harness that evaluates a non-deterministic researcher-writer multi-agent system under injected faults.▼expertScale AIAnthropicOpenAI1 replies◆ premiumYou cannot unit-test a stochastic two-agent pipeline with a golden output. You evaluate it the way you stress a distributed system: thousands of simulated runs, controlled fault injection, and a judge calibrated against humans.Open full answer →
46Design a Planner-Coder-Reviewer-Tester system that turns a Jira ticket into tested code and fixes its own bugs.▼expertCognitionOpenAIGitHub1 replies◆ premiumThe hard parts are not the four roles. They are the communication substrate, a termination condition that is not just a retry cap, and stopping the Coder from forgetting the ticket after five repair cycles.Open full answer →
52A customer wants a deep-research agent over their private docs and the open web. Design it so stakeholders trust the citations.▼expertOpenAIAnthropic◆ premiumDeep-research agents run unsupervised for twenty minutes and their report goes straight to an executive. The failure mode is not a crash, it is confident citations that do not support the claims. Most candidates design the retrieval and skip the verification pass, the run budget, and the freshness story.Open full answer →
57Build a 10M-sample instruction-tuning dataset from 100B web docs. Design the pipeline.▼expertOpenAIScale AIDatabricks2 replies◆ premiumThe naive pipeline gives you 10 million 'summarize this paragraph' pairs and a model that can only summarize paragraphs. The hard part is diversity and quality control at 100-billion-document scale, not the generation call.Open full answer →
49Orchestrate a multi-agent system over a 500-page merger agreement to produce a redlined risk summary that never contradicts the source.▼expertHarveyHebbiaPalantir1 replies◆ premiumFive LLM agents over a hundred steps, and the bar is zero contradictions with a 500-page contract. The real test is the state and grounding layer, not the agent prompts.Open full answer →
50Adapt a pretrained LLM for intelligence analysis inside an air-gapped facility, on classified data you are never allowed to see.▼expertPalantirScale AIAnduril1 replies◆ premiumNo data leaves, you cannot pre-inspect the corpus, and your toolchain arrives on a single USB. Design adaptation and evaluation when you will never observe a single input or output.Open full answer →
51Design a real-time radiology copilot that flags regions and drafts a report in under 2 seconds at 10 studies/sec, recall first.▼expertMicrosoftGoogleNVIDIA1 replies◆ premiumTen X-ray studies a second, a 2-second budget, and a missed cancer is unacceptable. The hard parts are recall-first thresholding, a monitor that watches the radiologist, and surviving a new scanner.Open full answer →
40Write a GPU kernel that masks logits to a grammar's DFA during decoding, with under 1% overhead.▼expertOpenAINVIDIAAnthropic1 replies◆ premiumConstrained JSON/grammar decoding usually means a Python callback per token, which serializes the GPU. The staff answer keeps the DFA on-device and turns the mask into a single coalesced gather.Open full answer →
41Design KV-cache reuse for hours-long 32K chat sessions, including edits, hot weight swaps, and eviction.▼expertOpenAIAnthropicFireworks2 replies◆ premiumReprefilling the whole history every turn makes a long chat O(n^2). The real design is a radix tree of KV blocks with copy-on-write branching, a weight-epoch tag, and an eviction policy that protects live turns.Open full answer →
42Serve thousands of per-customer LoRA adapters on one base 8B, sharing KV cache where you can.▼expertFireworksTogetherDatabricks1 replies◆ premiumEach customer has their own LoRA on a shared 8B. The S-LoRA-style answer keeps one base in memory, pages adapters in and out, and tags every KV block with an adapter ID so reuse never crosses tenants.Open full answer →
43Run a 7B vision-language model on a Jetson Orin to caption a 25 FPS video stream within 500ms.▼expertNVIDIAAndurilTesla1 replies◆ premiumA 7B VLM at 25 FPS on an embedded GPU sounds impossible until you stop processing every frame fully. The answer is token pruning, frame-to-frame KV reuse, and a three-stage pipeline that hides latency.Open full answer →
44Extend a 4K-context 7B to 1M tokens: RoPE scaling, the data recipe, eval, and the inference math.▼expertGoogleAnthropicNVIDIA1 replies◆ premiumGoing 4K to 1M is not one trick. It is RoPE rescaling chosen by frequency band, a long-doc continued-pretrain mix, needle evals that actually catch failures, and KV math that forces ring attention.Open full answer →
45Plan a 7B pretrain from scratch on 64 H100s in 30 days, end to end.▼expertOpenAIMistralCohere1 replies◆ premium64 H100s for 30 days is a real budget with a real token count. The answer sizes the run from Chinchilla, picks parallelism for this exact cluster, and has a concrete plan for loss spikes and silent data corruption.Open full answer →
40Train a red-team LLM with RL to find jailbreaks in your safety-tuned model, then feed the discovered attacks back into safety training.▼expertAnthropicOpenAIScale AI1 replies◆ premiumA red-team model that learns over many episodes which attacks bypass your filters is only useful if it explores instead of farming one exploit, and only safe if every discovered attack becomes target training data.Open full answer →
41A fintech wants cryptographic proof you ran the exact model they audited on their input. zk-ML or a TEE?▼expertModulusMicrosofta16z-style fintech1 replies◆ premiumTwo ways to prove a cloud LLM run is the audited model on the customer's input: a zero-knowledge proof of the computation, or a TEE attestation. They differ by roughly an order of magnitude in overhead and entirely in trust assumptions.Open full answer →
42Prove your financial-advice LLM has no internal 'deceptive' policy: use SAEs to find, validate, and suppress deception features.▼expertAnthropicGoogle DeepMindOpenAI1 replies◆ premiumSAEs can surface candidate 'deception' features in the residual stream, but a correlated feature is not a cause. The real work, and the honest answer, is causal validation and admitting what interpretability cannot yet prove.Open full answer →
43Personalize a mobile-keyboard model from on-device typing without raw text ever leaving the phone: federated LoRA with DP-SGD.▼expertAppleGoogleSamsung1 replies◆ premiumFine-tune a LoRA adapter on the user's typing on the phone's neural engine, add noise locally with DP-SGD, and aggregate only adapter deltas, so no individual's vocabulary is recoverable from the global update.Open full answer →