<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Neurdon</title>
	
	<link>http://www.neurdon.com</link>
	<description>We put the sci in sci-fi</description>
	<lastBuildDate>Fri, 23 Jul 2010 12:19:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Neurdon" /><feedburner:info uri="neurdon" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>Neurdon</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Modeling the HP memristor with SPICE</title>
		<link>http://feedproxy.google.com/~r/Neurdon/~3/afeJyydN-4Q/</link>
		<comments>http://www.neurdon.com/2010/07/23/modeling-the-hp-memristor-with-spice/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 11:01:06 +0000</pubDate>
		<dc:creator>eerolehtonen</dc:creator>
				<category><![CDATA[Compute Me]]></category>
		<category><![CDATA[DARPA SyNAPSE]]></category>
		<category><![CDATA[memristor]]></category>
		<category><![CDATA[SPICE model]]></category>

		<guid isPermaLink="false">http://www.neurdon.com/?p=1411</guid>
		<description><![CDATA[After writing several memristor models with SPICE last week, I decided to post a short tutorial here on the subject. I'll concentrate on modeling the memristor introduced in the Nature Nanoletters' article Memristive Switching mechanism for metal/oxide/metal nanodevices by Yang et al., published in July 2008.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.neurdon.com/wp-content/uploads/2010/07/Cayenne_small2.jpg"><img class="alignleft size-full wp-image-1443" src="http://www.neurdon.com/wp-content/uploads/2010/07/Cayenne_small2.jpg" alt="" width="92" height="192" /></a>After writing several memristor models with SPICE last week, I decided to post a short tutorial here on the subject. I&#8217;ll concentrate on modeling the memristor introduced in the Nature Nanoletters&#8217; article <em>Memristive Switching mechanism for metal/oxide/metal nanodevices </em>by Yang et al., published in July 2008. More specifically the model is an enhanced version of the one derived in the article <em>CNN Using Memristors for Neighborhood Connections</em> (IEEE CNNA 2010) by me and Mika Laiho.<span id="more-1411"></span></p>
<p>First of all, for those not familiar with SPICE, I recommend downloading the free LTSPICE IV by Linear Technology. It is a light weight analog electronic circuit simulator, and the code written here will be compatible with it. The memristor model  is a subcircuit  comprising of several ideal components and a couple of math formulas.</p>
<p>Being an element with memory, a memristor requires a state variable w, which by normalization can be assumed to lie in the interval [0,1]. Let&#8217;s assume that the time derivative of w can be written in the separable form</p>
<p>dw/dt = a*f(w)*g(V),</p>
<p>where a is a constant, f and g are some functions and V is the voltage across the memristor. The <em>window function </em>f controls the way w changes in different parts of [0,1]. In our model f is hard-limited to the interval [0.05,0.95]  and satisfies</p>
<p>f(w) = 1-(2w-1)^2.</p>
<p>In other words the rate of change of w decreases as w tends to its minimum or maximum value. Note that without the hard-limiting the rate of change would go to zero, which would effectively make the memristor&#8217;s memory infinite. Let us now concentrate on the other function in the differential equation, namely g(V). The memristor investigated in [Yang et al.] programs very nonlinearly with respect to the voltage V, so  let us model it by a sinh-function as</p>
<p>g(V) = sinh(b*V).</p>
<p>Now, the trick to implement the dw/dt -law in SPICE is to model w as the voltage over a capacitor with capacitance, say, 1F. The change in w is then yielded by a voltage dependent current source (symbol G in SPICE) which adds or removes a certain amount of charge to w. This certain amount is, in turn, determined by computing the functions f and g.</p>
<p>In [Yang et al.] the I-V characteristics of the device were approximated by</p>
<p>I = w^n*c1*sinh(d1*V)+c2*(exp(d2*V)-1),</p>
<p>so let us use that expression as well. The implementation of the I-V characteristics in SPICE is straightforward: just add a voltage dependent current source with this value between the terminals of the device. The real problem is now to find appropriate values for the constants a,b,c1,c2,d1,d2 and n, and here we would need a lot of data to work with. In the following I use values that give a similar I-V curve than the one obtained from experiments. Altogether, the SPICE model hpmemristor.lib looks like</p>
<p><strong>.SUBCKT hpmemristor P M PARAMS:</strong><strong><br />
</strong><strong> + a=25 b=8 c1=9 c2=0.01 d1=2 d2=4 s=1u n=4 p=1 lmin=0.05 lmax=0.95</strong><strong><br />
</strong><strong> *State variable:</strong><strong><br />
</strong><strong> Gsv 0 w value={f(V(w),V(P,M))*g(V(P,M))}</strong><strong><br />
</strong><strong> Csv w 0 1</strong><strong><br />
</strong><strong> .IC V(w) 0.05</strong><strong><br />
</strong><strong> *Output:</strong><strong><br />
</strong><strong> Gmem P M value = {s*((V(w)**n)*c1*sinh(d1*V(P,M))+c2*(exp(d2*V(P,M))-1))}</strong></p>
<p><strong> </strong></p>
<p><strong>*Auxiliary functions:</strong><strong><br />
</strong><strong> .func sign2(var) = {(sgn(var)+1)/2}</strong><strong><br />
</strong><strong> .func trunc(var1,var2) = {(sign2(var1-lmin)+sign2(var2))*(sign2(lmax-var1)+sign2(-var2))/2}</strong><strong><br />
</strong><strong> .func f(var1,var2) = {trunc(var1,var2)*(1-(2*var1-1)**(2*p))}</strong><strong><br />
</strong><strong> .func g(var) = {a*sinh(b*var)}</strong></p>
<p><strong> </strong></p>
<p><strong>.ENDS hpmemristor</strong></p>
<p>Pretty self-explanatory, right? Note that Gsv and Csv are the current source and capacitor needed in the state variable, respectively, while Gmem is the actual &#8220;output&#8221; current source of the memristor. More specifically,</p>
<p><strong>Gsv 0 w value={f(V(w),V(P,M))*g(V(P,M))}</strong></p>
<p>means that there is a current source between 0 (ground node) and some node called w, and its value is f(V(w),V(P,M))*g(V(P,M)) amps. The value  f(V(w),V(P,M))*g(V(P,M)) denotes the RHS of the differential equation, the constant a has been embedded in the function g, and f needs for a technical reason two variables (this has to do with limiting ourselves to [0.05,0.95]). V(x) gives the voltage of the node x respect to to ground and V(P,M) gives the voltage between the terminals of the memristor. Oh yes, one more thing: .IC V(x) 0.05 means that the initial value of w is assumed to be 0.05. Once you get the model running in LTSPICE, you should get an I-V curve looking something like</p>
<p><a href="http://www.neurdon.com/wp-content/uploads/2010/07/ivcurv.jpg"><img class="aligncenter size-medium wp-image-1429" src="http://www.neurdon.com/wp-content/uploads/2010/07/ivcurv-300x253.jpg" alt="" width="300" height="253" /></a></p>
<p>That&#8217;s it. With different choices for functions f and g (and different parameters) you can model all sorts of memristive devices.</p>
<img src="http://feeds.feedburner.com/~r/Neurdon/~4/afeJyydN-4Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.neurdon.com/2010/07/23/modeling-the-hp-memristor-with-spice/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.neurdon.com/2010/07/23/modeling-the-hp-memristor-with-spice/</feedburner:origLink></item>
		<item>
		<title>From the ghost of emergent properties past</title>
		<link>http://feedproxy.google.com/~r/Neurdon/~3/1uAWLnB8s0c/</link>
		<comments>http://www.neurdon.com/2010/07/22/from-the-ghost-of-emergent-properties-past/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 20:30:50 +0000</pubDate>
		<dc:creator>Tim Barnes</dc:creator>
				<category><![CDATA[Biophys-Ed]]></category>
		<category><![CDATA[Compute Me]]></category>

		<guid isPermaLink="false">http://www.neurdon.com/?p=1290</guid>
		<description><![CDATA[Insightful people have noted that the brain has been difficult to understand from simple measurements because of its relative irreducibility to single neuron dynamics, suspected to be a result of emergent properties.  Line up a few hundred million transistors very carefully and you get a fast but &#8217;stupid&#8217; processor; bag a bunch of proteins with [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify"><a href="http://en.wikipedia.org/wiki/D%27Arcy_Wentworth_Thompson#On_Growth_and_Form"><img class="alignleft" src="http://upload.wikimedia.org/wikipedia/en/f/fc/On_Growth_and_Form.JPG" alt="On Growth and Form - front cover" width="186" height="294" /></a>Insightful people have noted that the brain has been difficult to understand from simple measurements because of its relative irreducibility to single neuron dynamics, suspected to be a result of <a href="http://en.wikipedia.org/wiki/Emergence">emergent properties</a>.  Line up a few hundred million transistors very carefully and you get a fast but &#8217;stupid&#8217; processor; bag a bunch of proteins with a lipid membrane and you&#8217;re still far from a functioning cell; the list goes on.  Something about the whole, goes the cliche, is greater than the sum of its parts.  I&#8217;ve traditionally only heard about this concept as it applies to neuroscience, but I recently came across a great quote from <a href="http://en.wikipedia.org/wiki/D%27Arcy_Wentworth_Thompson">D&#8217;Arcy Thompson</a> that could use some fresh air on the Internet.  In terms of cell biology, he warns against thinking of a multicellular organism in terms of its constituent cells, arguing instead that the biophysics is better understood in terms of the whole tissue and the <em>interactions</em> between its pieces.  I&#8217;m not sure whether or not this was added in the revised edition of <a href="http://en.wikipedia.org/wiki/D%27Arcy_Wentworth_Thompson#On_Growth_and_Form"><em>On Growth and Form</em></a> (1942), but I&#8217;d like to think that this was written in the first edition, published in 1917:<span id="more-1290"></span></p>
<p style="padding-left: 30px;padding-right: 30px;text-align: justify">But if the cell acts, after this fashion, as a whole, each part interacting of necessity with the rest, the same is certainly true of the entire multicellular organism: as Schwann said of old, in very precise and adequate words, “the whole organism subsists only by means of the <em>reciprocal action</em> of the single elementary parts.”  As Wilson says again, “the physiological autonomy of the individual cell falls into the background… and the apparently composite character which the multicellular organism may exhibit is owing to a secondary distribution of its energies among local centres of action.”  It is here that the homology breaks down which is so often drawn, and overdrawn, between the unicellular organism and the individual cell of the metazoon.</p>
<p style="padding-left: 30px;padding-right: 30px;text-align: justify">Whitman, Adam Sedgwick, and others have lost no opportunity of warning us against a too literal acceptation of the cell-theory, against the view that the multicellular organism is a colony (or as Haeckel called it, in the case of the plant, a “republic”) of independent units of life… Hofmeister and Sachs have taught us that in the plant the growth of the mass, the growth of the organ, is the primary fact, that “cell formation is a phenomenon very general in organic life, but still only of secondary significance.”  “Comparative embryology,” says Whitman, “reminds us at every turn that the organism dominates cell-formation, using for the same purpose one, several, or many cells, massing its material and directing its movements and shaping its organs, as if cells did not exist.”…</p>
<p style="padding-left: 30px;padding-right: 30px;text-align: justify">…Discussed almost wholly from the concrete, or morphological point of view, the question has for the most part been made to turn on whether actual protoplasmic continuity can be demonstrated between one cell and another, whether the organism be an actual reticulum, or syncytium.  But from the dynamical point of view the question is much simpler.  We then deal not with material continuity, not with little bridges of connecting protoplasm, but with a continuity of forces, a comprehensive field of force, which runs through and through the entire organism and is by no means restricted in its passage to a protoplasmic continuum… As Whitman says, “the fact that physiological unity is not broken by cell-boundaries is confirmed in so many ways that it must be accepted as one of the fundamental truths of biology.”</p>
<p style="padding-left: 30px;padding-right: 30px">—D&#8217;Arcy Thompson, <em>On Growth and Form: The Complete Revised Edition</em>, pp. 343–345</p>
<p style="text-align: justify">The last paragraph is especially appropriate in light of a recent <a href="http://www.cell.com/neuron/abstract/S0896-6273%2810%2900463-0">publication</a> that gives evidence for a possible interaction between cortical network activity and its global, “endogenous electric field.”</p>
<img src="http://feeds.feedburner.com/~r/Neurdon/~4/1uAWLnB8s0c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.neurdon.com/2010/07/22/from-the-ghost-of-emergent-properties-past/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.neurdon.com/2010/07/22/from-the-ghost-of-emergent-properties-past/</feedburner:origLink></item>
		<item>
		<title>ARM processors and neural networks</title>
		<link>http://feedproxy.google.com/~r/Neurdon/~3/HDs3_um64ew/</link>
		<comments>http://www.neurdon.com/2010/07/13/arm-processors-and-neural-networks/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 10:39:38 +0000</pubDate>
		<dc:creator>Massimiliano Versace</dc:creator>
				<category><![CDATA[Compute Me]]></category>
		<category><![CDATA[DARPA SyNAPSE]]></category>
		<category><![CDATA[arm processor]]></category>
		<category><![CDATA[neuromorphic technology]]></category>
		<category><![CDATA[spiking neurons]]></category>

		<guid isPermaLink="false">http://www.neurdon.com/?p=1386</guid>
		<description><![CDATA[If you had doubts before starting to read Neurdon, I think that by now you have come to the realization that there are as many neuroscientists that use computers than computer scientists that want to &#8220;use&#8221; neuroscience. This post is another example of the latter: Steve Furber,  Professor of Computer Engineering at the University [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.neurdon.com/wp-content/uploads/2010/07/arm-processor.jpg"><img src="http://www.neurdon.com/wp-content/uploads/2010/07/arm-processor.jpg" alt="" title="arm-processor" width="168" height="171" class="alignleft size-full wp-image-1387" /></a>If you had doubts before starting to read Neurdon, I think that by now you have come to the realization that there are as many neuroscientists that use computers than computer scientists that want to &#8220;use&#8221; neuroscience. This <a href="http://www.newelectronics.co.uk/article/Default.aspx?articleid=26279&#038;img=1">post</a> is another example of the latter: Steve Furber,  Professor of Computer Engineering at the University of Manchester and leader of the team that designed the the 32bit ARM microprocessor, is trying to build a large-scale neural simulator out of ARM processors.<span id="more-1386"></span></p>
<p>The ARM processor is the most widely used 32-bit architecture in terms of units produced. Originally conceived as a processor for desktop personal computers, the relatively simple, low power ARM processors have become dominant in the mobile and embedded electronics market as relatively low cost and small microprocessors and microcontrollers. As of 2007, about 98 percent of the more than one billion mobile phones sold each year use at least one ARM processor. </p>
<p>As Furber was trying to implement processes such as associative memory, he found himself reinventing neural networks. &#8220;In the end I threw in the towel: &#8216;Blow this, what I&#8217;m interested in is neural networks&#8221;. The wise decision was then to read about it, and build a simulator for them. </p>
<p><a href="http://www.neurdon.com/wp-content/uploads/2010/07/spinnaker.jpg"><img src="http://www.neurdon.com/wp-content/uploads/2010/07/spinnaker.jpg" alt="" title="spinnaker" width="332" height="315" class="alignleft size-full wp-image-1389" /></a>It turns out that the path that Farber is taken in the design of the so-called SpiNNaker architecture is a wise one: as opposed to design &#8220;rigid&#8221; neural architecture in hardware, the choice is to use software to be as flexible as possible in terms of connectivity and neural dynamics. This comes at a cost of size a power, however: the post does not give much details, but chances are that such a system, based on clever, but still traditional, microprocessors, will be relatively heavy and power hungry. </p>
<p>In any case, this is an interesting post and surely <a href="http://www.newelectronics.co.uk/article/26279/Modelling-the-brain.aspx">worth a read</a>. </p>
<img src="http://feeds.feedburner.com/~r/Neurdon/~4/HDs3_um64ew" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.neurdon.com/2010/07/13/arm-processors-and-neural-networks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.neurdon.com/2010/07/13/arm-processors-and-neural-networks/</feedburner:origLink></item>
		<item>
		<title>What if the idea of the memristor is wrong?</title>
		<link>http://feedproxy.google.com/~r/Neurdon/~3/_dh_XBkMvIA/</link>
		<comments>http://www.neurdon.com/2010/07/04/what-if-the-idea-of-the-memristor-is-wrong/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 13:26:47 +0000</pubDate>
		<dc:creator>blaise</dc:creator>
				<category><![CDATA[DARPA SyNAPSE]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[Leon Chua]]></category>
		<category><![CDATA[memristors]]></category>

		<guid isPermaLink="false">http://www.neurdon.com/?p=1365</guid>
		<description><![CDATA[Note: This posting summarizes some arguments I presented at the 2010 IEEE Symposium on Circuits and Systems. The complete presentation is available at this link.
Much of the recent interest in HP&#8217;s finding the &#8220;missing&#8221; memristor has been based on the presumption that it is correctly interpreted as the “4th fundamental circuit element” after the resistor, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.neurdon.com/wp-content/uploads/2010/07/bg_doubt.jpg"><img src="http://www.neurdon.com/wp-content/uploads/2010/07/bg_doubt.jpg" alt="" title="bg_doubt" width="250" height="197" class="alignleft size-full wp-image-1382" /></a>Note: This posting summarizes some arguments I presented at the 2010 IEEE Symposium on Circuits and Systems. The complete presentation is available at this<a href="http://www.slideshare.net/blaisemouttet/mythical-memristor"> link</a>.</p>
<p>Much of the recent interest in HP&#8217;s finding the &#8220;missing&#8221; memristor has been based on the presumption that it is correctly interpreted as the “4<sup>th</sup> fundamental circuit element” after the resistor, capacitor, and inductor. The original argument from Leon Chua was that there were four ways to link the variables of charge and current to the variables of flux-linkage and voltage. The resistor, capacitor, and inductor represent three ways to link these variables while the memristor was postulated as representing the “missing” link connecting charge and flux-linkage. This may seem like a reasonable argument at first glance but it is not without flaws. <span id="more-1365"></span></p>
<p>For example, the argument assumes that charge, current, voltage, and flux-linkage are the only electrical circuit variables. This is actually not the case. Just as current is defined as the time derivative of charge and flux-linkage is defined as the time integral of voltage, higher order electrical circuit variables may be defined in terms of higher order time derivatives or integrals of current and voltage. For, example the switching speed of an electrical signal may be represented by the time derivative of voltage (dv/dt) and a new (fifth?) circuit variable may be defined in terms of charge vs. dv/dt. Thus a 4-element circuit theory may still be incomplete.</p>
<p>A better framework may be formed from a paper co-authored by Leon Chua in 2009 (<a href="http://arxiv.org/abs/0901.3682">link</a>) presenting an expanded  view of circuit theory based on dynamic systems analysis. included in this framework are memristive systems, memcapacitive systems, and meminductive systems in which resistors and memristors both belong to the memristive system type (the resistor is the special case where the time derivative of the system state is zero and the memristor is the special case when the time derivative of the system state is equal to the current).  Thus, in a similar manner in which ice and water each represent different forms of H<sub>2</sub>O, resistors and memristors each represent different forms of memristive systems.  But water and ice are usually not distinguished as different “fundamental” substances but rather different forms of the same substance. It is in this sense that the idea of the memristor as a new fundamental circuit element is likely to be wrong.</p>
<img src="http://feeds.feedburner.com/~r/Neurdon/~4/_dh_XBkMvIA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.neurdon.com/2010/07/04/what-if-the-idea-of-the-memristor-is-wrong/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.neurdon.com/2010/07/04/what-if-the-idea-of-the-memristor-is-wrong/</feedburner:origLink></item>
		<item>
		<title>The first steps of a neuromorphic chip</title>
		<link>http://feedproxy.google.com/~r/Neurdon/~3/gu_i8-wquyQ/</link>
		<comments>http://www.neurdon.com/2010/06/28/the-first-steps-of-a-neuromorphic-chip/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 09:58:27 +0000</pubDate>
		<dc:creator>Massimiliano Versace</dc:creator>
				<category><![CDATA[Brain Plug]]></category>
		<category><![CDATA[neuromorphic technology]]></category>

		<guid isPermaLink="false">http://www.neurdon.com/?p=1351</guid>
		<description><![CDATA[Neuromorphic technology has several applications, ranging from pattern recognition to robotics. One of the most interesting application domain is neural prosthetics. This is a fascinating twist on the idea of &#8220;borrowing&#8221; from biology: designing chips inspired by the nervous systems, which are then implanted back in a living organism to restore lost functions. 
Ralph Etienne-Cummings, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.neurdon.com/wp-content/uploads/2010/06/robot_legs.jpg"><img src="http://www.neurdon.com/wp-content/uploads/2010/06/robot_legs.jpg" alt="" title="robot_legs" width="214" height="220" class="alignleft size-full wp-image-1380" /></a>Neuromorphic technology has several applications, ranging from pattern recognition to robotics. One of the most interesting application domain is neural prosthetics. This is a fascinating twist on the idea of &#8220;borrowing&#8221; from biology: designing chips inspired by the nervous systems, which are then implanted back in a living organism to restore lost functions. <span id="more-1351"></span></p>
<p><a href="http://etienne.ece.jhu.edu/information/">Ralph Etienne-Cumming</a>s, from Johns Hopkins University, was recently a guest at <a href="http://cns.bu.edu/cns-meeting/conference.html">ICCNS 2010</a> in Boston, where he gave a very interesting overview of the state of the art in neuromorphic computing. In their lab, they design biologically Very Large Scale Integrated (VLSI) technology used to extract information about the environment, study how these systems can be hosted onto robots, and develop brain-machine interfaces and neural prosthesis devices, specifically spinal and cortical prosthesis devices and robotic systems to restore function after injury and for human augmentation. </p>
<p>Ralph is on CNN, explaining how neuromorphic chips mimicking locomotion can one day help patients regain their ability to walk. The video is available <a href="http://edition.cnn.com/video/#/video/international/2010/06/25/earths.frontiers.c.biomimicry.cnn">here</a>. </p>
<img src="http://feeds.feedburner.com/~r/Neurdon/~4/gu_i8-wquyQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.neurdon.com/2010/06/28/the-first-steps-of-a-neuromorphic-chip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.neurdon.com/2010/06/28/the-first-steps-of-a-neuromorphic-chip/</feedburner:origLink></item>
		<item>
		<title>Watson will beat you at Jeopardy</title>
		<link>http://feedproxy.google.com/~r/Neurdon/~3/OuzWkU88fCw/</link>
		<comments>http://www.neurdon.com/2010/06/17/watson-will-beat-you-at-jeopardy/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 16:21:45 +0000</pubDate>
		<dc:creator>Tim Barnes</dc:creator>
				<category><![CDATA[Business-minded]]></category>
		<category><![CDATA[Compute Me]]></category>

		<guid isPermaLink="false">http://www.neurdon.com/?p=1339</guid>
		<description><![CDATA[The New York Times published an article this Monday on I.B.M.&#8217;s bid to have their Watson computer system compete in a number of televised Jeopardy! episodes, a move reminiscent of the famous set of chess matches between I.B.M.&#8217;s Deep Blue and Garry Kasparov. Reading the entire report may take some time but is definitely worthwhile [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://graphics8.nytimes.com/images/2010/06/20/magazine/20Computer-span/20Computer-span-articleLarge-v2.jpg" alt="IBM's Blue Gene computer" width="360" height="229" />The New York Times published an <a href="http://www.nytimes.com/2010/06/20/magazine/20Computer-t.html">article</a> this Monday on I.B.M.&#8217;s bid to have their <a href="http://www.research.ibm.com/deepqa/">Watson</a> computer system compete in a number of televised Jeopardy! episodes, a move reminiscent of the famous set of chess matches between I.B.M.&#8217;s Deep Blue and Garry Kasparov. Reading the entire report may take some time but is definitely worthwhile for anyone who&#8217;s never heard a description of the set of problems involved in building such a computer system.<span id="more-1339"></span></p>
<p>Some highlights that I found intriguing include:</p>
<ul>
<li>Human players have an advantage because they will buzz in immediately after a question is read, even before they&#8217;re confident they have an answer. Watson, on the other hand, will always wait until its confidence has reached a certain threshold. In other words, people may have some meta-algorithm to gauge how likely they are to find an answer at they same time that they search for it.</li>
<li>Watson&#8217;s main advantage is its lack of emotional involvement in the game. I&#8217;ve also heard somewhere that some of the best baseball players are those who think so highly of themselves that a bad play doesn&#8217;t distract them and thus doesn&#8217;t start a string of mistakes.</li>
<li>Watson overcomes a number of implied meanings in the clues by substituting candidate subjects into the phrase and re-running that search against its database. While this method is statistical rather than grammatical, it may capture something more fundamental how we resolve lexical ambiguities as well.</li>
</ul>
<p>In the end, however, “[research lead] Ferrucci&#8217;s main breakthrough was not the design of any single, brilliant new technique for analyzing language. Indeed, many of  the statistical techniques Watson employs were already well known by  computer scientists. One important thing that makes Watson so different  is its enormous speed and memory.” If there is a missing key principle in our understanding of intelligence, then it seems unlikely to expect Watson to uncover such an idea. On the other hand, a question-answering computer expert is a much more general tool than one that plays chess, and I hope to hear results regarding their stated goal of a medical advisory system soon.</p>
<p>The New York Times &#8211; <a href="http://www.nytimes.com/2010/06/20/magazine/20Computer-t.html">What Is I.B.M.&#8217;s Watson?</a> &#8211; June 14, 2010</p>
<img src="http://feeds.feedburner.com/~r/Neurdon/~4/OuzWkU88fCw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.neurdon.com/2010/06/17/watson-will-beat-you-at-jeopardy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.neurdon.com/2010/06/17/watson-will-beat-you-at-jeopardy/</feedburner:origLink></item>
		<item>
		<title>Is Flash Memory Memristive?</title>
		<link>http://feedproxy.google.com/~r/Neurdon/~3/FiajgfnMzSQ/</link>
		<comments>http://www.neurdon.com/2010/06/08/is-flash-memory-memristive/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 16:15:15 +0000</pubDate>
		<dc:creator>blaise</dc:creator>
				<category><![CDATA[Business-minded]]></category>
		<category><![CDATA[DARPA SyNAPSE]]></category>
		<category><![CDATA[flash memory]]></category>
		<category><![CDATA[Leon Chua]]></category>
		<category><![CDATA[memristor]]></category>

		<guid isPermaLink="false">http://www.neurdon.com/?p=1328</guid>
		<description><![CDATA[In the past few years a lot of attention has been directed to &#8220;memristors&#8221; as a new type of memory cell and as a new component for neuromorphic electronic designs. However, currently most proposed neuromorphic designs do not yet use the 2-terminal memristive devices promoted by Leon Chua and HP but rather use more conventional [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.neurdon.com/wp-content/uploads/2010/06/flash.jpg"><img src="http://www.neurdon.com/wp-content/uploads/2010/06/flash.jpg" alt="" title="flash" width="170" height="128" class="alignleft size-full wp-image-1335" /></a>In the past few years a lot of attention has been directed to &#8220;memristors&#8221; as a new type of memory cell and as a new component for neuromorphic electronic designs. However, currently most proposed neuromorphic designs do not yet use the 2-terminal memristive devices promoted by Leon Chua and HP but rather use more conventional electronic circuit components such as the floating gate memory cells used in Flash memory. <span id="more-1328"></span></p>
<p>Thus, if memristance is actually a required property to simulate neurons, it may be useful to attempt to find memristive systems models for floating gate memory cells. In fact it is not too difficult to show that floating gate memory cells may indeed be modeled using an extended memristive system approach (<a href="http://knol.google.com/k/anonymous/an-extended-memristive-system-model/23zgknsxnlchu/8#">see link</a>).  In this case the memristive systems approach of Chua may not have to wait for the development of RRAM or future neuromorphic systems to be developed but may be applied to current neuromorphic systems designs based on floating gate cells. In addition, it may not be unreasonable to state that, due to its connection to the floating gate cell, the memristive systems market is currently a multi-billion dollar industry which will only be extended as 2-terminal RRAM gains traction.</p>
<img src="http://feeds.feedburner.com/~r/Neurdon/~4/FiajgfnMzSQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.neurdon.com/2010/06/08/is-flash-memory-memristive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.neurdon.com/2010/06/08/is-flash-memory-memristive/</feedburner:origLink></item>
		<item>
		<title>Leon Chua visits the Boston University SyNAPSE team</title>
		<link>http://feedproxy.google.com/~r/Neurdon/~3/TDOKbMrPEyI/</link>
		<comments>http://www.neurdon.com/2010/06/02/leon-chua-visits-the-boston-university-synapse-team/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 02:43:20 +0000</pubDate>
		<dc:creator>Massimiliano Versace</dc:creator>
				<category><![CDATA[DARPA SyNAPSE]]></category>
		<category><![CDATA[Leon Chua]]></category>
		<category><![CDATA[memristors]]></category>

		<guid isPermaLink="false">http://www.neurdon.com/?p=1324</guid>
		<description><![CDATA[Leo Chua gave one of his brilliant talks on May 21, 2010 at the ICCNS 2010 conference at the Department of Cognitive and Neural Systems. Just to be sure you get the magnitude of the event: Leon Chua is the first to theorize the existence of memristors with his paper &#8220;Memristor: The Missing Circuit Element&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.neurdon.com/wp-content/uploads/2010/06/chua_1.jpg"><img src="http://www.neurdon.com/wp-content/uploads/2010/06/chua_1.jpg" alt="" title="chua_1" width="344" height="224" class="alignleft size-full wp-image-1325" /></a>Leo Chua gave one of his brilliant talks on May 21, 2010 at the <a href="http://cns.bu.edu/cns-meeting/schedule.htm">ICCNS 2010</a> conference at the Department of Cognitive and Neural Systems. Just to be sure you get the magnitude of the event: <a href="http://en.wikipedia.org/wiki/Leon_Chua">Leon Chua</a> is the first to theorize the existence of memristors with his paper &#8220;Memristor: The Missing Circuit Element&#8221; on IEEE TRANSACTIONS on Circuit Theory, published in September 1971. <span id="more-1324"></span><br />
<a href="http://www.neurdon.com/wp-content/uploads/2010/06/chua_2.jpg"><img src="http://www.neurdon.com/wp-content/uploads/2010/06/chua_2.jpg" alt="" title="chua_2" width="305" height="212" class="alignleft size-full wp-image-1326" /></a>Leon&#8217;s work is foundational to much of what many of the Neurdons are busy doing these days, and has inspired a number of research papers that investigate the use of memristors for neural simulations. It was natural to then have Leon visit our lab, and donate him a Neurdon mug. See pictures&#8230; believe it now?</p>
<img src="http://feeds.feedburner.com/~r/Neurdon/~4/TDOKbMrPEyI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.neurdon.com/2010/06/02/leon-chua-visits-the-boston-university-synapse-team/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.neurdon.com/2010/06/02/leon-chua-visits-the-boston-university-synapse-team/</feedburner:origLink></item>
		<item>
		<title>Write a post, win a Neurdon mug!</title>
		<link>http://feedproxy.google.com/~r/Neurdon/~3/Ug5vVupOAP0/</link>
		<comments>http://www.neurdon.com/2010/05/28/write-a-post-win-a-neurdon-mug/#comments</comments>
		<pubDate>Sat, 29 May 2010 01:28:15 +0000</pubDate>
		<dc:creator>Massimiliano Versace</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.neurdon.com/?p=1319</guid>
		<description><![CDATA[ Not all mugs are born equal. You will realize it if you think about it for a second: there is a big difference between each and every mug. Some are good for the morning coffee, some for the afternoon tea. Others when you read a book. Some are perfect for writing a paper. The [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.neurdon.com/wp-content/uploads/2010/05/neurdon_mug.jpg"><img src="http://www.neurdon.com/wp-content/uploads/2010/05/neurdon_mug.jpg" alt="" title="neurdon_mug" width="320" height="240" class="alignleft size-full wp-image-1321" /></a> Not all mugs are born equal. You will realize it if you think about it for a second: there is a big difference between each and every mug. Some are good for the morning coffee, some for the afternoon tea. Others when you read a book. Some are perfect for writing a paper. The dilemma, until now, was: where should I drink from to gain inspiration when I write a Neurdon post? Problem solved (see mug on the left for solution). </p>
<p>Neurdon is giving away a mug per month to the best post. Inspire us, and you will be inspired!</p>
<img src="http://feeds.feedburner.com/~r/Neurdon/~4/Ug5vVupOAP0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.neurdon.com/2010/05/28/write-a-post-win-a-neurdon-mug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.neurdon.com/2010/05/28/write-a-post-win-a-neurdon-mug/</feedburner:origLink></item>
		<item>
		<title>Wireless power</title>
		<link>http://feedproxy.google.com/~r/Neurdon/~3/EQvFi6Wety0/</link>
		<comments>http://www.neurdon.com/2010/05/27/wireless-power/#comments</comments>
		<pubDate>Thu, 27 May 2010 22:28:05 +0000</pubDate>
		<dc:creator>Massimiliano Versace</dc:creator>
				<category><![CDATA[Brain Plug]]></category>
		<category><![CDATA[neuromorphic technology]]></category>

		<guid isPermaLink="false">http://www.neurdon.com/?p=1311</guid>
		<description><![CDATA[Neural chips keep shrinking, but powering these chips still represents a challenge, especially for applications in the medical domain, such as neural prosthetics. A step towards the direction of reducing this issue has been recently taken by Brian Otis, professor of electrical engineering at the University of Washington. Otis, the lead researcher on NeuralWISP, has [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.neurdon.com/wp-content/uploads/2010/05/power.jpg"><img src="http://www.neurdon.com/wp-content/uploads/2010/05/power-150x106.jpg" alt="" title="power" width="150" height="106" class="alignleft size-thumbnail wp-image-1316" /></a>Neural chips keep shrinking, but powering these chips still represents a challenge, especially for applications in the medical domain, such as neural prosthetics. A step towards the direction of reducing this issue has been recently taken by <a href="http://www.ee.washington.edu/faculty/otis_brian/">Brian Otis</a>, professor of electrical engineering at the University of Washington. Otis, the lead researcher on NeuralWISP, has designed a microprocessor powered by a commercial radio-frequency reader that doubles as a data-collection device. The circuitry converts usable power from the reader to a voltage that can be used to power the &#8220;neural&#8221; chip. More information is available <a href="http://www.technologyreview.com/computing/23878/?a=f">here</a>. </p>
<img src="http://feeds.feedburner.com/~r/Neurdon/~4/EQvFi6Wety0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.neurdon.com/2010/05/27/wireless-power/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.neurdon.com/2010/05/27/wireless-power/</feedburner:origLink></item>
	</channel>
</rss>
