TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

General AI Challenge (2017)

3 pointsby amiroucheabout 8 years ago

1 comment

zelahabout 8 years ago
What is wrong with the Hutter Prize strategy for achieving AGI? Don&#x27;t get me wrong - the money would be very nice to have - but I am drawn to the simplicity of the Hutter Prize. Is the conception of that prize in some way flawed?<p>I think that finding an efficient way to invert mathematical functions gets you most of the way to AGI. What we need is a general purpose declarative constraint satisfaction programming language. Take the task of finding the square-root of a number in a system that initially knows how to square a number.<p>In my Lisp like language:<p>(define).. (square). x (*).. x x<p>(write). &quot;sqrt(9) = &quot; (write). (square). () 9<p>;finds the number which squared equals 9<p>;This program will figure out the answer by inverting the &quot;square&quot; function. In general you can specify any constraints that you wish and then solve for the unknowns using genetic algorithms or some other general purpose optimisation technique