Top "Artificial-intelligence" questions

Artificial intelligence (AI) is the branch of computer science and technology that studies the development of machines able to simulate aspects of human intelligence.

Alpha-beta pruning for Minimax

I have spent a whole day trying to implement minimax without really understanding it. Now, , I think I understand how …

algorithm language-agnostic artificial-intelligence minimax alpha-beta-pruning
What does dimensionality reduction mean?

What does dimensionality reduction mean exactly? I searched for its meaning, I just found that it means the transformation of …

machine-learning artificial-intelligence data-mining terminology
How can I implement the unification algorithm in a language like Java or C#?

I'm working through my AI textbook I got and I've come to the last homework problem for my section: "Implement …

artificial-intelligence predicate unification
Prerequisites Needed to Read Books on Neural Networks (and understand them)

I've been trying to learn about Neural Networks for a while now, and I can understand some basic tutorials online, …

math computer-science artificial-intelligence neural-network
How do you derive the time complexity of alpha-beta pruning?

I understand the basics of minimax and alpha-beta pruning. In all the literature, they talk about the time complexity for …

time-complexity artificial-intelligence alpha-beta-pruning
Forward chaining and Backward chaining in java

What will be the best approach to implement forward chaining and backward chaining for reasoning process in java? We have …

java algorithm artificial-intelligence inference reasoning
Solving the n-queen puzzle

I have just solved the nqueen problem in python. The solution outputs the total number of solutions for placing n …

python r artificial-intelligence backtracking n-queens
Alpha-beta prunning with transposition table, iterative deepening

I'm trying to implement alpha-beta min-max prunning enhanced with transposition tables. I use this pseudocode as reference: http://people.csail.…

algorithm artificial-intelligence chess alpha-beta-pruning minmax
Are games the most complex / impressive applications?

I was thinking today about what could be the most complex / impressive application ever written. So I started thinking of …

artificial-intelligence complexity-theory
How do we determine the time and space complexity of minmax?

I am having some trouble determining space and time complexities. For example, if I have a tree that has a …

artificial-intelligence big-o complexity-theory minimax