26 Pages

021.connectionist

Course: FEBR 479, Fall 2009
School: Portland
Rating:
 
 
 
 
 

Word Count: 1802

Document Preview

Reed Connectionist Dave approach to AI neural networks, neuron model perceptrons threshold logic, perceptron training, convergence theorem single layer vs. multi-layer backpropagation stepwise vs. continuous activation function associative memory Hopfield networks, parallel relaxation Symbolic vs. sub-symbolic AI recall: Good Old-Fashioned AI is inherently symbolic Physical Symbol System Hypothesis: A...

Register Now

Unformatted Document Excerpt

Coursehero >> Oregon >> Portland >> FEBR 479

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Reed Connectionist Dave approach to AI neural networks, neuron model perceptrons threshold logic, perceptron training, convergence theorem single layer vs. multi-layer backpropagation stepwise vs. continuous activation function associative memory Hopfield networks, parallel relaxation Symbolic vs. sub-symbolic AI recall: Good Old-Fashioned AI is inherently symbolic Physical Symbol System Hypothesis: A necessary and sufficient condition for intelligence is the representation and manipulation of symbols. alternatives to symbolic AI connectionist models based on a brain metaphor model individual neurons and their connections properties: parallel, distributed, sub-symbolic examples: neural nets, associative memories emergent models based on an evolution metaphor potential solutions compete and evolve properties: massively parallel, complex behavior evolves out of simple behavior examples: genetic algorithms, cellular automata, artificial life Connectionist models (neural nets) humans lack the speed & memory of computers yet humans are capable of complex reasoning/action maybe our brain architecture is well-suited for certain tasks general brain architecture: many (relatively) slow neurons, interconnected dendrites serve as input devices (receive electrical impulses from other neurons) cell body "sums" inputs from the dendrites (possibly inhibiting or exciting) if sum exceeds some threshold, the neuron fires an output impulse along axon Brain metaphor connectionist models are based on the brain metaphor large number of simple, neuron-like processing elements large number of weighted connections between neurons note: the weights encode information, not symbols! parallel, distributed control emphasis on learning brief history of neural nets 1940's 1950's & 1960's 1970's 1980's & 1990's theoretical birth of neural networks McCulloch & Pitts (1943), Hebb (1949) optimistic development using computer models Minsky (50's), Rosenblatt (60's) DEAD Minsky & Papert showed serious limitations REBIRTH new models, new techniques Backpropagation, Hopfield nets Artificial neurons McCulloch & Pitts (1943) described an artificial neuron inputs are either excitatory (+1) or inhibitory (-1) each input has a weight associated with it the activation function multiplies each input value by its weight if the sum of the weighted inputs >= , then the neuron fires (returns 1), else doesn't fire (returns 1) w 1 if wixi >= , output = 1 w 2 n w if wixi < , output -1 ... x1 x2 xn Computation via activation function can view an artificial neuron as a computational element accepts or classifies an input if the output fires INPUT: x1 = 1, x2 = 1 .75*1 + .75*1 = 1.5 >= 1 OUTPUT: 1 1 .75 .75 INPUT: x1 = 1, x2 = -1 .75*1 + .75*-1 = 0 < 1 INPUT: x1 = -1, x2 = 1 OUTPUT: -1 x1 x2 .75*-1 + .75*1 = 0 < 1 INPUT: x1 = -1, x2 = -1 OUTPUT: -1 .75*-1 + .75*-1 = -1.5 < 1 OUTPUT: -1 this neuron computes the AND function In-class exercise specify weights and thresholds to compute OR INPUT: x1 = 1, x2 = 1 w1*1 + w2*1 >= OUTPUT: 1 w 1 INPUT: x1 = 1, x2 = -1 w 2 w1*1 + w2*-1 >= INPUT: x1 = -1, x2 = 1 OUTPUT: 1 x1 x2 w1*-1 + w2*1 >= INPUT: x1 = -1, x2 = -1 w1*-1 + w2*-1 < OUTPUT: 1 OUTPUT: -1 Normalizing thresholds to make life more uniform, can normalize the threshold to 0 simply add an additional input x0 = 1, w0 = - w 1 0 w 2 n - w 1 w w w 2 n ... ... x1 x2 xn 1 x1 x2 xn advantage: threshold = 0 for all neurons wixi >= - *1 + wixi >= 0 Perceptrons Rosenblatt (1958) devised a learning algorithm for artificial neurons given a training set (example inputs & corresponding desired outputs) 1. start with some initial weights 2. iterate through the training set, collect incorrect examples 3. if all examples correct, then DONE 4. otherwise, update the weights for each incorrect example if x1, ...,xn should have fired but didn't, <= n) wi += xi (0 <= i if x1, ...,xn shouldn't have fired but did, <= n) wi -= xi (0 <= i 1. GO TO 2 Example: perceptron learning Suppose we want to train a perceptron to compute AND training set: x1 = 1, x2 = 1 x1 = 1, x2 = -1 -1 x1 = -1, x2 = 1 -1 x1 = -1, x2 = -1 -1 1 0 -0.9 0.6 0.2 randomly, let: w0 = -0.9, w1 = 0.6, w2 = 0.2 using these weights: x1 = 1, x2 = 1: x1 = 1, x2 = -1: x1 = -1, x2 = 1: x1 = -1, x2 = -1: -0.9*1 + 0.6*1 + 0.2*1 -0.9*1 + 0.6*1 + 0.2*-1 -0.9*1 + 0.6*-1 + 0.2*1 -0.9*1 + 0.6*-1 + 0.2*-1 = = = = -0.1 -1 -0.5 -1 -1.3 -1 -1.7 -1 WRONG OK OK OK 1 x1 x2 new weights: w0 = -0.9 + 1 = 0.1 w1 = 0.6 + 1 = 1.6 w2 = 0.2 + 1 = 1.2 Example: perceptron learning (cont.) 0 0.1 1.6 1.2 using these updated weights: x1 = 1, x2 = 1: x1 = 1, x2 = -1: x1 = -1, x2 = 1: x1 = -1, x2 = -1: 0.1*1 + 1.6*1 + 1.2*1 0.1*1 + 1.6*1 + 1.2*-1 0.1*1 + 1.6*-1 + 1.2*1 0.1*1 + 1.6*-1 + 1.2*-1 = = = = 2.9 1 0.5 1 -0.3 -1 -2.7 -1 OK WRONG OK OK 1 x1 x2 new weights: w0 = 0.1 1 = -0.9 w1 = 1.6 1 = 0.6 w2 = 1.2 + 1 = 2.2 0 -0.9 0.6 2.2 using these updated weights: x1 = 1, x2 = 1: x1 = 1, x2 = -1: x1 = -1, x2 = 1: x1 = -1, x2 = -1: -0.9*1 + 0.6*1 + 2.2*1 -0.9*1 + 0.6*1 + 2.2*-1 -0.9*1 + 0.6*-1 + 2.2*1 -0.9*1 + 0.6*-1 + 2.2*-1 = = = = 1.9 1 -2.5 -1 0.7 1 -3.7 -1 OK OK WRONG OK 1 x1 x2 new weights: w0 = -0.9 1 = -1.9 w1 = 0.6 + 1 = 1.6 w2 = 2.2 1 = 1.2 Example: perceptron learning (cont.) 0 -1.9 1.6 1.2 using these updated weights: x1 = 1, x2 = 1: x1 = 1, x2 = -1: x1 = -1, x2 = 1: x1 = -1, x2 = -1: -1.9*1 + 1.6*1 + 1.2*1 -1.9*1 + 1.6*1 + 1.2*-1 -1.9*1 + 1.6*-1 + 1.2*1 -1.9*1 + 1.6*-1 + 1.2*-1 = = = = 0.9 1 -1.5 -1 -2.3 -1 -4.7 -1 OK OK OK OK 1 x1 x2 DONE! EXERCISE: train a perceptron to compute OR key reason for interest in perceptrons: Convergence Perceptron Convergence Theorem The perceptron learning algorithm will always find weights to classify the inputs if such a set of weights exists. Minsky & Papert showed such weights exist if and only if the problem is linearly separable intuition: consider the case with 2 inputs, x1 and x2 -1 -1 if you can draw a line and separate the accepting & non-accepting examples, then linearly separable x1 -1 1 1 1 1 the intuition generalizes: for n inputs, must be able to separate with an (n-1)-dimensional plane. x2 Linearly separable x1 1 -1 AND function 1 x1 1 1 OR function 1 -1 -1 -1 1 1 x2 1 x2 why does this make sense? firing depends on w0 + w1x1 + w2x2 >= 0 border case is when i.e., a line the training algorithm simply shifts the line around (by changing w0 + w1x1 + w2x2 = 0 the equation of x2 = x1 (-w1/w2) + (-w0 /w2) Inadequacy of perceptrons inadequacy of perceptrons is due to the fact that many simple problems are not linearly separable x1 1 1 XOR function -1 -1 1 x2 -0.1 however, can compute XOR by introducing a new, hidden unit -3.5 1.5 1 1.5 1.5 1 x1 x2 Hidden units the addition of hidden units allows the network to develop complex feature detectors (i.e., internal representations) e.g., Optical Character Recognition (OCR) perhaps one hidden unit "looks for" a horizontal bar another hidden unit "looks for" a diagonal the combination of specific hidden units indicates a 7 Building multi-layer nets smaller example: can combine perceptrons to perform more complex computations (or classifications) 3-layer neural net 2 input nodes 1 hidden node 2 output nodes 1.5 1 .75 -0.1 .75 1.5 1.5 -3.5 RESULT? 1 1 x1 x2 HINT: left output node is AND right output node is XOR FULL ADDER Hidden units & learning every classification problem has a perceptron solution if enough hidden layers are used i.e., multi-layer networks can compute anything (recall: can simulate AND, OR, NOT gates) expressiveness is not the problem learning is! it is not known how to systematically find solutions the Perceptron Learning Algorithm can't adjust weights between levels Minsky & Papert's results about the "inadequacy" of perceptrons pretty much killed neural net research in the 1970's rebirth in the 1980's due to several developments faster, more parallel computers new learning algorithms e.g., backpropagation new architectures e.g., Hopfield nets Backpropagation nets backpropagation nets are multi-layer networks normalize inputs between 0 (inhibit) and 1 (excite) utilize a continuous activation function perceptrons utilize a stepwise activation function output = 1 if sum >= 0 0 if sum < 0 backpropagation nets utilize a continuous activation function output = 1/(1 + e-sum) Backpropagation example (XOR) x1 = 1, x2 = 1 sum(H1) = -2.2 + 5.7 + 5.7 = 9.2, output(H1) = 0.99 sum(H2) = -4.8 + 3.2 + 3.2 = 1.6, output(H2) = 0.83 sum = -2.8 + (0.99*6.4) + (0.83*-7) = -2.28, output = 0.09 2.8 6.4 2.2 -7 H 5.7 1 1 1 x1 = 1, x2 = 0 sum(H1) = -2.2 + 5.7 + 0 = 3.5, output(H1) = 0.97 sum(H2) = -4.8 + 3.2 + 0 = -1.6, output(H2) = 0.17 sum = -2.8 + (0.97*6.4) + (0.17*-7) = 2.22, output = 0.90 3.2 H 3.2 2 4.8 5.7 x1 = 0, x2 = 1 sum(H1) = -2.2 + 0 + 5.7 = 3.5, output(H1) = 0.97 sum(H2) = -4.8 + 0 + 3.2 = -1.6, output(H2) = 0.17 sum = -2.8 + (0.97*6.4) + (0.17*-7) = 2.22, output = 0.90 x1 x2 x1 = 0, x2 = 0 sum(H1) = -2.2 + 0 + 0 = -2.2, output(H1) = 0.10 sum(H2) = -4.8 + 0 + 0 = -4.8, output(H2) = 0.01 sum = -2.8 + (0.10*6.4) + (0.01*-7) = -2.23, output = 0.10 Backpropagation learning there exists a systematic method for adjusting weights, but no global convergence theorem (as was the case for perceptrons) backpropagation (backward propagation of error) vaguely stated select arbitrary weights pick the first test case make a forward pass, from inputs to output compute an error estimate and make a backward pass, adjusting weights to reduce the error repeat for the next test case testing & propagating for all training cases is known as an epoch despite the lack of a convergence theorem, backpropagation works well in practice however, many epochs may be required for convergence Problems/challenges in neural nets research learning problem can the network be trained to solve a given problem? if not linearly separable, no guarantee (but backprop effective in practice) architecture problem are there useful architectures for solving a given problem? most applications use a 3-layer (input, hidden, output), fully-connected net scaling problem how can training time be minimized? difficult/complex problems may require thousands of epochs generalization problem how know if the trained network will behave "reasonably" on new inputs? cross-validation oft...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Portland - FEBR - 479
Abduction, Uncertainty, and Probabilistic ReasoningYun Peng UMBC1Introduction Abduction is a reasoning process that tries to form plausible explanations for abnormal observations Abduction is distinct different from deduction and induction Abd
San Diego State - M - 345
F Sl
San Diego State - M - 345
Music 345 - Fall 2007 MW - 10 a.m.CLASS OVERVIEWExam One 10/17-18/07 35%Course: Instructor: Period: Schedule #: Beg Date:Exam Two 12/10-14/07 35%Music 345 Jack D. Fall 2007 24813 Aug 22, 2007 Title:Concerts Various Dates 20%Writing 11/7-8/
San Diego State - M - 345
Music 345 - Fall 2007 MW - 11 a.m.CLASS OVERVIEWExam One 10/17-18/07 35%Course: Instructor: Period: Schedule #: Beg Date:Exam Two 12/10-14/07 35%Music 345 Jack D. Fall 2007 24802 Aug 22, 2007Concerts Various Dates 20%Title: Logan Open U: Me
San Diego State - M - 345
Music 345 - Fall 2007 TTh - 2 p.m.CLASS OVERVIEWGrade Range 92 - 100 = A 90 - 91 = A-Number of StudentsExam One 10/17-18/07 35%Course: Instructor: Period: Schedule #: Beg Date:Exam Two 12/10-14/07 35%Music 345 Jack D. Fall 2007 24850 Aug 2
San Diego State - M - 345
Music 345World Music in Contemporary Life Overview Where are the Course Resources?trumpet.sdsu.edu/M345/ logan_M345.htmlMusic 345Currently Enrolled StudentsAdd Codes. at end of class session today .Event Schedule and AnnouncementsMusic
San Diego State - M - 345
Music 345 - Fall 2008 MW - 10 a.m.CLASS OVERVIEWExam One 35%Course: Instructor: Period: Schedule #:Exam Two 35%Music 345 Jack D. Fall 2008 23306 Title:Concerts 20%Writing 10%Extra Credit 10%Total % 110%World Music in Contemporary Lif
San Diego State - M - 345
Music 345 - Fall 2008 MW - 8 a.m.CLASS OVERVIEWExam One 35%Course: Instructor: Period: Schedule #:Exam Two 35%Music 345 Jack D. Fall 2008 23295Concerts 20%Title: Logan Open U: Meet Days: Yes MWriting 10%Extra Credit 10%Total % 110%W
San Diego State - M - 345
Music 345 attd: concerts 1-7 ` Roster Report On Selective CategoriesCourse #: Music 345 Course Title: World Music Day/Time: MWAttd 1 N/A Attd2 N/A Attd3 N/AInstructor: Dr. Logan Description: all sections Term/Year: SP 2005Attd4 N/A Attd5 N/A Att
San Diego State - M - 345
Music 345 - Fall 2007 TTh - 12:30 p.m.CLASS OVERVIEWGrade Range 92 - 100 = A 90 - 91 = A-Number of Students 0 0 0 0 0 0 0 0 0 0 0 50Exam One 10/17-18/07 35%Course: Instructor: Period: Schedule #: Beg Date:Exam Two 12/10-14/07 35%Music 345
San Diego State - M - 345
Music 345 - Fall 2007 MW - 10 a.m.CL ASS OVERV IEWExam One 10/17-18/07 35%Course: Instructor: Period: Schedule #: Beg Date:Exam Two 12/10-14/07 35%Music 345 Jack D. Fall 2007 24813 Aug 22, 2007 Title:Concerts Various Dates 20%Writing 11/7-
San Diego State - M - 345
Music 345 - Fall 2007 TTh - 2 p.m.CL ASS OVERV IEWGrade Range 92 - 100 = A 90 - 91 = A-Number of StudentsExam One 10/17-18/07 35%Course: Instructor: Period: Schedule #: Beg Date:Exam Two 12/10-14/07 35%Music 345 Jack D. Fall 2007 24850 Aug
San Diego State - M - 345
Music 345 - Spring 2008 MW - 11 a.m.CLASS OVERVIEWExam One 35%Course: Instructor: Period: Schedule #:Exam Two 35%Music 345 Jack D. Fall 2007 23166Concerts 20%Title: Logan Open U: Meet Days: Yes MWWriting 10%Extra Credit 10%Total % 110
San Diego State - M - 345
Music 345 - Spring 2008 TTh - 12:30 p.m.CLASS OVERVIEWExam One 35%Course: Instructor: Period: Schedule #:Exam Two 35%Music 345 Jack D. Spring 2008 23170Concerts 20%Title: Logan Open U: Meet Days: Yes TThWriting 10%Extra Credit 10%Tota
San Diego State - M - 345
Music 345 - Spring 2008 MW - 10 a.m.CLASS OVERVIEWExam One 35%Course: Instructor: Period: Schedule #:Exam Two 35%Music 345 Jack D. Spring 2008 23155Concerts 20%Title: Logan Open U: Meet Days: Yes MWWriting 10%Extra Credit 10%Total % 1
San Diego State - M - 345
Music 345 - Spring 2008 TTh - 2 p.m.CLASS OVERVIEWExam One 35%Course: Instructor: Period: Schedule #:Exam Two 35%Music 345 Jack D. Spring 2008 23181Concerts 20%Title: Logan Open U: Meet Days: Yes TThWriting 10%Extra Credit 10%Total %
Portland - CLASS - 479
Portland Cyber TheatreMarek Perkowski Part 1Graduate Seminar, Friday, May 7, 2004Portland Cyber TheatreFunded by Korea Institute of Science and Technology, Daejeon, Republic of Korea and Intel Corporation, Hillsboro ContributorsMartin Lukac, J
Portland - CLASS - 479
San Diego State - M - 151
Music 151 - Fall 2008 TTh - 9:30 a.m.Examination IExamination 2Examination 3Extra Credit Paper 4TotalFinal GradeRed ID 62310 23279 17680 44228 66071 65893 57353 40328 56182 90646 64053 65161 50648 94897 03536 66395 61749 84115 57777 928
Citadel - ELEC - 423
THE CITADEL THE MILITARY COLLEGE OF SOUTH CAROLINA Department of Electrical and Computer Engineering ELEC 423 Digital Signal Processing Homework Assignment 5 1) Problem 4.3 (text) 2) Problem 4.5 (text) 3) Problem 4.7 (text) 4) Problem 4.11 (text) 5)
Maryland - COURSES - 382
AREC 382 Computer-Based Analysis in Agricultural and Resource Economics Spring 2009 Prof. Anna Alberini Assignment 7 Due May 11, 2009 at 2:00pm (Sorry, absolutely no extensions this time.) Note: This is your last assignment, and the one that carries
San Diego State - COMPE - 475
XF8279 Programmable Keyboard Display InterfaceSeptember 16, 1999 Product SpecificationAllianceCORETM FactsDevice Family CLBs Used Core Core+Ext logic Core I/O Core1 Core+Ext logic System Clock fmax Device Features Used Documentation Core Specific
Maryland - MATH - 115
Math 115 Exam 6 Sample 1 4. Suppose tan x = (a) sec x (b) cos x (c) sin x (d) cos(2x) (e) sin x -7 4 3 11 1 2and x lies in quadrant 3. Determine each of the following.1. Find the value of cossin169 66+ sin3 11cos169 66.2. Assumin
Virginia Tech - CS - 2104
By ALESSANDRA DEVITO DA CUNHA and DAVID GREATHEADDOES PERSONALITY MATTER? AN ANALYSIS OF CODE-REVIEW ABILITYDeveloping a better understanding of the mental processes leading to success or failure in code review.here is at least anecdotal evidence
Virginia Tech - CS - 2104
Personality Types, Learning Styles, and an Agile Approach to Software Engineering EducationLucas Layman Travis Cornwell Laurie WilliamsNorth Carolina State University, Department of Computer Science Campus Box 8207, Raleigh, NC 27695 +1-919-513-508
San Diego State - MATH - 121
Spring 2001SolutionsFunctions and Quadratics1. a. f (0) = 0, f (2) = 10, g(-2) = -4, g(3) = 1 b. f (g(t) = 2t2 - 7t + 6, g(f (t) = 2t2 + t - 2 c. f (g(1) = 1, g(f (1) = 1 2. a. Range y 121/4 = 30.25 b. Domain -5 &lt; x &lt; 6 3. x = -5, -3 5. x = 1
Portland - CLASS - 573
Behavioral EquivalenceSequential Machine Theory Prof. K. J. HintzDepartment of Electrical and Computer EngineeringLecture 7Modifications and updates by Marek PerkowskiBehavioral Equivalence&quot;Black Box&quot; View of Machines1I1M12O1I2M2
Portland - CLASS - 573
xvv @fuvf@fjfcn@vfdXVVvf@ ffggfDfsgfg@RvXvV df qfvvvfv rvfGvddvcf fvfqvfsffsX @u`nvffcv@ fc0 gvg f@fuv@Rfc @ @nAvvvff&amp;@Bffc v y sqq Tdvfcdz
Portland - CLASS - 573
Introduction to Electrical and Computer EngineeringEngin112 Lecture 35Control LogicMaciej Ciesielski Department of Electrical and Computer Engineering 12/06/06Recap from last lectureProgrammable logicRegister Transfer Level (RTL) design Alg
Portland - CLASS - 573
DSP ProcessorsDSP systems and, in particular, real-time DSP systems contain mainly repetitious application of data-driven behaviours defined by mathematical algorithms under strict timing constraints DSP processors are designed for repetitive, numer
Portland - CLASS - 573
%!PS-Adobe-3.0 %Title: Microsoft PowerPoint - 150.4Lect.ppt %Creator: Windows NT 4.0 %CreationDate: 16:27 10/1/1999 %Pages: (atend) %BoundingBox: 10 15 601 783 %LanguageLevel: 2 %DocumentNeededFonts: (atend) %DocumentSuppliedFonts: (atend) %EndCommen
Portland - CLASS - 573
Last revision: 8/25/03Programmable Digital Signal Processor (PDSP): A SurveySurin Kittitornkun and Yu Hen HuUniversity of Wisconsin - Madison Department of Electrical and Computer Engineering 1415 Engineering Drive Madison, WI 53706 hu@engr.wisc
Portland - CLASS - 573
NORTHEASTERN UNIVERSITY Graduate School of Engineering Thesis Title: Parallel-Beam Backprojection: an FPGA Implementation Optimized for Medical Imaging Author: Department: Srdjan Coric Electrical and Computer EngineeringApproved for Thesis Requirem
Portland - CLASS - 573
Field Programmable Gate Arrays for Radar Front-End Digital Signal ProcessingbyTyler J. MoellerSubmitted to the Department of Electrical Engineering and Computer Science in Partial Fulfillment of the Requirements for the Degrees of Bachelor of Sci
Portland - CLASS - 573
%!PS-Adobe-2.0 %Creator: dvips 5.55 Copyright 1986, 1994 Radical Eye Software %Title: oxford_paper.dvi %CreationDate: Tue Aug 8 16:22:59 1995 %Pages: 11 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSCommandLine: dvips oxford_paper.d
Portland - CLASS - 573
%!PS-Adobe-3.0 %Creator: groff version 1.09 %CreationDate: Thu Mar 14 11:15:33 1996 %DocumentNeededResources: font Times-Bold %+ font Times-Italic %+ font Times-Roman %+ font Symbol %DocumentSuppliedResources: procset grops 1.09 0 %+ font Symbol-Slan
Portland - CLASS - 573
Portland - CLASS - 573
Portland - CLASS - 573
A CAD SYSTEM FOR AUTOMATIC SYNTHESIS OF GENERALIZED ASYNCHRONOUS CIRCUITSMing-Der Shieh, Jyh-Ming Horng, Ming-Hwa Sheu and Yu-Chin HsuDepartment of Electronic EngineeringNational Yni Institute of Technology ulnTouliu, Y d i n , Taiwan, R.O.C.E
Portland - CLASS - 573
Portland - CLASS - 573
Optimization of Multi-Valued Multi-Level NetworksM. Gao, J-H. Jiang, Y. Jiang, Y. Li, A. Mishchenko*, S. Sinha, T. Villa*, and R. Brayton Electrical Engineering and Computer Sciences Dept. University of California, Berkeley CA 94720 * Portland State
Portland - CLASS - 573
Abstract MachinesPeter Hines - York UniversityRandom Thoughts on Abstract MachinesPeter HinesUniversity of York (2006)http:/www-users.cs.york.ac.uk/phines/AbstractMachine.psBellairs Research, March 2006Slide: 1Abstract MachinesPeter
Portland - CLASS - 573
Laboratoire de Microlectronique e Facult de Sciences Appliques e e Universit Catholique e de LouvainState Minimization and State Assignment of Finite State Machines: their relationship and their impact on the implementationMinimisation d'Etats et
Portland - CLASS - 573
From optimal state estimation to efficient quantum algorithmsAndrew Childs Caltech Institute for Quantum Information in collaboration with Dave Bacon University of Washington Wim van Dam UC Santa Barbara quant-ph/0501044, quant-ph/0504083, quant-ph/
Portland - CLASS - 573
I# $)&amp;(Yo $'&quot;&amp; %$&quot;!$ # u $3C&quot;!ou usH4 ( $ q G$ $'2 u C 3 u u $Bq6 uo sq s 4q)s Au@ 7{ @&amp; q@s G t98s q &quot;o s$ 7u6 s$3 q s54 3210 () G@u ) E FD s7j{s@7qu7s{s{q@us7$qsQ7 Q uq7 o{s 7{$mnq w$~ r l u{ 7q$ 7
Portland - CLASS - 573
Causal Dependencies in Parallel Composition of Stochastic ProcessesLing Cheung and Martijn HendriksDepartment of Computer Science, University of Nijmegen P.O. Box 9010, 6500 GL Nijmegen, The Netherlands {lcheung,martijnh}@cs.ru.nlAbstract. We pre
Portland - CLASS - 573
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: ecmtb2005.dvi %Pages: 12 %PageOrder: Ascend %BoundingBox: 0 0 596 842 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -o tmp.ps ecmtb2005 %DV
Portland - CLASS - 573
%!PS-Adobe-2.0 %Creator: dvipsk 5.58f Copyright 1986, 1994 Radical Eye Software %Title: e.dvi %Pages: 91 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSCommandLine: /pkgs/TeX-3.1415/sun4os4/dvips e %DVIPSParameters: dpi=300, compress
Portland - CLASS - 573
DIGITAL DESIGN AUTOMATION: FINITE STATE MACHINE DESIGNMarek Perkowski Department of Electrical Engineering Portland State University P. O. Box 751 Portland, OR 97207 The currently used technologies for design of digital circuits include, among other
Portland - CLASS - 573
%!PS-Adobe-2.0 %Creator: dvipsk 5.58f Copyright 1986, 1994 Radical Eye Software %Title: final-iccad-99.dvi %Pages: 7 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %DocumentFonts: Times-Roman CMSY8 CMSY10 Times-Italic CMSY6 CMMI10 CMR7 %+ CMSY7 CMR10 C
Portland - CLASS - 573
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86e Copyright 2001 Radical Eye Software %Title: SFM04.dvi %Pages: 32 %PageOrder: Ascend %BoundingBox: 0 0 596 842 %DocumentFonts: Helvetica Helvetica-Bold Helvetica-Oblique %+ Helvetica-BoldOblique Times-Roman Time
Portland - CLASS - 573
%!PS-Adobe-2.0 %Creator: dvips(k) 5.82 Copyright 1998 Radical Eye Software %Title: MAIN.dvi %Pages: 71 %PageOrder: Ascend %BoundingBox: 0 0 596 842 %DocumentFonts: Helvetica %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -o
Portland - CLASS - 573
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;Error&gt;&lt;Code&gt;InternalError&lt;/Code&gt;&lt;Message&gt;We encountered an internal error. Please try again.&lt;/Message&gt;&lt;RequestId&gt;60E979AB39FBECEF&lt;/RequestId&gt;&lt;HostId&gt;1C+dmu0RPMATU7xWPcXOBt8AwWzG3jDE0DWcEJyJAA2zEKrFk9LivY79LW/92
Portland - CLASS - 573
Chu Spaces: Automata with quantum aspectsVaughan R. Pratt Dept. of Computer Science Stanford University Stanford, CA 94305 pratt@cs.stanford.edu September, 1994AbstractChu spaces are a recently developed model of concurrent computation extending
Portland - CLASS - 573
#.#/#[o #d.#P#EJJg;rBP 4M]\)#g?#.#lO?f[o^%m2&gt;#qRomW MB_#'inX^o[/w_#_nW$;&amp;#rwlKNo7 u#TJl# QrhV#*Vj*OOjQ?}jVi3W^8ur| &lt;z{6bb'6#T;y 'I;lH#hY{ #QbM#,$#~Dd{|#M #$zqy{7d]W#b#,7r~m#z]o8#&gt;tw _IDUz69rc.?zu1/Q]A&quot;Dg|8(Z5Wd$l# #jz&amp;#dXpOf\m6$7yK#wdUK68]#6 #OmZ
Portland - CLASS - 573
Zentralblatt MATH Database 1931 2007c 2007 European Mathematical Society, FIZ Karlsruhe &amp; Springer-Verlag0946.68095 Kuske, Dietrich Asynchronous cellular automata and asynchronous automata for pomsets. (English) Sangiorgi, Davide (ed.) et al., CO
Portland - CLASS - 573
%!PS-Adobe-2.0 %Creator: dvipsk 5.58f Copyright 1986, 1994 Radical Eye Software %Title: thesis.dvi %Pages: 321 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %DocumentFonts: CMSY10 CMMI12 CMR8 CMR12 CMSY8 CMMI10 CMR10 CMTT12 %+ CMMI8 CMEX10 CMMI6 CMR6
Portland - EE - 572
%!PS-Adobe-2.0 %Creator: dvipsk 5.58f Copyright 1986, 1994 Radical Eye Software %Title: p33.dvi %Pages: 6 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSCommandLine: /pkgs/TeX-3.1415/sun4os5/dvips p33 %DVIPSParameters: dpi=300, compr
Portland - EE - 572
%!PS-Adobe-2.0 %Creator: dvipsk 5.58f Copyright 1986, 1994 Radical Eye Software %Title: xxx.dvi %Pages: 6 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSCommandLine: /pkgs/TeX-3.1415/sun4os5/dvips xxx %DVIPSParameters: dpi=300, compr
Portland - EE - 572
%!PS-Adobe-2.0 %Creator: dvipsk 5.58f Copyright 1986, 1994 Radical Eye Software %Title: presentation.dvi %Pages: 12 %PageOrder: Ascend %Orientation: Landscape %BoundingBox: 0 0 612 792 %DocumentPaperSizes: Letter %EndComments %DVIPSCommandLine: dvips
Nevada - PUB - 492