Tagged Questions

Artificial intelligence (AI) is the intelligence of machines and the branch of computer science that aims to create it. While there are many different definitions, AI textbooks define the field as "the study and design of intelligent agents" where an intelligent agent is a system that perceives its ...

learn more… | top users | synonyms (1)

8
votes
2answers
1k views

Store orientation to an array - and compare

I want to achieve the following: I want the user to be able to "record" the movement of the iPhone using the gyroscope. And after that, the user should be able to replicate the same movement. I ...
31
votes
11answers
4k views

Good beginners material on Prolog

I am looking for good beginners material on Prolog, both online and printed. I am not only interested in 'learning the language' but also in background and scientific information.
104
votes
21answers
6k views

What problems have you solved using artificial neural networks? [closed]

I'd like to know about specific problems you - the SO reader - have solved using artificial neural network techniques and what libraries/frameworks you used if you didn't roll your own. Questions: ...
11
votes
9answers
8k views

How to recognize rectangles in this image?

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 ...
3
votes
3answers
1k views

comparing images programmatically - lib or class

My objective is to supply 2 image files, and get a true/false response as to whether these 2 files could be the same (within an acceptable degree of certainty). I realize this question falls under ...
22
votes
34answers
3k views

Which books have really interesting source code and explain it well?

I am looking for books that present interesting software system at the source code level. One such book which I loved is Building Problem Solvers. It presents a series of truth-maintenance systems ...
26
votes
15answers
9k views

source of historical stock data

I'm trying to make a stock market simulator (perhaps eventually growing into a predicting AI), but I'm having trouble finding data to use. I'm looking for a (hopefully free) source of historical stock ...
63
votes
11answers
16k views

Why is Lisp used for AI?

I've been learning Lisp to expand my horizons because I have heard that it is used in AI programming. After doing some exploring, I have yet to find AI examples or anything in the language that would ...
7
votes
4answers
562 views

'Similarity' in Data Mining

In the field of Data Mining, is there a specific sub-discipline called 'Similarity'? If yes, what does it deal with. Any examples, links, references will be helpful. Also, being new to the field, I ...
2
votes
3answers
939 views

Shortest path algorithm (eg. Dijkstra's) for 500+ waypoints/nodes?

I've asked about a shortest path algorithm here: 2D waypoint pathfinding: combinations of WPs to go from curLocation to targetLocation (To understand my situation, please read that question as well ...
87
votes
36answers
14k views

What problems have you solved using genetic algorithms/genetic programming? [closed]

Genetic algorithms (GA) and genetic programming (GP) are interesting areas of research. I'd like to know about specific problems you - the SO reader - have solved using GA/GP and what ...
33
votes
23answers
8k views

Best books, blogs, link, reading about AI and machine learning [closed]

I think that AI might be a precious tool in the developer's toolbox, and I'd like to know more about this field hoping that it will make my life easier as a developer. Can you recommend some ...
21
votes
7answers
5k views

Natural Language Processing in Ruby

I'm looking to do some sentence analysis (mostly for twitter apps) and infer some general characteristics. Are there any good natural language processing libraries for this sort of thing in Ruby? ...
16
votes
19answers
19k views

What is a good programming language for AI?

Besides Lisp and Prolog what is a good programming language for programming intelligent systems?
3
votes
5answers
790 views

How do you get Python to write down the code of a function it has in memory?

When I pass the options in the program (a computational biology experiment) I usually pass them through a .py file. So I have this .py file that reads like: starting_length=9 starting_cell_size=1000 ...
3
votes
2answers
319 views

Einsteins Riddle Prolog

I need some help with a prolog homework for my AI class. The question is to write prolog code for einstein's puzzle. I know how to write it down in my own but there are some constraints in the ...
-1
votes
5answers
1k views

Interested in Collective Programming for the web — Ruby or Python or PHP?

For something like a personal recommendation system, machine learning type of stuff on a website, what language would be best?
31
votes
15answers
5k views

Predict Stock Market Values

I'm building a web semantic project that gathers the maximum ammount of historic data about a certain company and tries to predict its future market stock values. For data I have the historic stock ...
18
votes
6answers
5k views

Neural Network example in .NET

Any good tutorial with source that will demonstrate how to develop neural network (step bay step for dummies ;-))
14
votes
7answers
1k views

As a novice which book should I buy about Artificial Intelligence?

I'm taking an introductory course about Artificial Intelligence. It's mainly a survey of famous techniques, without any practical laboratory or assignment, and seems quite pointless to me. I want to ...
23
votes
9answers
4k views

How to optimally solve the flood fill puzzle?

I like playing the puzzle game Flood-It, which can be played online at: http://floodit.appspot.com/ It's also available as an iGoogle gadget. The aim is to fill the whole board with the least number ...
51
votes
5answers
26k views

How do 20 questions AI algorithms work?

Simple online games of 20 questions powered by an eerily accurate AI. How do they guess so well?
18
votes
1answer
702 views

Applying machine learning to a guessing game?

I have a problem with a game I am making. I think I know the solution(or what solution to apply) but not sure how all the ‘pieces’ fit together. How the game works: (from How to approach number ...
8
votes
8answers
1k views

Books on Genetic algorithms or AI in general [closed]

What books/tutorials do you recommend for learning Genetic algorithms, or AI in general? I'd prefer language agnostic.
12
votes
8answers
601 views

Language Requirements for AI Development [closed]

Possible Duplicate: Why is Lisp used for AI? Hey guys,im kind of curious as to what makes a language suitable for Artificial Intelligence development. Ive heard that LISP and Prolog are ...
15
votes
4answers
9k views

Role of Bias in Neural Networks

I'm a newbie to the world of ANN. I'm aware of the Gradient Descent and the Back-propagation Theorem. What I don't get is , when is using a bias important? and how? For example, when mapping the AND ...
7
votes
6answers
2k views

What is the best way to get started in artificial intelligence programming? [closed]

I have been looking for AI resources, but most books and material seems to be theory only. I would like to know about material that have more to do with the programming side of the thing. Where can i ...
11
votes
2answers
6k views

whats the diference between train, validation and test set, in neural networks?

Im using this library http://pastebin.com/raw.php?i=aMtVv4RZ to implement a learning agent. I have generated the train cases, but i dont know for sure what are the validation and test sets, the ...
2
votes
3answers
4k views

Implementing and ploting a perceptron in MATLAB

I´m reviewing a code from Toronto perceptron MATLAB code The code is function [w] = perceptron(X,Y,w_init) w = w_init; for iteration = 1 : 100 %<- in practice, use some stopping criterion! ...
11
votes
8answers
515 views

Is there any self-improving compiler around?

I am not aware of any self-improving compiler, but then again I am not much of a compiler-guy. Is there ANY self-improving compiler out there? Please note that I am talking about a compiler that ...
1
vote
1answer
1k views

Neural network using MATLAB

I have a training set that has input and outputs in this way: Input: 0.832 64.643 0.818 78.843 1.776 45.049 0.597 88.302 1.412 63.458 1.468 49.535 1.985 33.387 2.073 30.279 1.431 55.231 1.116 68.521 ...
5
votes
20answers
1k views

Which language should I use?

I'm about to produce a prototype for a technology startup that I've just joined, and I'm trying to decide which language to use. It's going to be a simple web tool with a MySQL database in the ...
9
votes
9answers
1k views

Why does A* path finding sometimes go in straight lines and sometimes diagonals? (Java)

I'm in the process of developing a simple 2d grid based sim game, and have fully functional path finding. I used the answer found in my previous question as my basis for implementing A* path finding. ...
6
votes
7answers
1k views

Pseudocode interpreter?

Like lots of you guys on SO, I often write in several languages. And when it comes to planning stuff, (or even answering some SO questions), I actually think and write in some unspecified hybrid ...
4
votes
3answers
1k views

Generating non-uniform random numbers

Can you tell me any ways to generate non-uniform random numbers? I am using Java but the code examples can be in whatever you want. One way is to create a skewed distribution by adding two uniform ...
3
votes
2answers
120 views

How to programmatically determine what language the content of a website is written in

I would like to programmatically determine language that content of a website is written in. The only thing that comes into my mind is to compare content of the website with some set of words that ...
3
votes
1answer
286 views

Why is a bias neuron necessary for a backpropagating neural network that recognizes the XOR operator?

I posted a question yesterday regarding issues that I was having with my backpropagating neural network for the XOR operator. I did a little more work and realized that it may have to do with not ...
3
votes
4answers
2k views

Lisp and Prolog for Artificial Intelligence?

Now since i've taken a class 3 years ago in A.I. im clearly proficient enough to ask this question......just kidding just kidding ;) but seriously, what is it about these languages that make them so ...
1
vote
4answers
300 views

Which AI books/material would you recommend?

I've always found artificial intelligence interesting, and took a uni course in basic AI; the final project was to write a C++ program which solved Sokoban puzzles. This has motivated me to study AI ...
-2
votes
1answer
190 views

How to create a plagiarism detector of c++ files [closed]

hi a am a student and a have a project "plagiarism detector in c++ and java files" and i am in trouble i want(i hope to want) to see an example exist , a project in that title or a documentation in ...
42
votes
8answers
3k views

Neural networks - obsolete? [closed]

According to an answer from here, artificial neural networks are obsoleted by Support Vector Machines, Gaussian Processes, generative and descriptive models. What is your opinion?
28
votes
8answers
4k views

When to use Genetic Algorithms vs. when to use Neural Networks?

Is there a rule of thumb or set of examples to determine when to use Genetic Algorithms versus when to use Neural Networks to solve a problem? I know there are cases in which you can have both ...
16
votes
4answers
6k views

My own OCR-program in Python

I am still a beginner but I want to write a character-recognition-program. This program isn't ready yet. And I edited a lot, therefor the comments may not match exactly. I will use the 8-connectivity ...
16
votes
11answers
2k views

Resources for Game Artificial Intelligence [closed]

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. What are some of the books/resources are ...
8
votes
9answers
3k views

Using Artificial Intelligence (AI) to predict Stock Prices

Given a set of datavery similar to the Motley Fool CAPS system, where individual users enter BUY and SELL recommendations on various equities. What I would like to do is show each recommendation and ...
11
votes
4answers
3k views

Artificial Inteligence library in python

I was wondering if there are any python AI libraries similar to aima-python but for a more recent version of python... and how they are in comparison to aima-python. I was particularly interested in ...
22
votes
10answers
1k views

Is it possible for a computer to “learn” a regular expression by user-provided examples?

Is it possible for a computer to "learn" a regular expression by user-provided examples? To clarify: I do not want to learn regular expressions. I want to create a program which "learns" a regular ...
16
votes
7answers
4k views

Any good card game AI strategies?

What would be strategies for writing a good computer opponent for a card game? Most card games are games of incomplete information, so simply mapping out and traversing the game tree as one could do ...
25
votes
7answers
7k views

How does Dijkstra's Algorithm and A-Star compare?

I was looking at what the guys in the Mario AI Competition have been doing and some of them have built some pretty neat Mario bots utilizing the A* (A-Star) Pathing Algorithm. (Video of Mario A* ...
5
votes
6answers
5k views

What is the best artificial-intelligence library for Python?

I know of NLTK. What else is there that complements this library? Or can do AI? NLTK is great because I can learn it with the book that it came out. Is there a library for AI just like this?

1 2 3 4 5 6