AI Foundations Flashcards

(23 cards)

1
Q

Artificial Intelligence (AI)

A

leveraging AGI to solve specific objectives and problems

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Artificial General Intelligence (AGI)

A

A 1 to 1 from machine to human use cases

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Text-Related Artificial Intelligence Purpose

A

used to extract and understand text so it can generate

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Text-Related ML Process

A

Tokenization of words → Padding →Embedding

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Tokenization

A

converting words into numbers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Padding

A

length of sentences can vary so we pad shorter sentences with 0’s for vector-computational efficiency

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Embedding

A

the ID from Tokenization becomes a vector to be compared for similarity

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Visual of Tokenization → Padding → Embedding

A

“Hello World” → [101,2023,102] → [101,2023,102,0] → [(.1,.3.-2),(2,3,4),(…)]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Recurrent Neural Networks

A

processes data sequentially and stores hidden states

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Long Short Term-Memory

A

processes data sequentially and can retain the context better w/ gates

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Transformers

A

processes data in parallel. Uses concept of self attention to better understand

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Variational Auto-encoders (VAE)

A

compresses data into a latent space and reconstructs it while learning a probabilistic representation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Waveform

A

neural networks designed to generate or process raw audio directly

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Siamese

A

two twin networks w/ shared weights that learn to measure similarity between pairs of inputs by comparison w/ each other

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Convolutional Neural Networks

A

detects patters in images and learn hierarchical representations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

YOLO

A

process the image and detects objects within the image

17
Q

Generative Adversarial Networks

A

generates real looking images

18
Q

Machine Learning

A

algorithms learned from past data and predict outcome on new data

19
Q

Machine Learning Types

A

Supervised, Unsupervised, Reinforcement Training

20
Q

Supervised Machine Learning

A

extracting rules from existing data

21
Q

Unsupervised Machine Learning

A

extract trends to get insights

22
Q

Reinforcement Training

A

use a “credits” system to determine good/bad actions

23
Q

Deep Learning

A

uses complex data w/ neural networks to predict outcomes and generate data