The science and engineering of making intelligent machines.
0
votes
0answers
15 views
Some problems with the encoding of a txt file used in a Prolog program running on Linux system
I am working on an universitary Prolog that consist in a SWI Prolog text analyzer that very simplistically do the following things:
Read a .txt input file that contains some text and put this text ...
0
votes
0answers
7 views
Opensource tool which accepts freeform posts from a forum and structures, tags and formats the information to appear on a wiki
Is there some sort of Artificial Intelligence engine which one can point at a set of forum posts (say a set of search results like http://www.shapeoko.com/forum/search.php?keywords=driveshaft ) and ...
-5
votes
0answers
34 views
Neural Network Player against Random Player [closed]
I'm designing a checkers game. A player using a neural network will play against another player which plays randomly.
If player which use neural network makes a move and if the game ends, neural ...
0
votes
0answers
19 views
AlphaBeta Pruining Trouble
I'm trying to implement a simple AlphaBeta Pruining example as follows:
Currently my program appears to be pruining correctly but when propogating the values up the tree, for some reason both ...
3
votes
3answers
62 views
Machine learning algorithms: which algorithm for which issue?
I am new at the domain of machine learning and i have noticed that there are a lot of algorithms/ set of algorithms that can be used: SVM, decision trees, naive bayes, perceptron etc...
That is why I ...
2
votes
3answers
178 views
Sudoku solving algorithm C++
I'm trying to make a Sudoku Solving program for a couple of days but I'm stuck with the methods. I found this algorithm here but I don't really understand it:
start at the first empty cell, and ...
-1
votes
1answer
29 views
Write a Prolog DCG grammar that handle the mean of a sentence and also build its parse tree
I have this DCG grammar that understand and agree phrases like: [john, paints] and [john, likes, mary] managing the semantic meaning directly into the DCG grammar by the use of parameters
...
1
vote
1answer
59 views
AI: Graph search and A* implementation
i have a problem. First of all sorry for my bad english but i am Italian :D
This is my project for AI course at University of Florence. I have to solve a classic game: Sliding Puzzle with 8 and 15 ...
-2
votes
0answers
38 views
Neural network Libraries for python 3? [closed]
Are there any good neural network libraries for python 3? I was looking at PyBrain, but it doesn't seem to be compatible with the 3.x series. Any suggestions? Remember Python 3!
2
votes
0answers
34 views
AND/OR graph tutorial
I need to model one of my computer vision research problem using AND/OR graph. But after hours of searching I failed to find a decent tutorial about the basics of AND/OR graph except very little ...
0
votes
0answers
33 views
HTML5 2D Game - 100% Accurate AI?
I've been recreating the classic Asteroids in JavaScript using canvas and am pretty new to game dev. I was wondering is it possible to create an AI that has a 100% success rate of hitting the player ...
1
vote
0answers
41 views
fill missing values of sequence with neural networks
I want to make a little project and I want to use neural networks with python. I found that pybrain is the best solution. But until now, all the examples and questions I have found, cannot help me.
I ...
1
vote
1answer
29 views
How to adapt my Minimax search tree to deal with no term based game
Good day,
I have to do a project where we need to implement mancala board game, and then also implement the AI for it.
We have been instructed that we need to modify or change a minimax tree to be ...
-5
votes
0answers
27 views
Why is the number of sequences in 8 queens probles is 2057? [closed]
In 8 queen puzzle, to reduce the search space, we use the incremental approach. We put the first queen in the first column, then the 2nd queen in the 2nd column etc, avoiding the slots that are ...
0
votes
1answer
61 views
PyBrain - how to validate my trained network against a test data?
So I have a ClassificationDataSet in PyBrain which I have trained with the appropriate data. Namely, the input is the following:
trainSet.addSample([0,0,0,0],[1])
trainSet.addSample([0,0,0,1],[0])
...
0
votes
1answer
28 views
Some doubts about how work this DCG grammar for subset of natural language in Prolog
I am studying DCG grammar for natural language processing using Prolog and I have some doubts about if I have understand it correctly or if I am missing something.
This is my DCG grammar:
...
-2
votes
0answers
47 views
AI - Classification vs regression
I am given a training set and I need to answer the following questions.
(e) Train the network on the even-numbered patterns (P = 2, 4,..., 16) in trainSet for a 200 epochs. Use patterns 1, 5, 9 ...
0
votes
0answers
27 views
hierarchical pathfinding implementation
I want to divide my map in clusters and implement HPA*. Where do I start, each time I try this I run into problems. I need to implement this on a random and dynamically changing map.
I am unsure how ...
1
vote
1answer
51 views
I have a dot bouncing around an image. Need to calculate angles of reflection off of groups of pixels (surface of objects)
Suppose we have an image (pixel buffer) that is in black and white, so each pixel is either black or white (not gray scale).
Now somewhere in the middle of that images, place a green dot. It may have ...
0
votes
2answers
35 views
Doubts about simple semantic knowledge rappresentation predicate in Prolog
I am studying DCG grammar and parse tree in Prolog on Ivan Bratko book "Programming for Artificial Intelligence"
In a program that use DCG grammar to extrapolate the meaning of a sentence I find ...
0
votes
1answer
31 views
In neural networks, does a bias change the threshold of an activation function?
I have read some other question (and related answers) about this, but I still have a doubt : adding a bias to a threshold activation function, will change the threshold? As far as I know, adding a ...
1
vote
2answers
35 views
Minimax tree where a player can move multiple times in a row
Having played around with turn-based games using Minimax and Alpha-Beta Pruining, how would one handle games where the same player can have multiple consecutive moves if some condition is met?
2
votes
1answer
30 views
Timer AI not working
var moveTimer:Timer = new Timer(1);
moveTimer.addEventListener(TimerEvent.TIMER, timerListener);
function timerListener (e:TimerEvent):void
{
//code
...
-3
votes
0answers
43 views
which AI algorithm should I use for this situation? [closed]
I'm totally new to AI and wondering which algorithm I should use for the following situation:
The goal is to bring food back to base as fast as possible.
Initially, some ants leave the base to ...
0
votes
1answer
40 views
Some doubts related about how work a meaning predicate that interprets the parse tree of a DCG grammar in Prolog
I am studying Prolog DCG grammar* and **parse tree on the Ivan Bratko book: "Programming for Artificial Intelligence"
I am finding some difficulties with the following example that provide a DCC ...
2
votes
0answers
93 views
In training a neural network, must you include a bias?
I'm actually working on answering this question (from an examination):
Show in tabular form the first five epochs of the training of a
perceptron to perform the Boolean OR operation; using ...
0
votes
1answer
23 views
Program that “mean” a parse tree in Prolog, don't work
I am studying DCG grammar and parse tree using the Ivan Bratko book: Programming fro Artificial Intelligence.
On the book I found the following example that show a DCC grammar that also generate a ...
0
votes
1answer
22 views
Artificial player evaluation
I have a problem concerning a board game I'm creating. I plan on making an artificial player for the game using MiniMax with AlphaBeta prunning, but I'm not sure how to evaluate ir the player is good ...
-1
votes
1answer
21 views
Some doubts related DCG grammar and parse tree relation in Prolog
I am studying DCG grammar and parse tree in Prolog using Ivan Bratko book: "Programming for Artificial Intelligence"
I have some doubt about my interpretation of this DCG grammar that generate a ...
2
votes
0answers
17 views
Learning of Outcome Space Given Noisy Actions and Non-Monotonic Reinforcment
I'm looking to construct or adapt a model preferably based in RL theory that can solve the following problem. Would greatly appreciate any guidance or pointers.
I have a continuous action space, ...
0
votes
1answer
26 views
Depth or Breadth first search?
In the 8 queens problem which search would be more efficient in finding a solution, and why would this be the case?
For anyone who dosnt know what the 8 queens problem is, it is basically how to ...
1
vote
3answers
62 views
Machine learning in simple car racing game
My task is to create a simple, 2D, view from above car racing game. The only game in this game to achieve the best result in time as possible. The player can wheel the car and can speed up or slow ...
-1
votes
1answer
32 views
Some doubts about how Prolog automatically convert DCG grammars int a set of rules
I am studying DCG grammar in Prolog using Ivan Bratko book: "Programming for Artificial Intelligence" and I am finding some problem to understand how Prolog automatically convert a DCG grammar into a ...
-1
votes
0answers
39 views
how to program a condition for passing a ball to nearest friend using only one ball in netlogo
hye..i newbie in netlogo program..i have a project to submit..My target is to create the program which only one agent can set one-of it neighbors to red color. I had already try using the id-number ...
0
votes
1answer
27 views
Artificial Intelligence using sql query/stored procedure
I'm making an application that should organize employees to jobs.
One employee can't be in two jobs simultaneously.
Every employee has one or more qualifications.
Every job has one or more ...
1
vote
1answer
27 views
Crossover different length genotypes
E.g. I have two random representatives
1 6 8 9 0 3 4 7 5
and
3 6 5 7 8 5
What are the ways to crossover them?
Add some empty numbers (or operations or sth) on the end of every genotype so ...
0
votes
1answer
32 views
Some doubts about BNF grammars and Prolog's DCG grammars
I am studying grammars in Prolog and I have a litle doubt about convertions from the classic BNF grammars to the Prolog DCG grammars form.
For example I have the following BNF grammar:
<s> ::= ...
-2
votes
0answers
22 views
Any Possible solution of detecting the type of content [closed]
I have been researching on language processing. What My main goal is to detect type of content by checking its words. So for example I have a text like this
2 people died in a ship accident in ...
0
votes
0answers
19 views
Represent the state of a Highschool schedule
I am trying to schedule a large amount of students across 6 periods. Students have already chosen the courses they want to take (each take 5-6 classes). Courses have been created and teachers assigned ...
0
votes
2answers
57 views
Artificial Intelligence for card battle based game
I want to make a game card battle based game. In this cards have specific attributes which can increase player's hp/attack/defense or attack an enemy to reduce his hp/attack/defense
I am trying to ...
1
vote
1answer
18 views
BFS visit in Prolog, why this program don't work?
I have take this program that impement BFS visit algorithm from Ivan Bratko book: "Programming for Artificial Intelligence".
It's logic is pretty clear form me (I have commented the lines of code ...
1
vote
2answers
39 views
Iterative deepening with Max depth constraint in Prolog
I have to modify the following Prolog program that implements the iterative deepening dfs search on a graph:
s(a, b).
s(b, c).
s(c, d).
s(a, d).
goal(d).
/* Solution is the inverse list of the ...
1
vote
1answer
27 views
Getting all nodes that have atleast 2 nodes connected to them
Having some issues with a prolog question:
The following clauses represent a directed graph, where nodes are
atoms, and edges are denoted by the connected predicate. Given that
the following ...
-1
votes
1answer
42 views
cyman mark two open souce code [closed]
This isn't a programming/coding question, but i figured you guys would know the most about it since the information about it on Google is scarce.
I have been using an app named Cyman mark 2 for a few ...
-3
votes
0answers
15 views
MSc research Topic Statistics [closed]
If any one for good MSc research Topic for Statistics, which is including computing also please tell me, my major subject is stat and I m passionate about computing so if that topic including both ...
0
votes
0answers
27 views
How to un-break a once nice (albeit embarrassingly) parallel algorithm
Imagine you have a big labyrinth with lots of doors, lots of entries and lots of exits, where millions of robots traverse the labyrinth every day. The algorithm that a particular robot will use is ...
0
votes
1answer
49 views
AForge.NET - Backpropagation learning always returns values [-1;1]
I have some problem with backpropagation learning using AForge.NET - Neuro Learning - Backpropagation . I actually try to implement neural network as in samples (Aproximation). My problem is about ...
-1
votes
0answers
21 views
Stock Market Simulation with JADE [closed]
Anyone has used a simple Stock Market Simulation with JADE framework.
I’m looking for sample code to get some idea about the market dynamic simulation with multi-agent platforms.
Can anyone point ...
1
vote
0answers
19 views
Algorithm for exploring/filling grid map
I'm working on a small game that takes place on a grid map. I'd like to write an AI that is able to explore the grid map by filling as much of its available space as possible.
From any given position ...
-5
votes
0answers
25 views
An admissible heuristic function - yes or no? [closed]
Consider the following heuristic functions for 8-puzzle:
h=Number of steps to the goal state if the only moves possible were to swap the
positions of two tiles (or the blank), regardless of the ...

