Artificial Intelligence and Deep Learning Flashcards

1
Q

Definition

A

Systems that think like humans, act like humans, think rationally, act rationally

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

Thinking humanly

A

the cognitive model approach

  • programs that think like humans → towards theory of mind
  • psychological experiments and brain imaging → get into working process inside human brain
  • necessarily based on experimental investigation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

acting humanly

A

the Turing Test

  • operational test for intelligent behaviour, written communication
  • major components of AI: knowledge, reasoning, language, understanding & learning
  • cannot be analysed mathematically
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

thinking rationally

A

the “Laws of Thought” approach

  • Aristotele: right thinking by providing patterns for argument strucutres
  • suppose to govern operation of the mind → field of logic
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

acting rationally

A

the ration Agent

  • agent → agere = to do
  • doint the right thing (rational behaviour) → not necessarily involves thinking → reflexes
  • rational agent → acts to achieve best /best expected outcome
  • “laws of thought” approach
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Important Historical events

A
  • 1943: McCullon & Pitts develop Boolean circuit model of the brain → model of artificial neurons → any computable function could be computed by some network of connected neurons
  • 1949: Hebb → connection strenght between neurons
  • 1950: Turing → Turing test, machine learning, genetic algorithms and reinforced learning
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

State of the Art

A

Robotic vehicles → driverless robotic car STANLEY
Speech recognition → book flight at United Airlines
Autonomous planning and scheduling
game playing
Spam fighting
logistics planning
Robotics → robotic vacuum cleaner
Machine translation
Newer: Apple Siri, Eugene Goostman, Amazon Alexa, Microsoft Tay, Google A.I. Alpha Go

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

Subfields in A.I:

A
  • Natural language procession
  • Knowledge representation
  • Automated reasoning → using stored information to answer questions
  • Machine learning → adpating to new circumstances
  • Computer vision
  • Robotics
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Neuronal Network hypothesis

A
  • mental activity = electromagnetic activit
  • McCullen & Pitt’s Neuron model
    → fires when inputs exceed some threshold
    → neural network = collection of such units, connected together by direct links
    → properties determined by topology & neurons
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Neural Network strucutre

A
  • link from neuron i to j → propagate the activity from ai to aj
  • each link: numeric weight wi,j → determines strenght & sight of connection
  • each neuron j first computes weighted sum of its inputs & then it applied activation function g to this sum to derive the output
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Perception learning rule

A
wi + r (y-aj) * ai
r = learning rate
y = desired output
aj = current output
ai = current input
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Neural Network Architecutre

A
  • feed-forward networks → connection in one direction → function of current input
  • multi-player networks → arranged in layers → not connected layers = hidden
  • recurrent networks feed its output back into inputs
    → represent dynamic systems → might reach stable state, exhibits oscillations or chaotic behaviour
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Interpretability problem

A

We can describe how artificial networks compute their outputs, but we are far away from explainng its decisions in understanable way

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

three main classes of explainable artificial networks

A

controlling the black box
- guarantee relationships btw two variables → more transpartent models, that help to control neural network
probing the black box
- perturb inputs → find out what affects descicion making → can reveal cause for one decision, but not the overall logic
embracing the darkness
- help understand other NN → combine generator with classifier

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

controlling the blackbox and exploiting the darkness

A

real time explanation generation → computational model learns to translate agent’s states and actions into natural language

  1. Neural network plays game “Fogger”
  2. Human subject plays game & describes tactic
  3. 2nd NN translates from code to english
  4. translational network wired into original game-playing network
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Support Vector Machine SVM

A
  • “supervised learning” for classification or regression problems
  • defines hyperplane that generates largest margin
17
Q

Radial Basis Function RBF

A

Gamma: inverse of the radius of influence
- similar to bandwith filter → exlusion & inclusion
- high vs low values affect complexity
Cost function (c)
- adjust penalty for incorrect classification
- high values - smaller margin error, complex decision function
- low values - simpler decision function, saving computation time, lower training accuracy
→ RBF consideret “universal kernel” = can learn/overfit anything

18
Q

Artificial neural network Definition

A
  • attempt to mimic brain function
  • have input, hidden and output layer
  • number of outputs related to number of classes
19
Q

Steps in artificial neural network

A
  • Initialize weights
  • implement forward propagation
  • compute cost
  • back propagate
  • use optimization function to minimize cost function