Introduction Flashcards

1
Q

The true challenge to AI proved to be…

A

Solving tasks that are easy for people to perform, but hard for people to describe formally (intuitive, automatic tasks)

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

Knowledge base approach to AI

A

AI approach that enables a computer to reason automatically about statements in a formal language using logical inference rules

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

Machine Learning

A

The ability for AI systems to acquire their own knowledge by extracting patterns from raw data.

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

Performance of simple ML algorithms (logistic regression/naive Bayes) depends heavily upon…

A

the representation of the data they are given

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

Feature

A

A specific piece of information included in the representation of the data

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

Many AI tasks can be solved by…

A

designing the right set of features to extract for that task, then providing these features to a simple ML algorithm

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

Representation Learning

A

Uses ML to discover not only the mapping from representation to output but also the representation itself.

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

When designing features or algorithms for learning features, our goal is usually…

A

to separate the factors of variation that explain the observed data

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

Deep learning solves the difficulties in representation learning by…

A

introducing representations that are expressed in terms of other, simpler representations.

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

Deep learning enables the computer to…

A

build complex concepts out of simpler concepts

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

Another perspective on deep learning is…

A

the depth enables the computer to learn a multistep program. Each layer of representation is the state of the computer’s memory after executing another set of instructions in parallel. Later instructions can refer back to results of previous instructions. The state is more like pointers and counters - it has nothing to do with the input content, but helps the model organize its processing.

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

2 main ways of measuring the depth of a model

A

1) The length of the longest path through a flow chart that describes how to compute each output given the model’s inputs 2) The depth of the graph describing how concepts are related to each other

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

Consensus about how much depth a model requires to qualify as “deep”

A

There is none

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

Deep learning is the study of…

A

models that involve a greater amount of composition of either learned functions or learned concepts than traditional machine learning does

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

Deep learning is a particular kind of ML that…

A

achieves great power and flexibility by representing the world as a nested hierarchy of concepts, with each concept defined in relation to simpler concepts, and more abstract representations computed in terms of less abstract ones.

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

3 waves of deep learning development

A

1) Cybernetics in the 1940s-1960s 2) Connectionism in the 1980s-1990s 3) Current resurgence as deep learning since 2006

17
Q

Artificial Neural Networks

A

One of the names that deep learning has gone by, emphasizing the perspective that models are engineered systems inspired by the biological brain. While the earliest algorithms were intended to model how learning happens in the brain, and neuroscience is still regarded as an important source of inspiration, it is no longer the predominant guide for the field (primarily because we do not understand enough about the brain).