INTERVIEW PREP

数学与非代码面试题

覆盖数学、概率、统计、脑筋急转弯、机器学习和金融。这里负责筛选和进入单题;编程题使用独立的 LeetCode 式 coding lab。

题目
4169
领域
8
当前筛选
738

15 / 37

非代码面试题

显示 20 / 738 道匹配题目

答题状态:未尝试未正确已正确
4302Label Smoothing Loss 2A network uses stochastic depth on 12 residual blocks, each with survival probability 0.75 during training. How many blocks are active on average in a training pass?机器学习中等数值题未尝试面试订阅4303Label Smoothing Loss 3A layer has 400 weights. DropConnect keeps each weight independently with probability 0.9 during training. How many weights are active on average in one forward pass?机器学习中等数值题未尝试面试订阅4304Label Smoothing Loss 4A unit has activation a = 3 before inverted dropout with keep probability q = 0.75. During training the output is either 0 or a/q. What is the variance of that post-dropout output?机器学习中等数值题未尝试面试订阅4306Sparse Weights Blow UpA wide MLP on 8k tabular rows drives training AUC to 0.99 while validation AUC stalls at 0.76. Feature semantics do not support label-preserving augmentation, and the largest weights sit on sparse one-hot inputs. Which regularization control should you try first?机器学习中等essay未尝试面试订阅4307Validation Peak Then DriftTraining loss keeps improving every epoch, but validation Sharpe peaks around epoch 11 and then gradually drifts lower. You are not changing architecture or dataset. What regularization move is most justified?机器学习中等essay未尝试面试订阅4308Noisy Labels And OverconfidenceA classifier already has good accuracy, but on borderline names it assigns 99% probability too often and the labels are believed to contain small noise. Which regularization change best targets that failure mode?机器学习中等essay未尝试面试订阅4309Co-Adapted Hidden UnitsTwo hidden layers memorize pairs of co-occurring signals. In-sample metrics look great, but when one signal in the pair shifts slightly out of sample, performance collapses. Which control is most naturally aimed at reducing this co-adaptation?机器学习中等essay未尝试面试订阅4310Safe Invariance AvailableYou are training on a small image-like signal dataset where small translations and mirror flips preserve the label by construction. The network fits the training set too easily. What regularization lever should move to the front of the queue?机器学习中等essay未尝试面试订阅4311Before Raising DropoutYou are tempted to raise dropout from 0.2 to 0.6 after one mediocre run. What is the first diagnostic question you should answer before doing that?机器学习中等essay未尝试面试订阅4312Before Adding AugmentationA teammate proposes aggressive data augmentation as a universal fix. What is the first check you should make before accepting that plan?机器学习中等essay未尝试面试订阅4313When Weight Decay Starts HurtingPerformance falls as you increase weight decay. Before concluding that regularization is bad, what structural question should you ask about the signal?机器学习中等essay未尝试面试订阅4314Before Trusting Early StoppingYour validation metric is noisy day to day. Before treating the first local peak as the stopping point, what should you calibrate?机器学习中等essay未尝试面试订阅4315Regularization Is Not IsolatedIn an overparameterized network, why is it a mistake to discuss regularization strength without also looking at optimizer and data pipeline choices?机器学习中等essay未尝试面试订阅4321Streaming Order-Flow MotifsYou need millisecond-latency prediction from a live order-flow stream. Most of the useful structure comes from local motifs over the most recent 20-40 events, and the model must update online without waiting for a block. Which architecture family should be your first baseline?机器学习中等essay未尝试面试订阅4322Online Stateful SequenceA model must process an indefinite event stream one tick at a time and maintain a compact evolving hidden state that can be updated without revisiting past inputs. Which architecture family is most naturally aligned with that requirement?机器学习中等essay未尝试面试订阅4323Long Offline Cross-ReferenceYou are building an offline model over 4000-token documents where answers often depend on matching phrases across distant sections. Latency is less important than capturing those long-range interactions. Which architecture should dominate the shortlist?机器学习中等essay未尝试面试订阅4324Small Data With Local StationarityYou have limited labeled data, and the target depends on local translation-equivariant patterns in a 2D signal map. Which architecture family usually brings the strongest built-in inductive bias?机器学习中等essay未尝试面试订阅4325Rare But Crucial Global LinksA sequence problem has mostly local structure, but a small fraction of labels flips because of interactions between positions hundreds of steps apart. Missing those interactions is very costly. Which architecture family should you favor?机器学习中等essay未尝试面试订阅4326Length-Doubling Cost ShockA local CNN with window size 7 scales like 7L interactions, while a Transformer attention block scales like L 2 score pairs. If L doubles from 256 to 512, by what factor does each interaction count grow, and which architecture hits the sharper scaling wall?机器学习中等essay未尝试面试订阅4327CNN Depth For Longer HorizonA stride-1 CNN uses kernel size 3 and no dilation. To cover a dependency horizon of 9 steps you need 4 layers. If the required horizon rises to 41 steps, how many layers are needed, and what does that imply about the architecture pressure?机器学习中等essay未尝试面试订阅