ARTIFICIAL INTELLIGENCE Course Notes (DLBDSEAIS01)

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/43

flashcard set

Earn XP

Description and Tags

Practice flashcards covering key concepts from the AI course notes, including history, modern AI, reinforcement learning, NLP, and computer vision.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

44 Terms

1
New cards

When and where was the term 'artificial intelligence' first coined?

In 1956 at the Dartmouth Summer Research Project on Artificial Intelligence (the Dartmouth Conference).

2
New cards

Who coined the term 'artificial intelligence'?

John McCarthy.

3
New cards

What is the purpose of the Turing Test?

To determine whether a machine's conversational ability is indistinguishable from a human.

4
New cards

What are the three core components of an expert system?

Knowledge base, inference engine, and user interface.

5
New cards

What is the period referred to as Nascent Artificial Intelligence and its focus?

1956–1974; the symbolic AI and knowledge representation era.

6
New cards

What caused the first AI winter (1974–1980)?

Over-optimistic expectations (e.g., machine translation) and insufficient data/computing power.

7
New cards

What caused the second AI winter (1987–1993)?

Collapse of the Lisp machine market and limits in expert systems’ scalability and reliability.

8
New cards

What is an AI winter?

Periods when interest, research activity, and funding in AI decreased.

9
New cards

Name three factors identified as critical for AI progress.

Algorithms/experience, computing capacity, and data availability.

10
New cards

What are two landmark early expert systems and their domains?

Dendral (organic chemistry) and MYCIN (medical diagnoses).

11
New cards

What are the three main types of expert-system knowledge representations?

Case-based, Rule-based, and Decision-tree representations.

12
New cards

Which institutions and researchers were pivotal in early AI history ?

Dartmouth College and MIT were key early centers; notable researchers include Turing, McCarthy, Minsky, and Chomsky.

13
New cards

What is the difference between symbolic AI and connectionist approaches?

Symbolic AI uses explicit rules and logic; connectionist approaches use neural networks and learning from data.

14
New cards

What event around 2012 signaled a resurgence of AI progress?

The rise of deep learning and connectionist approaches achieving state-of-the-art results.

15
New cards

What are ANI and AGI?

ANI: Artificial Narrow Intelligence (weak AI); AGI: Artificial General Intelligence (strong AI, domain-independent).

16
New cards

Name the major application industries highlighted for AI adoption in modern AI systems.

High Tech/Telecom, Automotive/Assembly, Financial Services, Business/Legal/Professional Services, Healthcare/Pharma, Consumer Goods/Retail.

17
New cards

What data splits are typically used to evaluate AI models?

Training set, Development/Validation set, and Test set.

18
New cards

What metrics are commonly used for binary classification?

Accuracy, Precision, Recall, and F-score.

19
New cards

What is a confusion matrix?

A table classifying results into True Positives, False Positives, True Negatives, and False Negatives.

20
New cards

What are the core components of reinforcement learning as defined in the notes?

Agent, Environment, States, Actions, Rewards, Policy, and Value.

21
New cards

What does the Markov property imply in MDPS?

Future states depend only on the current state and action, not on past states.

22
New cards

What is the Bellman equation used for in RL?

Computing the expected reward of taking an action in a state, including immediate and future rewards.

23
New cards

What is the Q-learning update formula?

Q(s,a) := r + γ max_a' Q(s',a').

24
New cards

What is Temporal Difference (TD) learning?

A model-free method that updates predictions based on the difference between successive predictions.

25
New cards

What is the role of exploration vs exploitation in Q-learning?

Exploration chooses random actions to learn about the environment; exploitation uses the Q-table to choose the best-known action.

26
New cards

What are the three NLP subdomains introduced in the notes?

Speech recognition, Natural Language Understanding (NLU), and Natural Language Generation (NLG).

27
New cards

What is TextRank and its purpose?

An unsupervised extractive text summarization method based on sentence similarity and graph ranking.

28
New cards

What is Word2Vec and its two training models?

Word2Vec is a neural-network-based word embedding method with CBOW (predicts a word from context) and Skip-gram (predicts context words from a word).

29
New cards

What are the common word-vector and document-vector techniques mentioned?

Word2Vec, TF-IDF, and GloVe.

30
New cards

What are USE and BERT in sentence representations?

USE (Universal Sentence Encoder) and BERT are pre-trained models for obtaining sentence embeddings; BERT uses masked language modeling and next-sentence prediction.

31
New cards

What is TF-IDF and what do TF and IDF stand for?

TF-IDF weights terms by their frequency in a document (TF) and inversely by how common the term is across documents (IDF).

32
New cards

What is semantic segmentation?

Pixel-level labeling where each pixel is assigned to a class (e.g., chair, table, background).

33
New cards

What role do CRFs play in segmentation?

Conditional Random Fields refine segmentation maps by modeling label dependencies.

34
New cards

What are common CV feature detectors and descriptors mentioned?

Edges, corners, and blobs; detectors like Canny edge detector and Harris corner detector; descriptors like BRIEF, ORB, SIFT, SURF.

35
New cards

What is the general CNN-based approach to semantic segmentation?

A CNN for feature extraction with a deconvolution/upsampling path to produce per-pixel class labels.

36
New cards

What is camera calibration and which parameters does it estimate?

Calibration estimates intrinsic (focal length, optical center, distortion) and extrinsic (rotation/translation) parameters.

37
New cards

What is the Brown-Conrady model used for?

Modeling and correcting lens distortion in camera calibration.

38
New cards

What is Zhang’s checkerboard calibration method?

A flexible camera calibration approach using checkerboard patterns across multiple images to estimate intrinsic/extrinsic parameters and distortion.

39
New cards

What is the difference between intrinsic and extrinsic camera parameters?

Intrinsic: internal camera properties like focal length and distortion; Extrinsic: camera's orientation and position in the world.

40
New cards

Why is feature matching important and what distances are used?

To find corresponding features across images; Euclidean distance for real-valued descriptors, Hamming distance for binary descriptors like BRIEF; FLANN for efficient matching.

41
New cards

What are some practical CV use cases for semantic segmentation?

Autonomous driving (vehicles, lanes, pedestrians), geosensing (land use), pose estimation, and medical imaging.

42
New cards

What is pivot machine translation used for?

Pivot machine translation is a technique that uses a third language as a bridge to translate text or speech between two languages that do not have a direct translation pair.

43
New cards

What is binary classification in machine learning?

Binary classification is a task in machine learning where the goal is to categorize input data into one of two distinct classes (e.g., spam or not-spam, true or false, disease or no-disease).

44
New cards

What is the purpose of the Harris Corner Detector?

Used in computer vision to identify corners and other salient features in an image, which are stable points useful for tasks like feature tracking, image registration, and object recognition.