ISYE 6501 FINAL COMPLETE EXAM
2025
Support vector machine - -a supervised learning, classification model. Uses extremes,
or identified points in the data from which margin vectors are placed against. The
hyperplane between these vectors is the classifier
Svm pros/cons - -pros: it works really well with a clear margin of separation
It is effective in high dimensional spaces.
It is effective in cases where the number of dimensions is greater than the number of
samples.
It uses a subset of training points in the decision function (called support vectors), so it
is also memory efficient.
Cons: not good for very large data sets
Not good for when the data set has more noise i.e. Target classes are overlapping
Doesn't directly provide probability estimates.
K-nearest neighbor (k-nn) - -an unsupervised classification algorithm. Looks at the x
number of closest points to the new one and classifies as whichever is most common.
K-nearest neighbor (k-nn) pros/cons - -pros: no assumptions about data
Easy to understand/interpret
Varsatile
Cons: computationally expensive because algorithm stores all training data
Sensitive to irrelevant features and scale of data
K-fold cross validation - -validation technique where data is divided into x number of
data subsets. Each subset is then used as a for testing while the rest are used for
training. The algorithm then rotates through each subset and averages the results
K fold cross validation pros/cons - -pros: validates performance of model
Can create balance across predicted features classes
Cons: doesn't work well with time series data
The aggregate scores of your model could miss some important extreme values or
overpower them so theyre harder to pick up on
K-means clustering - -unsupervised learning heuristic that sets x starts by assigning x
number of cluster centers, then clusters all data points into each of them based on
distance. The center point of each cluster is then calculated and all data points are
again re clustered. Repeat process until no-data points change clusters. Ideal number
of clusters can be identified via elbow diagram.
ISYE 6501
, ISYE 6501
K-means pros and cons - -pros: simple to implement
Scales well to large data sets
Easily adaptable
Cons: choosing k manually can bias it towards initial values
Sensitive to outliers
Grubbs outlier test - -a formula that uses an outlier's value, the mean of the data, and
the standard deviation to determine whether or not the data point is within the
confidence interval for a normal distribution or should be thrown out
Cusum - -change detection model that keeps a running total of the amount that
observations vary above the expected value. The running total exceeds a preset
threshold value, it indicates there has been a change.
Cusum pros/cons - -pros: best way to detect the small shifts of process mean especially
0.5 to 2 sd from the target mean
Easy to identify visually the shifts in process mean
Cons: cumbersome to establish and maintain
Tough to interpret the patterns.
Choosing c and t values is a pro and con as it can cause bias but creates more flexibility
Exponential smoothing - -technique regarding time series data in which older
observations are assigned exponentially decreasing weights, so more emphasis is
given to recent observations. Can include trends, seasonality, and cyclic patterns to
account for expected differences in observations over time
Exponential smoothing pros and cons - -pros: easy to learn and apply
Can produce accurate forecasts
Can account for trends/seasonality/cyclic effects
Works well when mean/variance/etc are expected to remain relatively constant
Cons: forecasts can sometimes have lag
Arima (auto regressive integrated moving average) - -a time series analysis method
used for forecasting that combines three components: differences in differences to find
stationary change when data metrics aren't stationary.
Autoregression, where predicting current value is based on previous time period values
Moving averages where we go back and incorporate q time periods' previous errors
Garch (generalized autoregressive conditional
Heteroskedasticity) - -time series analytic method that estimates/forecasts variance.
Helps determine how much a forecast may be higher or lower than the true value.
Useful for estimating risks on investment portfolios.
Linear regression - -a regression technique that describes relationships between
independent and dependent variables as linear functions
ISYE 6501