active questions tagged artificial-intelligence - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T23:53:21Z http://stackoverflow.com/feeds/tag/artificial-intelligence http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1829223/limiting-thread-execution-processor-cycles-in-java 1 Limiting Thread Execution Processor Cycles in Java AlexeyMK 2009-12-01T21:57:05Z 2009-12-01T22:27:09Z <p>Hey,</p> <p>I'm writing an AI-testing Framework for a competition. Participants submit a Bot class which matches a given Interface. Then all the bots play a turn-based game. On every turn, I want to do the following:</p> <pre><code>For every bot B: start a thread that runs at most N cycles and does B.getNextMove() wait for all threads to complete Make all moves (from each bot). </code></pre> <p>My difficulty comes in saying "at most N cycles". I can limit all the bots by time (say half a second per turn) but this means that some can get more processor cycles than others and doesn't permit a strict "your bot should be able to make its decision re: a turn in X time" requirement in the competition.</p> <p>As stated, this is in Java. Any ideas? I've been looking at concurrency and locking but this doesn't feel like the right direction. Also, it's possible to not run the bots in Parralel and then use time for the restriction (given that the computer isn't running anything else at the time), but this would be undesirable as it would significantly slow down the speed at which we could have results from the games.</p> http://stackoverflow.com/questions/1827993/random-decision-algorithm 0 Random Decision Algorithm Rusty 2009-12-01T18:31:15Z 2009-12-01T18:46:47Z <p>I am making a simple AI and I am really new to this realm. What I need is an algorithm to make some sort of decisions based on some parameters; but with a little bit of randomness. What I have been doing so far is to generate a random number and based on the different values I get; take different execution paths. I somehow think there's a much better way to do this sort of thing. Can you give me some pointers?</p> http://stackoverflow.com/questions/761216/how-to-code-an-artificial-neural-network-tic-tac-toe 4 How to code an artificial neural network (Tic-tac-toe)? marco92w 2009-04-17T16:48:29Z 2009-12-01T15:47:39Z <p>Hello!</p> <p>I want to play Tic-tac-toe using an artificial neural network. My configuration for the network is as follows: For each of the 9 fields, I use 2 input neuron. So I have 18 input neurons, of course. For every field, I have 1 input neuron for a piece of Player 1 and 1 neuron for a piece of Player 2. In addition to that, I have 1 output neuron which gives an evaluation of the current board position. The higher the output value is, the better is the position for Player 1. The lower it is, the better is it for Player 2.</p> <p>But my problem is: How could I code that neural network? My idea was to use an Array[1-18] for the input neurons. The values of this array are the input weights. The I would walk through the array using a loop. Whenever there is a neuron to be activated, I add the weight to the output value. So the output value is the sum of the weights of the activated input neurons:</p> <pre><code>Output = SUM(ActivatedInputNeurons) </code></pre> <p>Do you think this is a good way of programming the network? Do you have better ideas?</p> <p>I hope you can help me. Thanks in advance!</p> http://stackoverflow.com/questions/1823523/continuous-output-in-neural-networks 2 Continuous output in Neural Networks devoured elysium 2009-12-01T01:42:58Z 2009-12-01T14:47:10Z <p>How can I set Neural Networks so they accept and output a continuous range of values instead of a discrete ones? From what I recall from doing a Neural Network class a couple of years ago, the activation function would be a sigmoid, which yields a value between 0 and 1. If I want my neural network to yield a real valued scalar, what should I do? I thought maybe if I wanted a value between 0 and 10 I could just multiply the value by 10? What if I have negative values? Is this what people usually do or is there any other way? What about the input?</p> <p>Thanks</p> http://stackoverflow.com/questions/1687789/applications-of-unification 1 Applications of Unification? Ravi 2009-11-06T14:01:23Z 2009-12-01T02:51:30Z <blockquote> <p>What are (practical) applications of <a href="http://en.wikipedia.org/wiki/Unification" rel="nofollow">Unification</a> ? Where it is been used in real world?</p> </blockquote> <p>I couldn't get the whole idea of what it is really about and why its considered as a part of Artificial Intelligence.</p> http://stackoverflow.com/questions/1814867/can-dancing-links-be-applied-to-this-csp 0 Can Dancing Links be applied to this CSP? John V. 2009-11-29T06:55:19Z 2009-11-30T17:10:49Z <p>Can the Dancing Links implementation of Knuth's Algorithm X be used to solve <a href="http://en.wikipedia.org/wiki/Hidato" rel="nofollow">this CSP</a>? In this game the first and last number are always already in the board and I belive there's only one solution to each well formulated problem.</p> http://stackoverflow.com/questions/1817442/how-to-recognize-rectangles-in-this-image 5 How to recognize rectangles in this image? Phil 2009-11-30T01:23:54Z 2009-11-30T07:24:23Z <p>Hi,</p> <p>I have a image with horizontal and vertical lines. In fact, this image is the BBC website converted to horizontal and vertical lines. My problem is that I want to be able to find all the rectangles in the image. I want to write a computer program to find all the rectangles. Does anyone know how to do this or suggest ideas on how to get started? This task is easy for me as a person to find the visual rectangles, but I am not sure how to describe it as a program.</p> <p>Image at <a href="http://www.ironnine.com/rectangles.png" rel="nofollow">http://www.ironnine.com/rectangles.png</a> is the BBC website here <a href="http://www.bbc.co.uk/" rel="nofollow">http://www.bbc.co.uk/</a></p> <p>Thanks, Philip</p> <p><hr></p> <p>Update to this, I wrote the code which converts the BBC website image to the horizontal and vertical line, the problem is these lines do not completely meet at the corners and sometimes they do not completely form a rectangle. Thanks!</p> <p><img src="http://www.ironnine.com/rectangles.png" alt="alt text"></p> http://stackoverflow.com/questions/1085351/an-algorithm-for-a-drawing-and-painting-robot-any-tips 4 An algorithm for a drawing and painting robot - any tips? compound eye 2009-07-06T03:56:17Z 2009-11-30T02:09:29Z <p>Algorithm for a drawing and painting robot -</p> <p>Hello </p> <p>I want to write a piece of software which analyses an image, and then produces an image which captures what a human eye perceives in the original image, using a minimum of bezier path objects of varying of colour and opacity. </p> <p>Unlike the recent twitter super compression contest <em>(<a href="http://stackoverflow.com/questions/891643/twitter-image-encoding-challenge">see: stackoverflow.com/questions/891643/twitter-image-encoding-challenge</a>)</em>, my goal is not to create a replica which is faithful to the image, but instead to replicate the human experience of looking at the image.</p> <p>As an example, if the original image shows a red balloon in the top left corner, and the reproduction has something that looks like a red balloon in the top left corner then I will have achieved my goal, even if the balloon in the reproduction is not quite in the same position and not quite the same size or colour.</p> <p>When I say "as perceived by a human", I mean this in a very limited sense. i am not attempting to analyse the meaning of an image, I don't need to know what an image is of, i am only interested in the key visual features a human eye would notice, to the extent that this can be automated by an algorithm which has no capacity to conceptualise what it is actually observing.</p> <p>Why this unusual criteria of human perception over photographic accuracy?</p> <p>This software would be used to drive a drawing and painting robot, which will be collaborating with a human artist <em>(<a href="http://video.google.com/videosearch?q=mr%20squiggle" rel="nofollow">see: video.google.com/videosearch?q=mr%20squiggle</a>)</em>.</p> <p>Rather than treating marks made by the human which are not photographically perfect as necessarily being mistakes, The algorithm should seek to incorporate what is already on the canvas into the final image.</p> <p>So relative brightness, hue, saturation, size and position are much more important than being photographically identical to the original. The maintaining the topology of the features, block of colour, gradients, convex and concave curve will be more important the exact size shape and colour of those features</p> <p>Still with me?</p> <p>My problem is that I suffering a little from the "when you have a hammer everything looks like a nail" syndrome. To me it seems the way to do this is using a genetic algorithm with something like the comparison of wavelet transforms <em>(see: <a href="http://grail.cs.washington.edu/projects/query/" rel="nofollow">grail.cs.washington.edu/projects/query/</a>)</em> used by retrievr <em>(see: <a href="http://labs.systemone.at/retrievr/" rel="nofollow">labs.systemone.at/retrievr/</a>)</em> to select fit solutions.</p> <p>But the main reason I see this as the answer, is that these are these are the techniques I know, there are probably much more elegant solutions using techniques I don't now anything about.</p> <p>It would be especially interesting to take into account the ways the human vision system analyses an image, so perhaps special attention needs to be paid to straight lines, and angles, high contrast borders and large blocks of similar colours.</p> <p>Do you have any suggestions for things I should read on vision, image algorithms, genetic algorithms or similar projects?</p> <p>Thank you</p> <p>Mat</p> <p><i>PS. Some of the spelling above may appear wrong to you and your spellcheck. It's just international spelling variations which may differ from the standard in your country: e.g. Australian standard: colour vs American standard: color </i></p> http://stackoverflow.com/questions/1783669/any-python-support-vector-machine-library-around-that-allows-online-learning 1 Any python Support Vector Machine library around that allows online learning? devoured elysium 2009-11-23T15:03:29Z 2009-11-29T20:56:44Z <p>I do know there are some libraries that allow to use Support vector Machines from python code, but I am looking specifically for libraries that allow one to teach it online (this is, without having to give it all the data at once).</p> <p>Are there any?</p> http://stackoverflow.com/questions/740389/good-implementations-of-reinforced-learning 5 Good implementations of reinforced learning? Paperino 2009-04-11T16:32:19Z 2009-11-29T16:23:40Z <p>For an ai-class project I need to implement a reinforcement learning algorithm which beats a simple game of tetris. The game is written in Java and we have the source code. I know the basics of reinforcement learning theory but was wondering if anyone in the SO community had hands on experience with this type of thing.</p> <ol> <li>What would your recommended readings be for an implementation of reinforced learning in a tetris game?</li> <li>Are there any good open source projects that accomplish similar things that would be worth checking out?</li> </ol> <p>Thanks in advanced</p> <p>Edit: The more specific the better, but general resources about the subject are welcomed.</p> <p><strong>Follow up:</strong> </p> <p>Thought it would be nice if I posted a followup.</p> <p>Here's the solution (code and writeup) I ended up with for any future students :).</p> <p><strong><a href="http://dl.getdropbox.com/u/30163/AI.PAPER.DESIMONE.GOCHEV.doc" rel="nofollow">Paper</a></strong> / <strong><a href="http://dl.getdropbox.com/u/30163/tetris%5Fdone.tar.gz" rel="nofollow">Code</a></strong></p> http://stackoverflow.com/questions/1813913/information-mining-classification-modification 0 Information mining, classification, modification Kapila 2009-11-28T22:03:28Z 2009-11-28T22:49:53Z <p>Any examples, tips, guidance for the following scenario?</p> <p>I have retrieved updates from several different news websites. I then analyse that information to predict on current trend in the world.</p> <p>I could only find the information on data mining when searching for above idea, but it is for database systems. While data mining is similar to what i am trying to do, data mining in databases information is more specific than what I have retrieved from websites. So could someone guide me on this aspect? I really appreciate any help you can give on this. </p> <p>Thanks.</p> http://stackoverflow.com/questions/1798091/artificial-inteligence-library-in-python 3 Artificial Inteligence library in python João Portela 2009-11-25T16:19:27Z 2009-11-26T20:29:27Z <p>I was wondering if there are any python AI libraries similar to <a href="http://code.google.com/p/aima-python/" rel="nofollow">aima-python</a> <s>but for a more recent version of python...</s> and how they are in comparison to aima-python.<br> I was particularly interested in search algorithms such as hill-climbing, simulated annealing, tabu search and genetic algorithms.</p> <p><strong>edit</strong>: made the question more clear.</p> http://stackoverflow.com/questions/1652449/resources-for-game-artificial-intelligence 9 Resources for Game Artificial Intelligence madicemickael 2009-10-30T21:33:33Z 2009-11-25T05:22:36Z <p>I would like to start building/developing a game AI that will allow me to play games like: Chess, domino, poker, and Texas hold'em against computer opponent.</p> <p>What are some of the books/resources are recommended to achieve that goal?</p> <p>Please give me the link with the books cover or something</p> http://stackoverflow.com/questions/1559843/what-problems-have-you-solved-using-artificial-neural-networks 38 What problems have you solved using artificial neural networks? knorv 2009-10-13T12:15:39Z 2009-11-24T11:18:56Z <p>I'd like to know about specific problems <b>you</b> - the SO reader - have solved using artificial neural network techniques and what libraries/frameworks you used if you didn't roll your own.</p> <p>Questions:</p> <ul> <li>What problems have you used artificial neural networks to solve?</li> <li>What libraries/frameworks did you use?</li> </ul> <p>I'm looking for first-hand experiences, so please do not answer unless you have that.</p> http://stackoverflow.com/questions/1701136/determining-the-best-k-for-a-k-nearest-neighbour 5 Determining the best k for a k nearest neighbour jamesh 2009-11-09T14:00:53Z 2009-11-24T10:30:33Z <p>I have need to do some cluster analysis on a set of 2 dimensional data (I may add extra dimensions along the way). </p> <p>The analysis itself will form part of the data being fed into a visualisation, rather than the inputs into another process (e.g. <a href="http://en.wikipedia.org/wiki/Radial%5Fbasis%5Fnetwork" rel="nofollow">Radial Basis Function Networks</a>). </p> <p>To this end, I'd like to find a set of clusters which primarily "looks right", rather than elucidating some hidden patterns. </p> <p>My intuition is that <a href="http://en.wikipedia.org/wiki/K-means%5Fclustering" rel="nofollow">k-means</a> would be a good starting place for this, but that finding the right number of clusters to run the algorithm with would be problematic.</p> <p>The problem I'm coming to is this: </p> <p><strong>How to determine the 'best' value for</strong> <em>k</em> <strong>such that the clusters formed are stable and visually verifiable</strong>?</p> <p>Questions:</p> <ul> <li>Assuming that this isn't NP-complete, what is the time complexity for finding a good <em>k</em>. (probably reported in number of times to run the k-means algorithm).</li> <li>is k-means a good starting point for this type of problem? If so, what other approaches would you recommend. A specific example, backed by an anecdote/experience would be maxi-bon.</li> <li>what short cuts/approximations would you recommend to increase the performance.</li> </ul> http://stackoverflow.com/questions/1783389/what-are-the-uses-of-recurrent-neural-networks-when-using-them-with-reinforcement 2 What are the uses of recurrent neural networks when using them with Reinforcement Learning? devoured elysium 2009-11-23T14:19:34Z 2009-11-23T22:06:31Z <p>I do know that feedforward multi-layer neural networks with backprop are used with Reinforcement Learning as to help it generalize the actions our agent does. This is, if we have a big state space, we can do some actions, and they will help generalize over the whole state space.</p> <p>What do recurrent neural networks do, instead? To what tasks are they used for, in general?</p> http://stackoverflow.com/questions/1530604/support-vector-machines-separating-hyperplane-question 1 Support vector machines - separating hyperplane question devoured elysium 2009-10-07T09:53:31Z 2009-11-23T15:22:48Z <p>From what I've seen, seems like the separation hyperplane must be in the form </p> <p><strong><em>x.w</strong> + b = 0</em>. </p> <p>I don't get very well this notation. From what I understand, <code>x.w</code> is a inner product, so it's result will be a scalar. How can be it that you can represent a hyperplane by a scalar + b? I'm quite confused with this. </p> <p>Also, even if it was <strong><em>x</strong> + b = 0</em>, wouldn't it be of a hyperplane that passes right through the origin? From what I understand a separating hyperplane doesn't always pass through the origin!</p> http://stackoverflow.com/questions/1717378/quantum-tic-tac-toe-ai 2 Quantum Tic Tac Toe AI dacman 2009-11-11T19:05:43Z 2009-11-22T19:21:36Z <p>In my data structures class, we've been assigned a project in which we are required to make a fully functioning Quantum Tic Tac Toe game in which a player faces a bot that plays to win.</p> <p>The professor suggested we use a game tree in our AI. However, as usual, I am looking for something more challenging.</p> <p>Can anyone suggest a better, more advanced approach that I could research and implement?</p> <p>Thanks!</p> <p>Edit: I'm not looking for something completely ridiculous that makes the problem more complex. Rather, I'm looking for an advanced approach -- like using an A* algorithm rather than a BFS.</p> http://stackoverflow.com/questions/1201513/how-can-i-teach-a-computer-system-how-to-play-poker 2 How can I teach a computer system how to play poker? tony 2009-07-29T16:35:23Z 2009-11-22T11:48:21Z <p>At first I have 5 cards by random, of course. Only one time I can change and also l have already taught [the program] the poker rules in my system. My problem is how can I choose "I don't need this card or there are cards?". I can change by myself but computer doesn't know. I think maybe it is difficult but have you guys any help to offer? </p> http://stackoverflow.com/questions/1668829/netlogo-vs-repast-simphony 2 NetLogo vs. Repast Simphony? zxcvbnm 2009-11-03T17:15:55Z 2009-11-21T10:46:29Z <p>I would like to simulate some scenarios using the multiagent paradigm, and it seems <a href="http://en.wikipedia.org/wiki/NetLogo" rel="nofollow">NetLogo</a> and <a href="http://en.wikipedia.org/wiki/Repast%5F%28modeling%5Ftoolkit%29" rel="nofollow">Repast</a> are the most popular tools for that.</p> <p>I'd like to know if anyone has had any experience with either one and could tell me more about them? For example, I've noticed that there is a fluxogram-like modeling option for Repast, but I believe it is rather limited. I've looked around the tutorials and documentation in the official site, and the documentation seems to be lacking. While there are some examples with it, I'd say extending it to simulate an ambient which it has not been specifically prepared to seems like an unreachable goal at the moment, despite Repast obviously being very robust and apparently able to handle it, given enough familiarity with it.</p> <p>On the other hand, NetLogo has more examples and overall I've liked it more for its simplicity, but it seems to be more focused on the simulating propagation of diseases or similar models. I've found a programming book teaching <a href="http://en.wikipedia.org/wiki/Logo%5F%28programming%5Flanguage%29" rel="nofollow">Logo</a>, so I figure it'd be easier to get started with it too.</p> <p>Currently, I am thinking of simulating <a href="http://en.wikipedia.org/wiki/Botnet" rel="nofollow">botnets</a> and <a href="http://en.wikipedia.org/wiki/Intrusion%5Fdetection%5Fsystem" rel="nofollow">IDS</a>es as multiagents. The problem, however, is that I would have to abstract the network and transport layers to an extent to be able to do it, as well as generate traffic between the nodes. Repast is apparently more fitting for this, but given its complexity and lack of documentation I'm thinking of using NetLogo. While there are some examples of NetLogo with traditional applications (ex: <a href="http://en.wikipedia.org/wiki/Tetris" rel="nofollow">Tetris</a> or <a href="http://en.wikipedia.org/wiki/Pac-Man" rel="nofollow">Pac-Man</a>), I'm not sure about how appropriate it'd be for that.</p> http://stackoverflow.com/questions/1769217/programming-a-chess-ai 2 Programming a chess AI RCIX 2009-11-20T09:07:02Z 2009-11-20T09:20:59Z <p>I'm looking to try and write a chess AI. Is there something i can use on the .NET framework (or maybe even a chess program scripted in Lua) that will let me write and test a chess AI without worrying about actually makign a chess game?</p> http://stackoverflow.com/questions/1741478/pacman-ai-solution-in-python 2 pacman AI solution in python JGC 2009-11-16T11:01:47Z 2009-11-19T21:29:35Z <p>I am searching for a heuristic function for applying to A* algorithm to solve the pacman game in order to gather the foods as quickly as possible, but i could not find a good solution. I tried the function which return number of food items in the screen as priority of node but it does not help so much in time and nodes which has been visited.(the language of pacman is python) does any one have any idea? if you need more info comment me</p> http://stackoverflow.com/questions/1631414/what-is-the-best-battleship-ai 185 What is the best Battleship AI? John Gietzen 2009-10-27T15:02:20Z 2009-11-19T03:07:03Z <p>Battleship!</p> <p>Back in 2003, (when I was 17,) I competed in a <a href="http://www.xtremevbtalk.com/t89846.html" rel="nofollow">Battleship AI</a> coding competition. Even though I lost that tournament, I had a lot of fun and learned a lot from it.</p> <p>Now, I would like to resurrect this competition, in the search of the best battleship AI.</p> <p>Here is the framework: <strong><a href="http://files.lanlordz.net/Crew/otac0n/Battleship.zip" rel="nofollow">Battleship.zip</a></strong></p> <p><strong>The winner will be awarded +450 reputation!</strong> The competition will be held starting on the <strong>17th of November, 2009</strong>. No entries or edits later than zero-hour on the 17th will be accepted. (Central Standard Time) Submit your entries early, so you don't miss your opportunity!</p> <p><em>To keep this <strong>OBJECTIVE</strong>, please follow the spirit of the competition.</em></p> <p><strong>Rules of the game:</strong></p> <ol> <li>The game is be played on a 10x10 grid.</li> <li>Each competitor will place each of 5 ships (of lengths 2, 3, 3, 4, 5) on their grid.</li> <li>No ships may overlap, but they may be adjacent.</li> <li>The competitors then take turns firing single shots at their opponent. <ul> <li>A variation on the game allows firing multiple shots per volley, one for each surviving ship.</li> </ul></li> <li>The opponent will notify the competitor if the shot sinks, hits, or misses.</li> <li>Game play ends when all of the ships of any one player are sunk.</li> </ol> <p><strong>Rules of the competition:</strong></p> <ol> <li>The spirit of the competition is to find the best Battleship algorithm.</li> <li>Anything that is deemed against the spirit of the competition will be grounds for disqualification.</li> <li>Interfering with an opponent is against the spirit of the competition.</li> <li>Multithreading may be used under the following restrictions: <ul> <li>No more than one thread may be running while it is not your turn. (Though, any number of threads may be in a "Suspended" state).</li> <li>No thread may run at a priority other than "Normal".</li> <li>Given the above two restrictions, you will be guaranteed at least 3 dedicated CPU cores during your turn.</li> </ul></li> <li>A limit of 1 second of CPU time per game is allotted to each competitor on the primary thread.</li> <li>Running out of time results in losing the current game.</li> <li>Any unhandled exception will result in losing the current game.</li> <li>Network access and disk access is allowed, but you may find the time restrictions fairly prohibitive. However, a few set-up and tear-down methods have been added to alleviate the time strain.</li> <li>Code should be posted on stack overflow as an answer, or, if too large, linked.</li> <li>Max total size (un-compressed) of an entry is 1 MB.</li> <li>Officially, .Net 2.0 / 3.5 is the only framework requirement.</li> <li>Your entry must implement the IBattleshipOpponent interface.</li> </ol> <p><strong>Scoring:</strong></p> <ol> <li>Best 51 games out of 101 games is the winner of a match.</li> <li>All competitors will play matched against each other, round-robin style.</li> <li>The best half of the competitors will then play a double-elimination tournament to determine the winner. (Smallest power of two that is greater than or equal to half, actually.)</li> <li>I will be using the <a href="http://tournaments.codeplex.com/" rel="nofollow">TournamentApi</a> framework for the tournament.</li> <li>The results will be posted here.</li> <li>If you submit more than one entry, only your best-scoring entry is eligible for the double-elim.</li> </ol> <p>Good luck! Have fun!</p> <p><hr></p> <p><strong>EDIT 1:</strong><br/> Thanks to <a href="http://stackoverflow.com/users/190480/freed">Freed</a>, who has found an error in the <code>Ship.IsValid</code> function. It has been fixed. Please download the updated version of the framework.</p> <p><strong>EDIT 2:</strong><br/> Since there has been significant interest in persisting stats to disk and such, I have added a few non-timed set-up and tear-down events that should provide the required functionality. This is a <strong>semi-breaking change</strong>. That is to say: the interface has been modified to add functions, but no body is required for them. Please download the updated version of the framework.</p> <p><strong>EDIT 3:</strong><br/> Bug Fix 1: <code>GameWon</code> and <code>GameLost</code> were only getting called in the case of a time out.<br/> Bug Fix 2: If an engine was timing out every game, the competition would never end.<br/> Please download the updated version of the framework.</p> <p><strong>EDIT 4:</strong><br/> Results! <img src="http://img39.imageshack.us/img39/3757/tournamente.png" alt="Tournament Results"></p> http://stackoverflow.com/questions/1727375/what-are-some-good-resources-on-flocking-and-swarm-algorithms 2 What are some good resources on flocking and swarm algorithms? Simucal 2009-11-13T05:52:18Z 2009-11-19T01:06:35Z <p>Awhile ago I read the novel <a href="http://rads.stackoverflow.com/amzn/click/0066214122" rel="nofollow">Prey</a>. Even though it is definitely in the realm of fun science fiction, it piqued my interest in swarm/flock AI. I've been seeing some examples of these demos recently on reddit such as the <a href="http://chrisbenjaminsen.com/stuff/boidsas3.swf" rel="nofollow">Nvidia plane flocking video</a> and <a href="http://www.reddit.com/r/programming/comments/a3qky/just%5Ffor%5Fyou%5Freddit%5Fa%5Fflocking%5Fsandbox%5Fin%5Fflash/" rel="nofollow">Chris Benjaminsen's flocking sandbox</a> (<a href="http://chrisbenjaminsen.com/stuff/boidsas3.zip" rel="nofollow">source</a>).</p> <p>I'm interested in writing some simulation demos involving swarm or flocking AI. I've taken Artificial Intelligence in college but we never approached the subject of simulating swarming/flocking behaviors and a quick flip through my textbook reveals that it isn't dicussed.</p> <p><img src="http://imgur.com/MruF2.png" alt="alt text"><br> <sub>Flocking Sandbox</sub></p> <p>What are some solid resources for learning some of the finer points around flock/swarm algorithms? Does anyone have any experience in this field so they could point me in the right direction concerning a well suited AI book or published papers?</p> http://stackoverflow.com/questions/1749201/building-a-reverse-language-dictionary 2 Building a reverse language dictionary dassouki 2009-11-17T14:19:59Z 2009-11-17T15:41:27Z <p>I was wondering what does it take to build a reverse language dictionary.</p> <p>The user enters something along the lines of: "red edible fruit" and the application would return: "tomatoes, strawberries, ..."</p> <p>I assume these results should be based on some form of keywords such as synonyms, or some form of string search. </p> <p>This is an <a href="http://onelook.com" rel="nofollow">online implementation</a> of this concept.</p> <p>What's going on there and what is involved?</p> <p><strong>EDIT 1:</strong> The question is more about the "how" rather than the "which tool"; However, feel free to provide the tools you think to do the job.</p> http://stackoverflow.com/questions/1053901/online-ai-research-communities 1 Online AI research communities? Silver Dragon 2009-06-28T00:10:10Z 2009-11-17T15:15:14Z <p>I understand, that most of the research communication in the field of AI is still done in the form of white papers, and conferences; but I refuse to believe there's nobody on the internet talking about it.</p> <p>So, I'd like to know what kind of forums / mailing lists would you recommend in the topic with high signal-to-noise ratio? Especially interested in: machine learning, statistical AI, and emerging disciplines.</p> http://stackoverflow.com/questions/1748887/how-to-create-a-smart-chat-bot 2 How to create a smart chat-bot? Roman 2009-11-17T13:31:18Z 2009-11-17T15:12:06Z <p>I know that it's still an open problem so I don't expect to see complete answers here. I just want to find some approaches to solve the next problem:</p> <p>I have a model (assume that is's bot's memory), and different words are associated with different objects in the model. Speaking with the bot is like executing sql-queries with a DB. Language is a very hard formalizable protocol. And we can't just write a million lines of code to implement some real language. But I believe that it's absolutely possible to implement some self-learning mechanism. How can it be implemented? Is it possible to implement learning "from scratch" or "from few basic words"? Just want to hear your ideas.</p> <p>Actually, English is a very strict language and it's one of the easiest languages for experimenting with AI. Many other languages allow you to change the order of words (for example). And in some cases changed order can change the whole meaning or just add some intonation. I really don't have any ideas how to teach a bot for these things.</p> http://stackoverflow.com/questions/1741347/natural-language-rendering 0 Natural language rendering ILICH 2009-11-16T10:38:05Z 2009-11-16T10:51:27Z <p>Do you know any frameworks that implement natural language rendering concept ?<br/> I've found several NLP oriented frameworks like <a href="http://www.proxem.com/Antelope/WhatisAntelope/tabid/67/Default.aspx" rel="nofollow">Anthelope</a> or <a href="http://opennlp.sourceforge.net/" rel="nofollow">Open NLP</a> but they have only parsers but not renderers or builders. For example I want to render a question about smth. I'm constructing sentence object, setting it's properties, specify it's language and then render as a plain text. <br/> Please advice. Thanks !</p> http://stackoverflow.com/questions/1585067/is-there-any-self-improving-compiler-around 2 Is there any self-improving compiler around? JohnIdol 2009-10-18T14:50:55Z 2009-11-15T15:12:01Z <p>I am not aware of any self-improving compiler, but then again I am not much of a compiler-guy.</p> <p><strong>Is there ANY self-improving compiler out there?</strong></p> <p>Please note that I am talking about <em>a compiler that improves itself</em> - not <em>a compiler that improves the code it compiles</em>.</p> <p>Any pointers appreciated!</p> <p><strong>Side-note</strong>: in case you're wondering why I am asking have a look at <a href="http://www.acceleratingfuture.com/michael/blog/2009/10/yale-daily-news-on-ss09-fear-the-singularity/" rel="nofollow">this post</a>. Even if I agree with most of the arguments I am not too sure about the following: </p> <blockquote> <p>We have programs that can improve their code without human input now — they’re called compilers.</p> </blockquote> <p>... hence my question.</p> http://stackoverflow.com/questions/1654691/flexible-library-or-server-for-board-games-chess-or-others 0 Flexible library or server for board games (chess or others)? Jay 2009-10-31T15:19:35Z 2009-11-14T13:08:18Z <p>Hello,</p> <p>I'm looking for a program or library that I could use for experimenting with board games (chess mostly, but not necessarily -- other similarly complex board games are OK too). I'll test different game-playing algorithms.</p> <p>This is what I need:</p> <ul> <li><p>I'd like, if possible, to make my program play against players like gnuchess and crafty, but also against itself and against a human player;</p></li> <li><p>It's OK if my player-program can communicate with the "server" via TCP, but it would be even nicer if it had a C interface (not C++, because then I'd have to write a wrapper);</p></li> <li><p>I may want to change the game rules (initial position of pieces, number of pieces, and even movement rules);</p></li> <li><p>Flexible (it's OK if the library/server validates chess moves, for example, but I'd like such feature to be optional because I will want to turn it off for some experiments);</p></li> <li><p>Free (I may want to get into the source code and maybe change a few bits).</p></li> </ul> <p>I'd be grateful if anyone could point me to such a library/server...</p> <p>Thanks a lot!</p> <p>P.S.: I wanted to include a "board-games" tag, but it seems that I'd need more reputation for that...</p> <p>P.S. 2: I'd like to accept two answers (they're complementary). It's a pity StackOverflow doesn't allow that.</p>