ACCT 331: Introduction to Applied Artificial Intelligence

0.0(0)
studied byStudied by 0 people
0.0(0)
linked notesView linked note
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/15

flashcard set

Earn XP

Description and Tags

These flashcards cover essential concepts related to applied artificial intelligence, focusing on clustering, classification, regression metrics, model evaluation, and common machine learning algorithms.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

What is the definition of clustering in machine learning?

Clustering is an unsupervised machine learning technique that creates clusters of observations that share certain characteristics.

2
New cards

What distinguishes classification from clustering?

Classification is a supervised learning technique that uses labeled data to predict categories, while clustering groups unlabeled data into meaningful observations.

3
New cards

Name a few metrics for measuring model accuracy in classification.

Accuracy, Precision, Recall, F1-Score, ROC AUC.

4
New cards

What is the purpose of the Adjusted R² statistic in regression analysis?

Adjusted R² penalizes the model for adding unnecessary predictors, providing a more reliable fit quality.

5
New cards

Explain Mean Absolute Error (MAE).

MAE is the average of the absolute differences between actual values and predicted values, indicating the typical deviation in predictions.

6
New cards

Describe the significance of the R² statistic in regression models.

R² measures the proportion of variability in the dependent variable that can be explained by the independent variables.

7
New cards

What is the objective of logistic regression?

Logistic regression predicts a discrete output variable (class/category) from one or more predictor variables.

8
New cards

What are common applications of decision trees in machine learning?

Decision trees can be used for healthcare diagnoses, credit scoring, and predicting customer behavior.

9
New cards

Describe the role of feature engineering in machine learning.

Feature engineering transforms raw data into informative features that enhance model performance.

10
New cards

What is the confusion matrix used for?

The confusion matrix evaluates the performance of a classification model by showing the counts of true positives, false positives, true negatives, and false negatives.

11
New cards

What challenges do classification models face in real-world scenarios?

Classification models encounter issues like data drift, data quality problems, and changes in data distributions.

12
New cards

What are the advantages of using Random Forests in classification tasks?

Random Forests improve accuracy, reduce overfitting, and handle large datasets with high dimensionality.

13
New cards

What is one key characteristic of K-Means clustering?

K-Means clustering partitions data into a predefined number of clusters (k) by minimizing within-cluster variances.

14
New cards

How does Logistic Regression differ from Linear Regression?

Logistic Regression predicts discrete outcomes, while Linear Regression predicts continuous outcomes.

15
New cards

What does the F1-Score represent in model evaluation?

The F1-Score is the harmonic mean of precision and recall, providing a single metric that balances both concerns.

16
New cards

What is overfitting, and how can it affect model performance?

Overfitting occurs when a model learns the training data too well, leading to poor generalization on unseen data.