The science and engineering of making intelligent machines.
11
votes
2answers
3k 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 ...
45
votes
11answers
7k views
Good beginners material on Prolog [closed]
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.
12
votes
9answers
15k 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 ...
1
vote
3answers
163 views
How to get a single entity from an image?
I am using this image. I would like to have only the human part from this image. I don't want the background of this image.
How to do this? Any logic, links or the best and simple way?
here is the ...
117
votes
21answers
9k views
What are good examples of solutions to neural network problems? [closed]
I'd like to know about specific problems that have been solved using artificial neural network techniques and what libraries/frameworks you used if you didn't roll your own.
Questions:
What ...
54
votes
18answers
25k 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 ...
83
votes
10answers
25k views
Why is Lisp used for AI? [closed]
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 ...
61
votes
5answers
34k 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?
29
votes
20answers
32k views
What is a good programming language for AI? [closed]
Besides Lisp and Prolog what is a good programming language for programming intelligent systems?
4
votes
2answers
4k views
support vector machines in matlab
Could you give an example of classification of 4 classes using Support Vector Machines (SVM) in matlab something like:
atribute_1 atribute_2 atribute_3 atribute_4 class
1 2 3 ...
21
votes
6answers
9k views
Neural Network example in .NET [closed]
Any good tutorial with source that will demonstrate how to develop neural network (step bay step for dummies ;-))
38
votes
8answers
9k 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?
...
39
votes
4answers
18k 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 ...
27
votes
10answers
2k 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 ...
20
votes
3answers
15k views
whats is the difference 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 ...