返回卡包市场

General

暂无描述。系统推荐的高质量记忆内容,适合每天坚持背诵学习。

卡片总数: 24内容版本: v4公开卡包更新时间: 8/1/2026

卡片预览 (24 张)

#1
正面 (问题)

Stochastic Gradient Descent

背面 (解答)

Gradient descent algorithm that increments the parameters using only single observations at a time. More efficient than batch gradient descent, especially with large datasets.

#2
正面 (问题)

Batch Gradient Descent

背面 (解答)

Gradient descent algorithm in which it is required to scan through the entire training set before taking a single step.

#3
正面 (问题)

Localized Linear Regression

背面 (解答)

A variant of traditional linear regression that uses only local data points around Xi to predict Yi

#4
正面 (问题)

Type I Error (False Positive)

背面 (解答)

Incorrectly rejecting the null hypothesis in favor of the alternative hypothesis when the null is true. Same as alpha, set at the beginning of the experiment.

#5
正面 (问题)

Type II Error (False Negative)

背面 (解答)

Failing to reject the null hypothesis when it is false Also known as beta. Note that power is (1 - beta)

#6
正面 (问题)

A\B Testing

背面 (解答)

A/B testing, also known as split or bucket testing, is a user experience research method that compares two or more versions of content to determine which one performs best A/B testing involves randomly assigning visitors to see either a control (A) version or a variant (B) version of a page or content. The performance of each version is then measured based on key metrics, such as the number of conversions or visitors who took the desired action.

#7
正面 (问题)

SVMs : General description

背面 (解答)

Simple: Machine learning model that uses a hyperplane to differentiate and classify different groups of data Detailed: SVM identified an appropriate hyperplane by attempting to maximize the margins between points between the closest points of each class to boundary. If data that cannot be separated linearly, use transformations to map data into high dimensions.

#8
正面 (问题)

SVMs: Soft Margin Classification

背面 (解答)

A mechanism that serves to reduce the overfitting of maximum margin classification by penalizing misclassifications

#9
正面 (问题)

Bias / Variance Tradeoff

背面 (解答)

A tradeoff in machine learning models where you have the choice of reducing bias (how well a model fits a specific set of data) vs. reducing variance (how much performance of a mode varies across many datasets).

#10
正面 (问题)

Precision

背面 (解答)

TP / (TP + FP) Measures the accuracy of positive predictions (but not necessarily identifying all of them).

#11
正面 (问题)

Recall

背面 (解答)

TP / (TP + FN) Measures completeness of positive predictions

#12
正面 (问题)

F1 Score

背面 (解答)

2 / ((1/Precision) + 1/Recall)) Harmonic mean of precision and recall, ranging between 0 and 100%

#13
正面 (问题)

ROC Curve

背面 (解答)

Plots true positive rate (recall) against false positive rate. A good ROC curve goes toward the top left of the chart. X = FPR Y = TPR

#14
正面 (问题)

False Positive Rate (1 - Specificity)

背面 (解答)

Proportion of negative instances that are incorrectly classified as positive (i.e. false positive) FP / (FP + TN)

#15
正面 (问题)

Lasso Regression

背面 (解答)

Check this

#16
正面 (问题)

Elastic Net

背面 (解答)

Check this

#17
正面 (问题)

Early Stopping

背面 (解答)

A way of regularizing a model by stopping training once validation error reaches a minimum

#18
正面 (问题)

Soft max Regression

背面 (解答)

Also known as multinomial logistic regression. Classification with multiple classes. For each instance x, assigns a score s(x) for each class k, then estimates probability by applying a soft max function. Soft max function is as followed: Exp(s(x)) / summation(exp(s(x)))

#19
正面 (问题)

Cross-entropy

背面 (解答)

Loss function used to measure difference between predicted and true probability distributions. Penalizes low probability on true labels significantly. -1/m ∑ ∑y log (p(k)) Essentially the mean of the -log(estimated probabilities).

#20
正面 (问题)

Accuracy

背面 (解答)

Number of correctly classified instances / number of all classified instances

#21
正面 (问题)

True Positive Rate (Sensitivity)

背面 (解答)

Proportion of positive instances that are correctly classified as positive (i.e. true positive) TP / (TP + FN)

#22
正面 (问题)

Specificity

背面 (解答)

True Negative Rate Proportion of negative instances that are correctly classified as negative (i.e. true negative) TN / (TN + FP)

#23
正面 (问题)

Gradient Descent

背面 (解答)

An algorithm that minimizes a particular function (in ML the loss function) by taking small steps in the direction of the steepest descent for that function. Step 1: Take the derivative of the loss function for each parameter (i.e. take the gradient of the loss function). Step 2: Initialize parameters with random values Step 3: Plug parameters into the partial derivatives (gradient) Step 4: Calculate step sizes (Calculated slope from step 3 * learning rate) Step 5: Calculate the new parameters (New = Old - Step Size) Step 6: Repeat 4-5 until convergence

#24
正面 (问题)

Steps for K-fold Cross Validation

背面 (解答)

Step 1: Shuffle data into equally sized blocks (folds) Step 2: For each fold k, train model on all data except fold i, and evaluate validation error using the remaining fold i. Step 3: Average the validation errors from step 2 to get estimate of the true error.