0
votes
2answers
25 views
Information mining, classification, modification
Any examples, tips, guidance for the following scenario?
I have retrieved updates from several different news websites. I then analyse that information to predict on current trend in the world.
I …
3
votes
3answers
134 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 …
1
vote
2answers
90 views
Any python Support Vector Machine library around that allows online learning?
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 …
2
votes
2answers
50 views
What are the uses of recurrent neural networks when using them with Reinforcement Learning?
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 …
2
votes
3answers
93 views
Programming a chess AI
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 …
2
votes
8answers
139 views
Building a reverse language dictionary
I was wondering what does it take to build a reverse language dictionary.
The user enters something along the lines of: "red edible fruit" and the application would return: "tomatoes, strawberries, …
2
votes
5answers
87 views
How to create a smart chat-bot?
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:
I have a model (assume that is's bot's memory), …
2
votes
2answers
155 views
pacman AI solution in python
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 …
0
votes
1answer
34 views
Natural language rendering
Do you know any frameworks that implement natural language rendering concept ?
I've found several NLP oriented frameworks like Anthelope or Open NLP but they have only parsers but not renderers or …
1
vote
1answer
56 views
Improving Q-Learning
Hello
I am currently using Q-Learning to try to teach a bot how to move in a room filled with walls/obstacles. It must start in any place in the room and get to the goal state(this might be, to the …
2
votes
2answers
59 views
What are some good resources on flocking and swarm algorithms?
Awhile ago I read the novel Prey. 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 …
2
votes
5answers
220 views
Quantum Tic Tac Toe AI
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.
The professor …
4
votes
3answers
150 views
Why is the complexity of A* exponential in memory?
Wikipedia says on A* complexity the following (link here):
More problematic than its time
complexity is A*’s memory usage. In
the worst case, it must also remember
an exponential number of …
5
votes
7answers
148 views
Determining the best k for a k nearest neighbour
I have need to do some cluster analysis on a set of 2 dimensional data (I may add extra dimensions along the way).
The analysis itself will form part of the data being fed into a visualisation, …
2
votes
3answers
71 views
Applications of Unification?
What are (practical) applications of
Unification ? Where it is been
used in real world?
I couldn't get the whole idea of what it is really about and why its considered as a part of Artificial …
