PDA

View Full Version : Any good ideas for the AI project in one month



rpupa
January 17th, 2012, 11:20 AM
WE have to do a program in artificial intelligence. Please help me with some example projects and some concepts that might be important.:P

muteXe
January 17th, 2012, 12:04 PM
Have a quick read of neural networks and genetic algorithms. You could do some kind of route optimisation project maybe.

rpupa
January 17th, 2012, 01:04 PM
Thanks for the reply, i am currently looking at these things along with other machine learning algorithms. I am sarching for a good problem, that could be solved by these methods/algorithms

muteXe
January 17th, 2012, 01:12 PM
http://en.wikipedia.org/wiki/Genetic_algorithm#Problem_domains

wish i could help some more. I haven't done GA stuff for nearly 10 years i'm afraid :(

PaulM1985
January 17th, 2012, 06:17 PM
What about implementing a program that solves path finding using A*? Path finding was a project that I had to do when I went to uni.

Paul

Barrucadu
January 17th, 2012, 06:20 PM
Make this: http://xkcd.com/720/

muteXe
January 17th, 2012, 06:25 PM
I like it :)

rpupa
January 22nd, 2012, 03:53 PM
I think i will be making a simple game program in prolog. Thanks guys for your ideas and answers

KdotJ
January 22nd, 2012, 11:13 PM
I +1 the path finding solutions. Have a look at the numerous popular tree/graph search algorithms like BFS, DFS, UCS, A*, Dijkstra's, Hill Climbing... etc