The first fit is a Poisson regression with independent responsesThe fitted intercept gives expected visitors when spending on both services is zero. Holding advert2 fixed, increasing advert1 by one unit, namely one hundred pounds, multiplies the expected visitor count by .
The second fit is a Quasi-Poisson regression. It retains the logarithmic link function and mean modelbut assumes only for an unknown dispersion parameter , rather than a complete Poisson distribution.
The quasi-Poisson standard errors are the Poisson standard errors multiplied by , and the Pearson estimator divides the Pearson chi-squared statistic by the residual degrees of freedom . Therefore the requested sum of squared Pearson residuals isup to the rounding in the printed standard errors.
The third fit is a negative binomial regression. The Poisson model is obtained at the boundary where the negative-binomial overdispersion tends to zero, so the likelihood-ratio test has the asymptotic null distribution . Since model3 has one additional parameter,The supplied output gives , and hence the boundary-corrected p-value is
The stated mean and variance identify as a gamma distribution with shape and scale . A Poisson-gamma mixture is negative binomial, withWhen , this is exactly the constant-shape variance model fitted by the negative binomial regression, so the most appropriate printed p-value is from model3.
When , the law of total variance givesThis is the quasi-Poisson mean-variance relation with constant dispersion, so the most appropriate printed p-value is from model2.
Among all depth-one regression tree splits, the best split separates the second observation from the first and third by cutting advert1 between and . The test point with advert1 equal to zero reaches the leaf containing responses and , so the output is their arithmetic mean,This decision stump makes a piecewise-constant prediction far outside the observed predictor range and cannot extrapolate the spending trend towards the origin. Its shallow structure and leaf averaging keep its variance of an estimator modest, while that extrapolation failure can produce substantial bias of an estimator.
The ridge regression estimator is the elastic net at , while the lasso regression estimator is the elastic net at .
Put . Under , the objective separates by coordinates. Completing the square and applying the soft-thresholding operator givesFor a fixed , its magnitude lies between the ridge endpoint and the lasso endpoint ; this follows directly on the two intervals and by cross-multiplication. Thus the stated endpoint inequality holds.
For and , the coordinate first vanishes when the soft threshold reaches , soThis is strictly decreasing in , and it diverges to infinity as . This agrees with the fact that pure ridge shrinkage does not set a nonzero coordinate exactly to zero at any finite penalty.
Writing the horizontal coordinate as , so that , the two coefficient paths at areEquivalently, as functions of , replace every by . The paths reach zero at and , respectively.
Let and . While both lasso coordinates are positive, the Karush-Kuhn-Tucker conditions giveHenceAssume without loss of generality that . After the first coordinate vanishes, the second remains active until . The zero vector satisfies the KKT conditions exactly when ; for and , this norm is . Thereforeandwhich is independent of .
The conditional class probability is . A Bayes classifier choosesand its Bayes risk isA sequence of classifiers is consistent when as , with convergence interpreted in probability or in expectation according to whether the training sample is conditioned upon.
The -nearest-neighbour classifier finds the training predictors nearest to and returns the majority class among their labels. Increasing averages more labels and reduces variance of an estimator, but uses observations farther from and therefore increases bias of an estimator; decreasing reverses this bias-variance tradeoff.
For two classes, write , the conditional Bayes error. The nearest-neighbour label and the test label become conditionally independent draws from the same local class distribution, so the limiting conditional error of one-nearest-neighbour classification isThe assumption gives . Its excess over the conditional Bayes error isAfter taking expectations, the limiting risk remains at least above the Bayes risk, so one-nearest-neighbour classification is not consistent.
The limiting conditional error of one-nearest-neighbour classification is . Put and . By the Cauchy-Schwarz inequality, the other probabilities satisfyConsequentlyNow , and Jensen inequality gives . Taking expectations proves
Encode the two classes by the standard basis vectors of . With rectified linear unit applied coordinatewise and softmax function , the fitted feedforward neural network iswhere , , , , , and . The number of trainable parameters is
Training minimizes the empirical categorical cross-entropy lossby stochastic gradient descent. The independent validation set monitors generalization, while the small fixed number of epochs limits how long the network can fit training noise; using validation loss for early stopping would make this safeguard explicit. A forward pass computes all layer activations, class probabilities, and the mini-batch loss. There are training mini-batches per epoch and hence training forward passes, in addition to validation evaluation after each epoch.
The usual Akaike information criterion correction assumes a regular maximum-likelihood fit with a meaningful fixed parameter dimension. Here stochastic optimization stopped after five epochs need not attain the maximum likelihood estimator, and neural-network symmetries, inactive units, and heavy overparameterization make the raw count a poor effective dimension. Either failure invalidates a direct AIC comparison with an ordinary logistic regression.
The proposed function is the Gaussian error linear unit. Unlike ReLU, it is smooth at zero and has a nonzero gradient on much of the negative half-line, reducing dead hidden units and making gradient optimization smoother. It is less computationally convenient because evaluating the standard normal cumulative distribution function is costlier than taking a maximum, and it does not produce ReLU's exact sparse zero activations.
The intended quantity is the Leave-one-out cross-validation errorwhere is trained without observation and the loss is the zero-one misclassification loss. Computing it literally requires fitting neural networks, which is prohibitively expensive.
The assignment
nn.model.i <- nn.model does not construct a fresh untrained Keras model: it aliases an object whose weights were already fitted using every training observation, including the nominally held-out one, and repeated fits continue mutating those weights. This data leakage makes metric2 severely optimistic. Moreover, random leave-one-out validation among reviews from 2012--2025 does not reproduce the dataset shift to new recent reviews that metric1 measures.Model1 is the simple linear regressionModel2 is a random-intercept linear mixed modelwith the random intercepts and errors mutually independent.
Repeated measurements from one person can share persistent unobserved spending tendencies, violating model1's independent-error assumption and shifting that person's baseline. Model2 represents this clustered data through a common random intercept , which induces within-person covariance for .
The residual deviance of a Gaussian GLM is its residual sum of squares, . Thus the empirical training error for squared-error loss isIf training error is defined as the unnormalized total loss, its value is .
The second cross-product entry is . Regressing earned on the ten person indicators without an intercept makes the mean of that person's ten earned values. Therefore
Let , letand recover the sufficient cross-products from the model1 normal equations by setting and . Thenis the total squared residual about the fixed line. The squared sum of the ten residuals within each person, summed across people, isFor one person's ten observations, the marginal covariance matrix is . The matrix determinant lemma and Sherman–Morrison formula therefore give, up to an additive constant, twice the negative marginal log-likelihoodBecause the model was fitted with
REML = FALSE, it minimizes this ordinary marginal maximum-likelihood objective. Thus belongs to the stated argmin over and . Articles by others on the same topic
There are currently no matching articles.