<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>vetta project &#187; Shane Legg</title>
	<atom:link href="http://www.vetta.org/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vetta.org</link>
	<description></description>
	<lastBuildDate>Tue, 31 Jan 2012 23:29:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Goodbye 2011, hello 2012</title>
		<link>http://www.vetta.org/2011/12/goodbye-2011-hello-2012/</link>
		<comments>http://www.vetta.org/2011/12/goodbye-2011-hello-2012/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 01:49:13 +0000</pubDate>
		<dc:creator>Shane Legg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vetta.org/?p=1068</guid>
		<description><![CDATA[I&#8217;ve decided to once again leave my prediction for when human level AGI will arrive unchanged.  That is, I give it a log-normal distribution with a mean of 2028 and a mode of 2025, under the assumption that nothing crazy &#8230; <a href="http://www.vetta.org/2011/12/goodbye-2011-hello-2012/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve decided to once again leave my prediction for when human level AGI will arrive unchanged.  That is, I give it a log-normal distribution with a mean of 2028 and a mode of 2025, under the assumption that nothing crazy happens like a nuclear war.  I&#8217;d also like to add to this prediction that I expect to see an impressive proto-AGI within the next 8 years.  By this I mean a system with basic vision, basic sound processing, basic movement control, and basic language abilities, with all of these things being essentially learnt rather than preprogrammed.  It will also be able to solve a range of simple problems, including novel ones.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vetta.org/2011/12/goodbye-2011-hello-2012/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>AIQ</title>
		<link>http://www.vetta.org/2011/11/aiq/</link>
		<comments>http://www.vetta.org/2011/11/aiq/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 12:28:42 +0000</pubDate>
		<dc:creator>Shane Legg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vetta.org/?p=1058</guid>
		<description><![CDATA[Some of you might remember the talk I gave at the 2010 Singularity Summit about Algorithmic IQ, or AIQ for short.  It was an attempt to convert the theoretical Universal Intelligence Measure into a working practical test of machine intelligence. &#8230; <a href="http://www.vetta.org/2011/11/aiq/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Some of you might remember <a title="AIQ Talk" href="http://vimeo.com/17553536" target="_blank">the talk I gave</a> at the 2010 Singularity Summit about Algorithmic IQ, or AIQ for short.  It was an attempt to convert the theoretical <a title="Universal Intelligence Measure" href="http://www.vetta.org/documents/UniversalIntelligence.pdf" target="_blank">Universal Intelligence Measure</a> into a working practical test of machine intelligence.  The results were preliminary, but it seemed to work&#8230;</p>
<p>It&#8217;s now over a year later so I guess some of you are wondering what happened to AIQ! I&#8217;ve been very busy working on other cool stuff, however Joel Veness and I have been tinkering with AIQ in our spare time.  We&#8217;re pleased to report that it has continued to perform well, surprising well in fact.  There was some trickiness to do with getting it to work efficiently, but that aside, it worked perfectly straight out of the box.</p>
<p>We recently wrote a paper on AIQ that was accepted to the Solomonoff Memorial Conference.  You can get the <a title="AIQ Paper" href="http://www.vetta.org/documents/AIQ.pdf" target="_blank">paper here</a>, the <a title="AIQ Talk" href="http://www.vetta.org/documents/AIQ_Talk.pdf" target="_blank">talk slides here</a>, and we have also released all the Python AIQ <a title="AIQ Source Code" href="https://github.com/mathemajician/AIQ" target="_blank">source code here</a>.  It&#8217;s designed to be easy to plug in your own agents, or other reference machines, if you fancy having a go at that too.</p>
<p>If you&#8217;re not sure you want read any of that, here&#8217;s the summary:</p>
<p>We implemented the simple BF reference machine and extended it in the obvious ways to compute RL environments.  We then sampled random BF programs to compute the environments, and tested against each of these.  This can be a bit slow, so we used variance reduction techniques to speed things up.  We then implemented a number agents.  Firstly, MC-AIXI, a model based RL agent that can learn to play simple games such as TicTacToe, Kuhn poker and PacMan, but is rather slow to learn.  Then HLQ(lambda), a tabular RL agent similar to Q learning but with an automatic learning rate.  Then Q(lambda), a standard RL agent, and Q(0), a weaker special case. Finally, Freq, a simple agent that just does the more rewarding action most of the time, occasionally trying a random action.  There was also a random agent, but that always got an AIQ of zero, as expected.  The results appear below, across various episode lengths:</p>
<p style="text-align: left;"><img class="aligncenter" title="AIQ BF5 graph" src="http://www.vetta.org/images/BF5_alt.png" alt="" width="650" height="490" />The error bars are 95% confidence intervals for the estimates of the mean.  As you can see, AIQ orders the agents exactly we would expect, including picking up the fact the MC-AIXI, while quite powerful compared to the other agents, is also rather slow to learn and thus needs longer episode lengths.  We ran additional tests where we scaled the size of the context used by MC-AIXI, and the amount of search effort used, and in both cases the AIQ score scaled sensibly.  See the talk slides for more details, or the paper itself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vetta.org/2011/11/aiq/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>A Self Reflective Universe?</title>
		<link>http://www.vetta.org/2011/06/a-self-reflective-universe/</link>
		<comments>http://www.vetta.org/2011/06/a-self-reflective-universe/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 17:22:58 +0000</pubDate>
		<dc:creator>Shane Legg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vetta.org/?p=1048</guid>
		<description><![CDATA[I&#8217;ve been very busy with practical AI matters over the last 6 months so the following (crazy?) ideas have been parked in a folder. That&#8217;s a bit boring, so I thought I&#8217;d throw it out there to see what people &#8230; <a href="http://www.vetta.org/2011/06/a-self-reflective-universe/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div>
<p><em>I&#8217;ve been very busy with practical AI matters over the last 6 months so the following (crazy?) ideas have been parked in a folder. That&#8217;s a bit boring, so I thought I&#8217;d throw it out there to see what people think&#8230;</em></p>
<p>While working on computing a Cumulative Prospect Theory model of investor behaviour a couple of years ago I came across the work of Pothos and Busemeyer (2009) where they argue that quantum probability provides a better model of human decision making, rather than taking the Prospect Theory type of approach by Kahneman, Tversky and co. That just struck me as quirky at the time: why on earth would humans implement something as exotic as quantum logic/probability? They don&#8217;t actually think that the brain is operating in the quantum regime do they, or is it computing the quantum probabilities from essentially classical computations? Surely not? I decided to pass.</p>
<p>Then about a year ago I was reading up on search and classification systems when I came across a book by Dominic Widdows in which he introduces quantum logic (and quantum probability) as a useful generalisation of classical logic for this domain. Still being somewhat averse to things either quantum or logic I was naturally a bit sceptical about the utility of learning more about this. It&#8217;s not that I disagree with either of these areas, the problem is that they are huge monsters that don&#8217;t seem too relevant to what interests me&#8230; and so I save my meagre mental powers for other endeavours. Nevertheless, Widdows provided some interesting arguments for why this idea might deserve a closer look, and somehow I took the bait.</p>
<p>What I discovered is that, while classical logic can be seen as a special limiting case of quantum logic, or conversely that quantum logic is a “softened” classical logic, there is quite a bit more subtlety to it than that. For example, Busemeyer and Trueblood (2009) argue that quantum inference can be seen as a generalisation of Bayesian inference, the two coinciding only when compatible measures are involved and thus we have a single Boolean algebra of events. Busemeyer, Wang and Townsend (2006) argue that this often isn&#8217;t the case in intelligent agents when one type of judgement interferes with another. That&#8217;s interesting, but what got me even curious was when I found Pitowsky (2003) in which he shows that the rules of rational betting imply all the main features of quantum probability. Surely that can&#8217;t just be a quirk? Piotrowski and Sladkowski (2002) even argue that we can use it to provide a solution of Newcomb&#8217;s paradox. Is something really going on here?</p>
<p>What really caught my interest, however, was when I picked up the book “A New Approach to Quantum Logic” by Engesser, Gabbay and Lehmann (2007 – if you google a bit there is a mostly complete draft online, but hey, it&#8217;s also pretty cheap to by). In this they discuss the dynamic and holistic aspects of quantum logic, roughly, the way in which it can describe partially observable complex systems that evolve over time and that have a kind of strong global consistency guarantee. Moreover, it is non-monotonic, self-referentially sound, complete and has so called No Windows Theorems which imply that it&#8217;s, in some sense, a completely self-contained logical entity. As far as the authors are aware, and they are experts in the area so I&#8217;ll take their word for it, this is unique.</p>
<p>At least to me this seems like the kind of system you&#8217;d want if you were looking for a foundation for a recursively self-improving artificial intelligence. Perhaps it&#8217;s not the way to try to build the first human level artificial intelligence, but if you were super intelligent and really knew what you were doing, maybe this is what you should be looking at&#8230;</p>
<p>Now let&#8217;s step back get really wild for a moment. If quantum probability/logic is the right way to build a fully self-referential and consistent, recursively self-improving super-intelligence, and it&#8217;s also the fundamental mathematical structure of the physical world&#8230; surely that can&#8217;t be a coincidence.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.vetta.org/2011/06/a-self-reflective-universe/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>8.2 Peta FLOPS</title>
		<link>http://www.vetta.org/2011/06/8-2-peta-flops/</link>
		<comments>http://www.vetta.org/2011/06/8-2-peta-flops/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 20:27:20 +0000</pubDate>
		<dc:creator>Shane Legg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vetta.org/?p=1041</guid>
		<description><![CDATA[Seven months ago China claimed the number one position in supercomputing with a 2.6 Peta FLOPS machine.  I thought that might stand for a year, but I was wrong: last week Japan unveiled their new &#8220;K Computer&#8221; at a massive 8.2 Peta &#8230; <a href="http://www.vetta.org/2011/06/8-2-peta-flops/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Seven months ago China claimed the number one position in supercomputing with a 2.6 Peta FLOPS machine.  I thought that might stand for a year, but I was wrong: last week Japan unveiled their new &#8220;K Computer&#8221; at a massive <a href="http://www.top500.org/lists/2011/06/press-release" target="_blank">8.2 Peta FLOPS</a>.</p>
<p>Seems that we&#8217;re now running a couple of years <em>ahead</em> of even <a href="http://en.wikipedia.org/wiki/File:PPTSuperComputersPRINT.jpg" target="_blank">Kurzweil&#8217;s predictions</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vetta.org/2011/06/8-2-peta-flops/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Treatise on Universal Induction</title>
		<link>http://www.vetta.org/2011/06/treatise-on-universal-induction/</link>
		<comments>http://www.vetta.org/2011/06/treatise-on-universal-induction/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 13:04:41 +0000</pubDate>
		<dc:creator>Shane Legg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vetta.org/?p=1039</guid>
		<description><![CDATA[Samuel Rathmanner and Marcus Hutter recently wrote a treatise on universal induction.  While there are no proofs, it does get into some fairly deep aspects of the problem of inductive inference.  Download it here: http://dx.doi.org/10.3390/e13061076 &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p>Samuel Rathmanner and Marcus Hutter recently wrote a treatise on universal induction.  While there are no proofs, it does get into some fairly deep aspects of the problem of inductive inference.  Download it here:</p>
<p><a href="http://dx.doi.org/10.3390/e13061076" target="_blank">http://dx.doi.org/10.3390/e13061076</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vetta.org/2011/06/treatise-on-universal-induction/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Sutton on human level AI</title>
		<link>http://www.vetta.org/2011/05/sutton-on-human-level-ai/</link>
		<comments>http://www.vetta.org/2011/05/sutton-on-human-level-ai/#comments</comments>
		<pubDate>Mon, 09 May 2011 22:28:47 +0000</pubDate>
		<dc:creator>Shane Legg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vetta.org/?p=1034</guid>
		<description><![CDATA[Prof. Rich Sutton, probably the most famous person in the field of reinforcement learning, gave a talk today at the Gatsby Unit.  I was expecting a standard introduction to reinforcement learning to begin with, but it wasn&#8217;t to be.  Instead &#8230; <a href="http://www.vetta.org/2011/05/sutton-on-human-level-ai/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Prof. Rich Sutton, probably the most famous person in the field of reinforcement learning, gave a talk today at the Gatsby Unit.  I was expecting a standard introduction to reinforcement learning to begin with, but it wasn&#8217;t to be.  Instead he kicked off with 20 minutes about the singularity.</p>
<p>Audience: <em>So when do you expect human level AI?</em></p>
<p>Rich: <em>Roughly 2030.</em></p>
<p>Whether or not you agree, views like this seem to be becoming more common in academia.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vetta.org/2011/05/sutton-on-human-level-ai/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Technological themes</title>
		<link>http://www.vetta.org/2011/01/technological-themes/</link>
		<comments>http://www.vetta.org/2011/01/technological-themes/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 12:12:55 +0000</pubDate>
		<dc:creator>Shane Legg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vetta.org/?p=1020</guid>
		<description><![CDATA[Looking over my predictions for the teenies from a year ago, they already look pretty lame. Take 1/3 off USA&#8217;s PPP GDP and you already get China, the latest Sony portable device has a 4 core processor, Intel&#8217;s latest set &#8230; <a href="http://www.vetta.org/2011/01/technological-themes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Looking over my predictions for the teenies from a year ago, they already look pretty lame.  Take 1/3 off USA&#8217;s PPP GDP and you already get China, the latest Sony portable device has a 4 core processor, Intel&#8217;s latest set of CPUs are once again pretty awesome, schemes to let you pay for stuff with your phone are already getting under way (via both screen bar codes and near field communication), and a graphics card review I read the other day noted that the most graphically demanding games on high resolution monitors with all the graphical bells and whistles switched on now run very well on the latest &#8220;mid range&#8221; graphics cards.</p>
<p>At the time that I made my teenies predictions I thought they seemed a bit like predicting the obvious.  But I&#8217;m now starting to wonder whether many of my predictions could have been more tightly assigned to the following 3-4 years, rather than the next decade.</p>
<p>One thing I&#8217;ve noted in the past is that it&#8217;s usually easier to predict fundamental things like FLOPS per dollar than is it to predict how these technological fundamentals will translate into applications.  That might be true, but knowing that your computer of five years hence will have X bytes of storage and perform Y computations per second is a bit abstract for most purposes.  What will be the new toys, the new applications, the new businesses?  These are the things that impact people.</p>
<p>If predicting specific applications is a bit much to ask for (and if I could I might not want to tell you!), perhaps the next best is to predict the general nature of applications during a period of time.  What you might call the &#8220;technological theme&#8221; of a period.  </p>
<p>1980 to about 1995 was the period of the PC.   Starting with hobbyists and niche applications and spreading to take over a large chunk of the office.  The IBM PC marked the point at which this went mainstream.  The defining characteristic was that the communication was typically local, if the machines were networked at all.  </p>
<p>1995 to about 2010 was the period of the internet.  First emails and basic web pages, search, then ordering online, online banking, music, video, etc.  Netscape marked the point at which this went mainstream.  The defining characteristic was that the communication was now global but the interface with the world was usually pretty traditional: keyboard, mouse, monitor.</p>
<p>So what&#8217;s the next theme?  Mobile internet might be an answer, but I think that it&#8217;s more general than that.  As great as the internet is, most of the important stuff still occurs in that other place called reality.  Maybe it&#8217;s a new house with a swimming pool, throwing a party with friends or coming down with a serious illness.  I think the next theme will be for technology to interface more effectively with the world, being mobile is only one aspect of that.  If I had to pin the start of this going mainstream on one thing, it&#8217;d say it was the iPhone as that&#8217;s when the internet started to show up in the day to day moments of people&#8217;s lives as they&#8217;re out and about doing things.  </p>
<p>Once the location, state and function of many everyday objects starts to spread onto the internet, all sorts of creative efficiencies become possible.  Need to pay for the coffee?  Just press a button on your phone.  Not sure where your car is?  Ask your phone to show you the way.  Need a cab or a pizza or&#8230; just select what you want on some menus on your phone.  Prices, special deals, time you&#8217;ll need to wait &#8212; it will all be there.  Need to keep a close eye on your health?  Get a small sensor implanted that monitors your blood insulin, oxygenation, pressure, cholesterol, heart rate and so on and wirelessly updates this information to your phone.  Should a problem arise, your phone can let medics know where you are and what the problem seems to be.</p>
<p>I don&#8217;t expect this to be a sudden change, but rather a gradual absorption of goods, services and various everyday objects into an all pervasive information network.  I think this will be a hot area until about 2025.  Yeah, it&#8217;s going to take a while, not so much for many of these things to become possible, but rather for them to become cheap enough to be economic.</p>
<p>What&#8217;s my pick for the theme that comes after that?  Well, once you have so much of the economy automated and hooked up together with vast amount of information about anything and everything swirling around, the key leverage point becomes how well you can intelligently process all this in order to control and coordinate things.  Thus my pick for the theme from 2025 to 2040 is machine intelligence.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vetta.org/2011/01/technological-themes/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Goodbye 2010</title>
		<link>http://www.vetta.org/2010/12/goodbye-2010/</link>
		<comments>http://www.vetta.org/2010/12/goodbye-2010/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 18:04:39 +0000</pubDate>
		<dc:creator>Shane Legg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vetta.org/?p=1002</guid>
		<description><![CDATA[Well, well, another year is drawing to a close. That means it&#8217;s once again time to review what has happened and where things are going. It&#8217;s been a very eventful year for me, both personally and on the work front. &#8230; <a href="http://www.vetta.org/2010/12/goodbye-2010/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Well, well, another year is drawing to a close.  That means it&#8217;s once again time to review what has happened and where things are going.</p>
<p>It&#8217;s been a very eventful year for me, both personally and on the work front.  I keep my personal life off this blog, and as for work&#8230; um, significant things are happening but I&#8217;m not ready to talk about them yet  <img src='http://www.vetta.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   Thus, I&#8217;ll just stick to my general predictions this time around.</p>
<p>First of all, my set of <a href="http://www.vetta.org/2009/12/the-teenies/">predictions for the teenies</a>.  We&#8217;re only 1 year in so it&#8217;s not surprising that I&#8217;m still pretty comfortable with the predictions I&#8217;ve made.  The only tweak I&#8217;ll make is that over the last year I&#8217;ve become slightly more confident that we&#8217;ll have a decent understanding of how cortex works before the end of the decade.  That&#8217;s my only update.</p>
<p>My longest running prediction, since 1999, has been the time until roughly human level AGI.   It&#8217;s been consistent since then, though <a href="http://www.vetta.org/2009/12/tick-tock-tick-tock-bing/">last year</a> I decided to clarify things a bit and put down an actual distribution and some parameters.  Basically, I gave it a log-normal distribution with a mean of 2028, and a mode of 2025.  Over the last year computer power has <a href="http://www.top500.org/lists/2010/11/performance_development">increased as expected</a>, and so it looks like we&#8217;re still on target to have supercomputers with 10^18 FLOPS around 2018.  In terms of neuroscience and machine learning, I think things are progressing well, maybe a little faster than I&#8217;d expected.  I was toying with the idea of moving the prediction very slightly closer, but decided to play it safe and keep the prediction unmoved at 2028.  With many people thinking I&#8217;m too optimistic, showing restraint is perhaps wise <img src='http://www.vetta.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   I can always move my prediction nearer in a year or two.</p>
<p>One thing I screwed up last year was the 90% credibility region.  Going by a log-normal CDF  for my predicted mean and mode that David McFadzean did (see bottom of <a href="http://www.churchofvirus.org/bbs/index.php?board=5&#038;action=display&#038;threadid=42884&#038;start=0">this page</a>) the upper end should be a bit higher at 2045, i.e. at a CDF of 0.95.  It seems that I got the lower end right, however, as the CDF is about 0.05 at 2018.  With 5% at each end, that gives the 90% interval.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vetta.org/2010/12/goodbye-2010/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Summit 2010</title>
		<link>http://www.vetta.org/2010/08/summit-201/</link>
		<comments>http://www.vetta.org/2010/08/summit-201/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 11:03:13 +0000</pubDate>
		<dc:creator>Shane Legg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vetta.org/?p=996</guid>
		<description><![CDATA[Another great Singularity Summit. I liked the focus on neuroscience this time. I think it will be a major driving force behind AGI over the next 20 years. The talk by Demis Hassabis is the one to look for in &#8230; <a href="http://www.vetta.org/2010/08/summit-201/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Another great Singularity Summit.  I liked the focus on neuroscience this time.  I think it will be a major driving force behind AGI over the next 20 years.  The talk by Demis Hassabis is the one to look for in this area, once they become available online.  My own talk was well received &#8212; I had applause during the talk as I put up results, something that I&#8217;ve certainly never experienced before.  Due to a manic schedule of meetings, deadlines and last minute results, I unfortunately didn&#8217;t get to spend much time socialising this year.  Hopefully things will be a bit more sane next time around and I&#8217;ll be able to catch up with everybody properly.  Looking forward to it already.</p>
<p>I don&#8217;t know if anybody has thought of a theme for next year&#8217;s conference yet, but I&#8217;d like to make a suggestion: ethics and AGI safety.  The conference has been around for a few years now and had attracted some fairly big names and serious academics.  How about a return to the core mission of SIAI?  As I think AGI is approaching, we seriously need much deeper and broader thinking on these topics.  One other suggestion: while big names draw the crowds, in my opinion they often give the least interesting talks.  How about a couple of the most popular and accessible LessWrong posts get selected and their authors present them as Summit talks?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vetta.org/2010/08/summit-201/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Blank covers</title>
		<link>http://www.vetta.org/2010/07/blank-covers/</link>
		<comments>http://www.vetta.org/2010/07/blank-covers/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 19:06:28 +0000</pubDate>
		<dc:creator>Shane Legg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vetta.org/?p=990</guid>
		<description><![CDATA[I was notified that copies of my PhD thesis Machine Super Intelligence have been shipping from lulu.com with blank covers. I&#8217;ve been in contact with lulu about this and it should now be fixed. Moreover, if you have a received &#8230; <a href="http://www.vetta.org/2010/07/blank-covers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was notified that copies of my PhD thesis Machine Super Intelligence have been shipping from lulu.com with blank covers.  I&#8217;ve been in contact with lulu about this and it should now be fixed.  Moreover, if you have a received a version with a blank cover you can contact lulu directly and they have told me that they will sort something out.  I&#8217;m not sure if that means a refund or a new copy with a proper cover.</p>
<p>Sorry about this slip up, and thanks again to all 75 of you who have purchased copies.  If there are any further problems please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vetta.org/2010/07/blank-covers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Singularity Summit 2010</title>
		<link>http://www.vetta.org/2010/06/singularity-summit-2010/</link>
		<comments>http://www.vetta.org/2010/06/singularity-summit-2010/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 23:43:46 +0000</pubDate>
		<dc:creator>Shane Legg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vetta.org/?p=932</guid>
		<description><![CDATA[It&#8217;s Singularity Summit time again. This year the venue will be the San Francisco Hyatt Regency on the 14th and 15th of August. I&#8217;ll be talking about how systems neuroscience can inform AGI development efforts, and maybe a little about &#8230; <a href="http://www.vetta.org/2010/06/singularity-summit-2010/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s <a href="http://www.singularitysummit.com/">Singularity Summit</a> time again.  This year the venue will be the San Francisco Hyatt Regency on the 14th and 15th of August.  I&#8217;ll be talking about how systems neuroscience can inform AGI development efforts, and maybe a little about my current work to measure machine intelligence.  Cheap registration ends in a few days.  </p>
<p>UPDATE: after a little reorganisation, a colleague of mine here at the Gatsby Unit, <a href="http://en.wikipedia.org/wiki/Demis_Hassabis">Demis Hassabis</a> will be talking about how systems neuroscience can inform AGI design.  I&#8217;ll then give a follow up talk on measuring machine intelligence.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vetta.org/2010/06/singularity-summit-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sejnowski on reverse engineering the brain</title>
		<link>http://www.vetta.org/2010/04/sejnowski/</link>
		<comments>http://www.vetta.org/2010/04/sejnowski/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 11:25:29 +0000</pubDate>
		<dc:creator>Shane Legg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vetta.org/?p=929</guid>
		<description><![CDATA[&#8220;In 2008, the National Academy of Engineering chose as one of its grand challenges to reverse-engineer the human brain. When will this happen? Some are predicting that the first wave of results will arrive within the decade, propelled by rapid &#8230; <a href="http://www.vetta.org/2010/04/sejnowski/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8220;In 2008, the National Academy of Engineering chose as one of its grand challenges to reverse-engineer the human brain.  When will this happen? Some are predicting that the first wave of results will arrive within the decade, propelled by rapid advances in both brain science and computer science. This sounds astonishing, but it&#8217;s becoming increasingly plausible. So plausible, in fact, that the great race to reverse-engineer the brain is already triggering a dispute over historic firsts.  The backdrop for the debate is one of dramatic progress.&#8221;</p></blockquote>
<p>You can find the whole article <a href="http://www.scientificamerican.com/article.cfm?id=when-build-brains-like-ours">here</a>.  For those who don&#8217;t know, <a href="http://en.wikipedia.org/wiki/Terry_Sejnowski">Sejnowski</a> is one of the most respected neuroscientists in the world.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vetta.org/2010/04/sejnowski/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>AGI 10 and FHI</title>
		<link>http://www.vetta.org/2010/03/agi-10-and-fhi/</link>
		<comments>http://www.vetta.org/2010/03/agi-10-and-fhi/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 12:34:42 +0000</pubDate>
		<dc:creator>Shane Legg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vetta.org/?p=921</guid>
		<description><![CDATA[AGI 10, Lugano It&#8217;s certainly been quite a week. Last Friday I headed back to my old home town of Lugano in Switzerland for the AGI 10 conference. I had a great time. In a way it was a bit &#8230; <a href="http://www.vetta.org/2010/03/agi-10-and-fhi/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>AGI 10, Lugano</strong></p>
<p>It&#8217;s certainly been quite a week.  Last Friday I headed back to my old home town of Lugano in Switzerland for the AGI 10 conference.  I had a great time.  In a way it was a bit like the Singularity Summit for me in that the talks were not where the interesting stuff was going on &#8212; all the action was taking place in the coffee breaks, over lunch and over dinner.  That&#8217;s when you get to see what people really think!</p>
<p>Overall, my (biased) summary is that there seemed to be a greater sense of focus among the community than I&#8217;ve picked up before, plenty of passion and even a tiny touch of excitement creeping in there.  That said, there also seemed to be some significant disconnections in the community, with instances of people being shocked to discover than what they thought was a discredited minority view wasn&#8217;t a minority view at all.  To me that&#8217;s a good sign that the conference is working.  Another theme that I picked up was how central Hutter&#8217;s AIXI and my work on the universal intelligence measure has become: Marcus and I were being cited in presentations so often that by the last day many of the speakers were simply using our first names.  As usual there were plenty of people who disagree with our approach, however it was clear that our work has become a major landmark in the area.  </p>
<p>I think the most important missing ingredient of the conference was a lack of discussion about AGI safety issues.  From what I recall, during the main conference presentations Mark Waser was the only person to directly take on the topic.  During the final workshop session Roko Mijic appeared out of the blue and gave a talk on Yudkowsky style Friendly AI.  A show of hands revealed that while half the audience had heard of SIAI, few had heard of CEV.  Roko then kicked off his talk by describing the creation of an AGI as likely being worse than the Sicilian mafia combined with grey goo.  It&#8217;s hard to say what the audience who&#8217;d never encountered CEV etc. were thinking at this point, but I&#8217;d hazard a guess that they&#8217;d written him off as some kind of paranoid crackpot.  In any case, what did become clear is that a sizable part of the AGI community is not familiar with FAI thinking.  </p>
<p><strong>FHI, Oxford</strong></p>
<p>On Wednesday I gave a talk at the Future of Humanity Institute at the University of Oxford, along with Robin Hanson.  My talk was on what neuroscience can teach us about how to build an AGI.  Going by all the praise afterwards, it seems that my talk went over very well indeed.  I have to say that it was a real pleasure for me too: the topic is a passion of mine and getting to visit Oxford, meet everybody there and stay in one of the colleges was great fun.  I often complain when visiting churches (to admire the building and art) that it&#8217;s a pity that researchers don&#8217;t get such nice buildings.  Oxford seems to be one of the exceptions in this regard.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vetta.org/2010/03/agi-10-and-fhi/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>The growth of machine learning</title>
		<link>http://www.vetta.org/2010/03/the-growth-of-machine-learning/</link>
		<comments>http://www.vetta.org/2010/03/the-growth-of-machine-learning/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 11:05:36 +0000</pubDate>
		<dc:creator>Shane Legg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vetta.org/?p=916</guid>
		<description><![CDATA[The other day a group of Gatsby PhD students were debating whether machine learning existed before the mid 90&#8242;s. Clearly it did, even if you want to take a restricted view of what belongs to this category. Nevertheless, the fact &#8230; <a href="http://www.vetta.org/2010/03/the-growth-of-machine-learning/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The other day a group of Gatsby PhD students were debating whether machine learning existed before the mid 90&#8242;s.  Clearly it did, even if you want to take a restricted view of what belongs to this category.  Nevertheless, the fact that this was being discussed at all, and by people who spend the majority of their working days studying the subject, highlights how much the field has developed over the last 15 years.</p>
<p>I&#8217;m a bit busy for blogging at the moment, but I will be at AGI 2010 this weekend.  I&#8217;ll also be giving a talk at Oxford next week on how developments in theoretical neuroscience are giving us significant insights into AGI design.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vetta.org/2010/03/the-growth-of-machine-learning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phase coded short term memory</title>
		<link>http://www.vetta.org/2010/01/phase-coded-short-term-memory/</link>
		<comments>http://www.vetta.org/2010/01/phase-coded-short-term-memory/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 19:21:27 +0000</pubDate>
		<dc:creator>Shane Legg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vetta.org/?p=904</guid>
		<description><![CDATA[It&#8217;s long been thought that brain oscillations play a key role in short term memory, though there hasn&#8217;t been much empirical evidence to support this. That now seems to have changed with the publication of Phase-dependent neuronal coding of objects &#8230; <a href="http://www.vetta.org/2010/01/phase-coded-short-term-memory/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s long been thought that brain oscillations play a key role in short term memory, though there hasn&#8217;t been much empirical evidence to support this. That now seems to have changed with the publication of <em>Phase-dependent neuronal coding of objects in short-term memory</em> by Siegal, Warden and Miller. There is the <a href="http://www.pnas.org/content/106/50/21341">paper</a> as well as a high level <a href="http://www.pnas.org/content/106/50/21017.extract">commentary</a>. This is quite a step forward for understanding some of the more sophisticated design features of the brain and cognition.</p>
<p>Another interesting paper is <em>Coherence Potentials: Loss-Less All-or-None Network Events in the Cortex</em> by Thiagarajan, Lebedev, Nicolelis and Plenz. They have evidence that above a certainÂ threshold level of activity LFP information is sometimes transmitted across regions of cortex with surprisingly high fidelity.</p>
<p>Another cool recent paper is <em>Rewarded Outcomes Enhance Reactivation of Experience in the Hippocampus</em> by Singer and Frank.  They show that, well, basically what the title says.  This is not surprising, but until now there hasn&#8217;t been good evidence to show that this was happening.  If this can be replicated, and some people I know here are considering doing this, it would fill out another part of our understanding of reinforcement driven learning in the brain.</p>
<p>I&#8217;m coming across so many interesting neuroscience papers these days I can hardly keep up with reading them, let alone blogging about all of them.  The thing that amazes me is how the architecture of the brain is so logical &#8212; it almost looks designed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vetta.org/2010/01/phase-coded-short-term-memory/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

