Minimal Conflict in Artificial Intelligence
Consider the knowledge base false :- a. false :- b,c. a :- d. b :- e. c :- d,f. c :- g. c :- h. Given that {d,e,f,g,h} is the set of assumables, what is the set of minimal conflicts…
Consider the knowledge base false :- a. false :- b,c. a :- d. b :- e. c :- d,f. c :- g. c :- h. Given that {d,e,f,g,h} is the set of assumables, what is the set of minimal conflicts…
I am trying to develop an android (java) project for my Artificial Intelligent thesis. It is shortly based on story reading and word quiz. One person reads a story and marks the words that he doesnt know. These words are…
I am reading the book Artificial Intelligence: A Modern Approach. I came across this sentence describing the time complexity of uniform cost search: Uniform-cost search is guided by path costs rather than depths, so its complexity is not easily characterized…
I am trying to construct a small application that will run on a robot with very limited sensory capabilities (NXT with gyroscope/ultrasonic/touch) and the actual AI implementation will be based on hierarchical perceptual control theory. I'm just looking for some…
I have this Backpropagation implementation in MATLAB, and have an issue with training it. Early on in the training phase, all of the outputs go to 1. I have normalized the input data(except the desired class, which is used to…
I'm looking for a game which will allow me to test various artificial intelligence, reinforcement learning and machine learning algorithms. It would be great, if there will be good documentation or even helpful framework for writing AI. I know about…
I am looking for C and C++ implementations of artificial intelligence algorithms useful in games. Some of the ones I am most interested in are reinforcement learning algorithms, genetic algorithms and neural networks. Any others are interesting too, however. I…
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 make an AI for this game. AI…
At once I am not particularly angry about this issue, maybe it is not for this site). So I recently became interested in artificial intelligence, but Mey concerned about how to do it, I wrote a small program that imitate…
I am currently working on an artificial intelligence project in which an agents needs to push and pull boxes from their original position to a certain goal position. The project will then be expanded to include multiple agents, so we…