ELEC2 - FINALS REVIEWER

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/75

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:27 AM on 5/19/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

76 Terms

1
New cards

Which model serves as the universal framework for every intelligent system?

The Input–Process–Output (IPO) Model

2
New cards

In an intelligent system, the raw material (structured or unstructured) is called?

Input Data

3
New cards

What is the key characteristic of an intelligent system?

It adapts based on data to mimic human-like reasoning

4
New cards

What does the principle of "Garbage in, garbage out" emphasize?

That the quality of output depends on the quality of input data

5
New cards

Which process is used to clean data and handle missing values before training?

Preprocessing

6
New cards

If you are predicting a continuous numeric value, such as a student's final grade percentage, you are using what type of learning?

Regression

7
New cards

Which algorithm category is used to assign inputs to discrete categories such as Pass or Fail?

Classification

8
New cards

For a very small dataset, which design choice helps avoid overfitting?

Choosing a simpler model

9
New cards

Why is Python the industry standard for intelligent system prototyping?

Its readable syntax and extensive ML library ecosystem

10
New cards

Which Python library is used for loading, cleaning, and transforming datasets?

Pandas

11
New cards

What is the primary goal of creating a working prototype?

To establish a baseline and prove the design is functional

12
New cards

In the system integration phase, what does smooth data flow ensure?

Output formats from one stage are valid inputs for the next

13
New cards

A model that performs perfectly on training data but fails on new data is experiencing what problem?

Overfitting

14
New cards

What is the systematic process of identifying and resolving errors in an AI system called?

Debugging

15
New cards

Issues like label noise or insufficient edge case coverage are examples of what?

Data Issues

16
New cards

Which tool helps explain which features are most influential for a specific prediction?

SHAP values

17
New cards

The F1 Score is particularly valuable because it is what?

The harmonic mean of precision and recall

18
New cards

What does Precision specifically measure?

How many positive predictions were actually correct

19
New cards

On a highly imbalanced dataset, which metric can be the most misleading?

Accuracy

20
New cards

Transitioning a model from a notebook to a live environment for real users is called what?

Deployment

21
New cards

What are the two most fundamental performance measures for a classifier?

Accuracy and Error Rate

22
New cards

What is accuracy defined as?

Correct predictions divided by total predictions

23
New cards

What is error rate defined as?

One minus accuracy, or the fraction of predictions that are wrong

24
New cards

Why can accuracy be misleading on imbalanced datasets?

A model predicting the majority class always gets high accuracy without actually learning anything

25
New cards

What does a confusion matrix show?

A breakdown of true positives, false negatives, false positives, and true negatives for a classifier

26
New cards

What does Recall or Sensitivity measure?

How many actual positives the model correctly identified, calculated as TP divided by TP plus FN

27
New cards

What is Specificity?

The proportion of actual negatives correctly identified, calculated as TN divided by TN plus FP

28
New cards

What is a model experiencing when it is too simple, has high training error and high test error, and fails to capture patterns?

Underfitting, also called high bias

29
New cards

What is a model experiencing when it is too complex, has low training error but high test error, and memorizes noise?

Overfitting, also called high variance

30
New cards

What does total prediction error approximately equal in the bias-variance tradeoff?

Bias squared plus Variance plus Irreducible Noise

31
New cards

What does a large gap between low training error and high validation error signal?

Overfitting

32
New cards

What does it signal when both training error and validation error remain high?

Underfitting, meaning more complexity or features should be added

33
New cards

Why is model validation necessary?

Because a model's training accuracy is an optimistic and biased estimate of real-world performance

34
New cards

What is a Hold-Out split strategy?

Dividing data into 80 percent training and 20 percent testing, which is fast but sensitive to how the split falls

35
New cards

What is k-Fold Cross-Validation?

A strategy where data is split into k folds and each fold takes a turn as the validation set, producing a more stable and reliable estimate

36
New cards

What is data leakage in model evaluation?

When preprocessing is fitted on the full dataset before splitting, causing test data to bleed into training

37
New cards

What is the rule of thumb regarding the test set during model development?

Never touch the test set until the model is finalized, as using it for tuning causes data leakage

38
New cards

What are the core components of an intelligent system?

Sensors or Input Layer, Knowledge Base, Inference Engine, and Output or Actuators

39
New cards

What does the Inference Engine do?

It applies logic or learned patterns to input data to derive conclusions or predictions

40
New cards

What does the Knowledge Base store?

Domain knowledge, rules, or trained model parameters that the system uses to reason

41
New cards

What is the IPO model used for?

It is the universal framework for describing how any system transforms raw data into meaningful results through Input, Process, and Output stages

42
New cards

What are the static components of an intelligent system?

The Knowledge Base, User Interface, and Explanation Module

43
New cards

What are the dynamic components of an intelligent system?

Working Memory, Learning Module, and Control Strategy

44
New cards

Which model selection factors favor choosing a simpler model?

Limited training data, high interpretability requirements, real-time inference constraints, low computational budget, and well-structured problem domains

45
New cards

Which model selection factors favor choosing a more complex model?

Large high-dimensional datasets, unstructured data such as images or text, accuracy as the primary metric, offline or batch processing, and sufficient compute resources

46
New cards

What is a Decision Tree best used for?

Classification with interpretable rules, though it risks overfitting on small datasets

47
New cards

What are Neural Networks ideal for?

Complex pattern recognition tasks like image and speech processing, requiring large datasets and significant compute

48
New cards

What is k-Nearest Neighbors best suited for?

Small datasets with well-defined feature spaces, though it is slow at prediction time

49
New cards

What are Rule-Based Systems best for?

Problems where domain knowledge is well-established, requiring explicit IF-THEN logic that is highly interpretable and deterministic

50
New cards

What are the three types of bias that can enter an AI system?

Training Data Bias, Algorithmic Bias, and Feedback Loop Bias

51
New cards

What is Training Data Bias?

When historical data reflects societal prejudices and the model learns and replicates those patterns

52
New cards

What is Algorithmic Bias?

When the design of the algorithm itself favors certain outcomes

53
New cards

What is Feedback Loop Bias?

When biased outputs influence future data, reinforcing the original bias

54
New cards

What are the four definitions of fairness in AI?

Individual Fairness, Group Fairness, Counterfactual Fairness, and Calibration

55
New cards

What is a key insight about satisfying all fairness definitions simultaneously?

It is mathematically impossible to satisfy all fairness definitions at once, so designers must make deliberate and justified trade-offs

56
New cards

What are the five core principles of Responsible AI?

Transparency, Accountability, Safety, Fairness, and Privacy

57
New cards

What is the Black Box problem in AI?

Many powerful AI models, particularly deep neural networks, are opaque and their internal reasoning is difficult or impossible to interpret

58
New cards

What are explainability techniques used in AI?

LIME which stands for Locally Interpretable Model-agnostic Explanations, SHAP which assigns feature importance scores, and Attention Maps which visualize which input features the model focused on

59
New cards

What is the EU AI Act?

The world's first comprehensive AI law, enacted in 2024, which classifies AI systems by risk level with strict requirements for high-risk applications

60
New cards

What are privacy-preserving AI techniques?

Differential Privacy, Federated Learning, and Homomorphic Encryption

61
New cards

What is Differential Privacy?

A technique that adds carefully calibrated mathematical noise to data or model outputs, making it statistically impossible to identify any individual's contribution

62
New cards

What is Federated Learning?

A technique that trains models across decentralized devices without transferring raw data to a central server

63
New cards

What is Homomorphic Encryption?

A technique that allows computations to be performed on encrypted data without decrypting it first

64
New cards

What are the key privacy principles in data protection?

Data Minimization, Informed Consent, Right to Explanation, and Purpose Limitation

65
New cards

True or False Prior knowledge is needed to give AI predictions

True

66
New cards

True or False Logic contains concepts and knowledge bases

True

67
New cards

True or False Semi-structured data has custom tags

True

68
New cards

True or False Unstructured problems have clear interfaces

False

69
New cards

True or False Metadata describes or has data

True

70
New cards

True or False Images and videos are unstructured data

False

71
New cards

True or False Data users inform managers of specific areas

True

72
New cards

True or False Intelligent systems are best used in areas with no data available

False

73
New cards

True or False Structured data has no predefined format

True

74
New cards

True or False Intelligent systems work without human input

False

75
New cards

True or False Semi-structured problems require human judgment and needs

True

76
New cards

True or False Intelligent systems can learn from experience

True