slides created by Leon Barrett

Slides:



Advertisements
Similar presentations
Artificial Intelligence 12. Two Layer ANNs
Advertisements

Phantom Limb Phenomena. Hand movement observation by individuals born without hands: phantom limb experience constrains visual limb perception. Funk M,
Neural Network I Week 7 1. Team Homework Assignment #9 Read pp. 327 – 334 and the Week 7 slide. Design a neural network for XOR (Exclusive OR) Explore.
Learning Targets I will discuss the definition of memory. I will learn about the science behind how memory works.
Artificial Neural Networks
Biological and Artificial Neurons Michael J. Watts
Machine Learning: Connectionist McCulloch-Pitts Neuron Perceptrons Multilayer Networks Support Vector Machines Feedback Networks Hopfield Networks.
1 Part I Artificial Neural Networks Sofia Nikitaki.
CS 182 Sections Created by Eva Mok Modified by JGM 2/2/05 Q:What did the hippocampus say during its retirement speech? A:“Thanks for the memories”
CS 182 Sections Eva Mok Feb 11, 2004 ( bad puns alert!
CS 182 Sections 101 & 102 slides created by: Eva Mok modified by JGM Jan. 25, 2006.
Neural Networks. Background - Neural Networks can be : Biological - Biological models Artificial - Artificial models - Desire to produce artificial systems.
Artificial Neural Networks
Artificial Neural Nets and AI Connectionism Sub symbolic reasoning.
Development Psychology/Biology Introduction Brain development and behaviour development should go together We can look at this in three ways Structural.
Artificial Neural Network Yalong Li Some slides are from _24_2011_ann.pdf.
1 Chapter 11 Neural Networks. 2 Chapter 11 Contents (1) l Biological Neurons l Artificial Neurons l Perceptrons l Multilayer Neural Networks l Backpropagation.
ADVANCED PERCEPTRON LEARNING David Kauchak CS 451 – Fall 2013.
Computational Modeling of Cognitive Activity Prof. Larry M. Manevitz Course Slides: 2012.
© SEMINAR ON ARTIFICIAL NEURAL NETWORK AND ITS APPLICATIONS By Mr. Susant Kumar Behera Mrs. I. Vijaya.
Announcements a3 is out, due 2/15 11:59pm Please please please start early quiz will be graded in about a week. a1 will be graded shortly—use glookup to.
Ten MC Questions taken from the Text, slides and described in class presentation. COSC 4426 AJ Boulay Julia Johnson.
Dr.Abeer Mahmoud ARTIFICIAL INTELLIGENCE (CS 461D) Dr. Abeer Mahmoud Computer science Department Princess Nora University Faculty of Computer & Information.
COSC 4426 AJ Boulay Julia Johnson Artificial Neural Networks: Introduction to Soft Computing (Textbook)
Perceptrons Michael J. Watts
CSC321: Neural Networks Lecture 1: What are neural networks? Geoffrey Hinton
Where are we? What’s left? HW 7 due on Wednesday Finish learning this week. Exam #4 next Monday Final Exam is a take-home handed out next Friday in class.
CS 182 Sections Leon Barrett ( bad puns alert!
CS 182 Leon Barrett Thanks to Eva Mok and Joe Makin Q:What did the Hollywood film director say after he finished making a movie about myelin? A:“That’s.
CS 182 Sections Leon Barrett (
CS 182 Leon Barrett and Will Chang Thanks to Eva Mok and Joe Makin Q:What did the Hollywood film director say after he finished making a movie about myelin?
CS 182 Sections 101 & 102 Leon Barrett Jan 25, 2008
Learning with Perceptrons and Neural Networks
Advanced information retreival
Brain development.
Computer Science and Engineering, Seoul National University
Lecture 2. Basic Neurons To model neurons we have to idealize them:
ECE 471/571 - Lecture 15 Hopfield Network 03/29/17.
Artificial Intelligence (CS 370D)
Other Classification Models: Neural Network
Real Neurons Cell structures Cell body Dendrites Axon
Neural Networks CS 446 Machine Learning.
Dr. Unnikrishnan P.C. Professor, EEE
Simple learning in connectionist networks
CS621: Artificial Intelligence
ECE 471/571 - Lecture 19 Hopfield Network.
CS623: Introduction to Computing with Neural Nets (lecture-2)
Biological Neuron Cell body Dendrites Axon Impulses Synapses
Perception: Structures
OVERVIEW OF BIOLOGICAL NEURONS
Computational Modeling of Cognitive Activity
CSE (c) S. Tanimoto, 2004 Neural Networks
Neural Networks Geoff Hulten.
Artificial Intelligence Lecture No. 28
CSE (c) S. Tanimoto, 2001 Neural Networks
Backpropagation.
CSE (c) S. Tanimoto, 2002 Neural Networks
Artificial neurons Nisheeth 10th January 2019.
Artificial Intelligence 12. Two Layer ANNs
Simple learning in connectionist networks
ARTIFICIAL NEURAL networks.
Artificial Neural Networks
CSE (c) S. Tanimoto, 2007 Neural Nets
Introduction to Neural Network
The McCullough-Pitts Neuron
CS621: Artificial Intelligence Lecture 22-23: Sigmoid neuron, Backpropagation (Lecture 20 and 21 taken by Anup on Graphical Models) Pushpak Bhattacharyya.
Active, dynamic, interactive, system
David Kauchak CS158 – Spring 2019

EE 193/Comp 150 Computing with Biological Parts
Presentation transcript:

slides created by Leon Barrett CS 182 Sections 101 & 102 slides created by Leon Barrett with thanks to Eva Mok and Joe Makin Feb. 1, 2008

Annoucements a1 is due at 5pm on Tuesday Remember to submit it electronically a2 out on Tuesday

Where we stand Last Week Neural development Connectionist modeling Coming up Psycholinguistics Brain imaging Neural nets and Backprop

a1 questions?

Flexor- Crossed Extensor Reflex (Sheridan 1900) Reflex Circuits With Inter-neurons Painful Stimulus

Neural development How do neurons develop? Pre-neuron cells split into neurons Neurons migrate Neuron axons follow chemical clues to destinations Pruning of synapses What is a chemical gradient? How does a neuron use one? changing concentration; neuron uses this as a guide

Neural development What is the neural plate? the neural tube? The neural plate is a layer of cells that will become neurons In early development, the embryo curls up laterally, so the neural plate is curled into a tube What is a critical period? Can you name one? A period outside of which certain learning cannot occur There are critical periods at least for: Language Vision

Neural Tube formation

Neural development When you consume alcohol, thousands of neurons die. How does your brain deal with this? Duplicated, inhibited connections New neurons don't (usually) grow, but new connections can grow Humans come pre-wired for learning Some plasticity Activity dependent fine tuning Long term memory Pre-wiring biases the way we learn

Neural modeling Why model neurons? to understand them and the brain to try to accomplish what they do Why model them in different ways? to do those different things science: modeling at different levels allows different types of understanding

Neuron models What is a McCullough-Pitts neuron? Calculate “activation” by weighted sum of inputs Use a function to map activation to output What sorts of output functions does it use? Linear – why is this bad? Threshold Sigmoid – smoothed threshold

The McCullough-Pitts Neuron xi f yj wij yi xi = ∑j wij yj yi = f(xi) ti : target yj: output from unit j Wij: weight on connection from j to i xi: weighted sum of input to unit i

Let’s try an example: the AND function w01 y0 i2 b=1 w02 w0b 1 y0 i2 i1 Assume you have a threshold function centered at the origin What should you set w01, w02 and w0b to be so that you can get the right answers for y0?

Many answers would work y = f (w01i1 + w02i2 + w0bb) recall the threshold function the separation happens when w01i1 + w02i2 + w0bb = 0 move things around and you get i2 = - (w01/w02)i1 - (w0bb/w02) i2 i1

Neuron models If neurons spike, what biological feature do non-integer values correspond to? Firing rate What is unbiological about the McCullough-Pitts model? Time is ignored Weights are unlimited Hugely simplifies computations Some people propose that real neurons do complicated quantum-mechanical things

Neuron models How does a Sigma-Pi neuron differ from a McCullough-Pitts neuron? It multiplies sets of inputs

Sigma-Pi units

Sigma-Pi Unit