Geschreven door studenten die geslaagd zijn Direct beschikbaar na je betaling Online lezen of als PDF Verkeerd document? Gratis ruilen 4,6 TrustPilot
logo-home
Tentamen (uitwerkingen)

ISYE 6501 MIDTERM QUESTIONS & ANSWERS(RATED A+)

Beoordeling
-
Verkocht
-
Pagina's
20
Cijfer
A+
Geüpload op
11-10-2025
Geschreven in
2025/2026

What does SVM stand for? - ANSWERSupport Vector Machine Is written text structured or unstructured? - ANSWERUnstructured When we increase the sum of the square of the coefficients we... - ANSWERDecrease the distance between the lines In SVM soft classifier we tradeoff between maximizing ___ and minimizing ___ - ANSWERmargin and errors If lambda gets small what gets emphasized, large margin or minimizing training error?, - ANSWERMinimizing errors. What is a support vector? - ANSWERA point that holds up a shape. Does ...[⅔(a-1)+1/3(a+1)] move an SVM classifier up or down? - ANSWERUp How do you make errors more costly in a soft SVM classifier? - ANSWERinclude a multiplier for the point-error term. If an SVM coefficient is very close to zero... - ANSWERthat term is not very important to the classification. What is the difference between standardization and scaling? - ANSWERScaling is bounded in range. Standardization is scaling to a normal distribution. Standardization is the (value - factor mean) / (factor standard deviation) What is the 2-norm? - ANSWEREuclidean distance What is the 1-norm? - ANSWERThe rectilinear (Manhattan) distance What is the infinity norm? - ANSWERThe value of the largest dimension Measuring the quality of a model is called? - ANSWERValidation What does a confusion matrix show? - ANSWERThe performance of a classification model. A time series outlier that seems "off the curve" is called a... - ANSWERcontextual outlier. A data element that is different from all other data in a set is called a... - ANSWERpoint outlier. When something is missing in a range of points - ANSWERit is called a..., collective outlier. The whiskers on a box plot extend to... - ANSWERthe 10th and 90th percentiles (or 5th and 95th) Why are hypothesis tests generally not sufficient for change detection? - ANSWERThey are slow to detect changes.

Meer zien Lees minder
Instelling
ISYE 6501
Vak
ISYE 6501

Voorbeeld van de inhoud

ISYE 6501 MIDTERM QUESTIONS &
ANSWERS(RATED A+)
What does SVM stand for? - ANSWERSupport Vector Machine

Is written text structured or unstructured? - ANSWERUnstructured

When we increase the sum of the square of the coefficients we... -
ANSWERDecrease the distance between the lines

In SVM soft classifier we tradeoff between maximizing ___ and minimizing ___ -
ANSWERmargin and errors

If lambda gets small what gets emphasized, large margin or minimizing training
error?, - ANSWERMinimizing errors.

What is a support vector? - ANSWERA point that holds up a shape.

Does ...[⅔(a-1)+1/3(a+1)] move an SVM classifier up or down? - ANSWERUp

How do you make errors more costly in a soft SVM classifier? - ANSWERinclude a
multiplier for the point-error term.

If an SVM coefficient is very close to zero... - ANSWERthat term is not very
important to the classification.

What is the difference between standardization and scaling? - ANSWERScaling is
bounded in range. Standardization is scaling to a normal distribution. Standardization
is the (value - factor mean) / (factor standard deviation)

What is the 2-norm? - ANSWEREuclidean distance

What is the 1-norm? - ANSWERThe rectilinear (Manhattan) distance

What is the infinity norm? - ANSWERThe value of the largest dimension

Measuring the quality of a model is called? - ANSWERValidation

What does a confusion matrix show? - ANSWERThe performance of a classification
model.

A time series outlier that seems "off the curve" is called a... - ANSWERcontextual
outlier.

A data element that is different from all other data in a set is called a... -
ANSWERpoint outlier.

,When something is missing in a range of points - ANSWERit is called a..., collective
outlier.

The whiskers on a box plot extend to... - ANSWERthe 10th and 90th percentiles (or
5th and 95th)

Why are hypothesis tests generally not sufficient for change detection? -
ANSWERThey are slow to detect changes.

In CUSUM, T is _____ and C is _____., - ANSWERThreshold and a "bring down
factor"

In a CUSUM model, you adjust T and C to manage the tradeoff between..., -
ANSWERearly detection and false-alarms

In exponential smoothing, if the data is less random, then you want to pick an alpha
that is..., - ANSWERClose to 1.

What is the initial condition for T in exponential smoothing with trending? -
ANSWERT_i=0

In cyclic exponential smoothing, L represents..., - ANSWERThe length of the cycle or
season

In cyclic exponential smoothing, C_1 ... C_L = ___?, - ANSWER1. In other words,
initialize it to no initial cycle.

Exponential, trending and cyclic smoothing are also referred to as - ANSWERsingle
double and triple.

Triple smoothing is also known as? - ANSWERWinter's or Holt-Winter's

What is the optimization formula for Exponential Smoothing? - ANSWERmin(F_t-
Xt)^2 where alpha and beta are between 0 and 1.

ARIMA stands for? - ANSWERAutoregressive Integrated Moving Average

Exponential smoothing is an order ___ autoregressive model. - ANSWERInfinity. It
uses data going all the way back.

For ARIMA, the D parameter is used to specify ___. - ANSWER, The order, or the
differences of the differences of the differences (d-times.)

For ARIMA, the P parameters is used to specify ____., - ANSWERThe order of
periods (autoregression).

For ARIMA, the Q parameter is used to specify ______., - ANSWERThe order of the
moving average.

ARIMA(0,1,1) is ?, - ANSWERExponential smoothing.

, What is the order of the ARIMA parameters? - ANSWERp d q

GARCH estimates what? - ANSWERVariance.

Variance can be a proxy for ___ or ___. - ANSWERvolatility or Risk

What parameter does GARCH not have the ARIMA has? - ANSWERd because
GARCH doesn't deal with differences.

What is a simple linear regression? - ANSWERLinear regression with one predictor.

A linear regression defines a relationship between what and what? -
ANSWERPredictor(S) and Response

What is the formula for a linear regression with M predictors? -
ANSWERY=a0+sum(j=1..m, a(j)*(x(j))

What measure is used to determine the quality of a linear regression line to data? -
ANSWERSquare of the difference between the line and the data points. (Sum
squared error.)

What is the formula for point error in linear regression? - ANSWERy(i)-Yhat(i)=y(i)-
(a(0) + a(i)*x(i)

Taking partial derivates and setting them equal to zero and then solving that system
equation helps us do what? - ANSWERMinimize the error and optimize the
coefficients for linear regression.

What does AIC stand for? - ANSWERAkaike Information Criterion

What is "Likelihood"? - ANSWERA measure for the probability density for any
parameter set.

What is Maximum likelihood? - ANSWERParameters that give the highest
probability.

What is MLE? - ANSWERMaximum Likelihood Estimate... The set of parameters
that minimizes the sum of square errors.

What is the formula for AIC? - ANSWERAIC=2k - 2*ln(L*) where L* is the maximum
likelihood value and K is the number of parameters estimated.

What is the penality term in AIC and what does it do? - ANSWER2K - It helps
prevent overfitting.

A models that is fit to random effects and not real ones is said to be? -
ANSWEROverfit

Geschreven voor

Instelling
ISYE 6501
Vak
ISYE 6501

Documentinformatie

Geüpload op
11 oktober 2025
Aantal pagina's
20
Geschreven in
2025/2026
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden

Onderwerpen

$15.49
Krijg toegang tot het volledige document:

Verkeerd document? Gratis ruilen Binnen 14 dagen na aankoop en voor het downloaden kun je een ander document kiezen. Je kunt het bedrag gewoon opnieuw besteden.
Geschreven door studenten die geslaagd zijn
Direct beschikbaar na je betaling
Online lezen of als PDF

Maak kennis met de verkoper

Seller avatar
De reputatie van een verkoper is gebaseerd op het aantal documenten dat iemand tegen betaling verkocht heeft en de beoordelingen die voor die items ontvangen zijn. Er zijn drie niveau’s te onderscheiden: brons, zilver en goud. Hoe beter de reputatie, hoe meer de kwaliteit van zijn of haar werk te vertrouwen is.
papersbyjol West Virginia
Volgen Je moet ingelogd zijn om studenten of vakken te kunnen volgen
Verkocht
443
Lid sinds
3 jaar
Aantal volgers
254
Documenten
14151
Laatst verkocht
2 dagen geleden

3.7

78 beoordelingen

5
29
4
20
3
18
2
2
1
9

Recent door jou bekeken

Waarom studenten kiezen voor Stuvia

Gemaakt door medestudenten, geverifieerd door reviews

Kwaliteit die je kunt vertrouwen: geschreven door studenten die slaagden en beoordeeld door anderen die dit document gebruikten.

Niet tevreden? Kies een ander document

Geen zorgen! Je kunt voor hetzelfde geld direct een ander document kiezen dat beter past bij wat je zoekt.

Betaal zoals je wilt, start meteen met leren

Geen abonnement, geen verplichtingen. Betaal zoals je gewend bent via iDeal of creditcard en download je PDF-document meteen.

Student with book image

“Gekocht, gedownload en geslaagd. Zo makkelijk kan het dus zijn.”

Alisha Student

Bezig met je bronvermelding?

Maak nauwkeurige citaten in APA, MLA en Harvard met onze gratis bronnengenerator.

Bezig met je bronvermelding?

Veelgestelde vragen