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.

Admissible Heuristic Manhattan Distance

I recently started an introductory course to Artificial Intelligence and I have been given an assignment to implement an admissible …

algorithm artificial-intelligence a-star heuristics
Creating an AI for BlackJack

I am trying to make a Blackjack game! I am successful with player interaction! However, I decided to step it …

java artificial-intelligence blackjack
Understanding The Value Iteration Algorithm of Markov Decision Processes

In learning about MDP's I am having trouble with value iteration. Conceptually this example is very simple and makes sense: …

python algorithm artificial-intelligence markov
Training feedforward neural network for OCR

Currently I'm learning about neural networks and I'm trying to create an application that can be trained to recognize handwritten …

artificial-intelligence neural-network ocr backpropagation feed-forward
Gomoku array-based AI-algorithm?

Way way back (think 20+ years) I encountered a Gomoku game source code in a magazine that I typed in for …

algorithm artificial-intelligence gomoku weighted
What is the difference between Local beam search and Stochastic beam search?

I know that both of them select K randomly, and then choose the best K, as I understand the best …

algorithm artificial-intelligence beam-search
Designing a twenty questions algorithm

I am interested in writing a twenty questions algorithm similar to what akinator and, to a lesser extent, 20q.net …

algorithm artificial-intelligence puzzle
How to create an evaluation function for a TIC-TAC-TOE variant game

I'm actually working on a board game which is a variant of the TIC-TAC-TOE game. The specifics of the game …

artificial-intelligence minmax evaluation-function
Breadth first search branching factor

The run time of BFS is O(b^d) b is the branching factor d is the depth(# of level) …

performance algorithm artificial-intelligence breadth-first-search
Getting Started with Neural Networks (ANN)?

I've been involved with a lot of C-Programming and RT-Linux, now I want to do some Artificial Neural Networking. BUT: …

artificial-intelligence machine-learning neural-network evolutionary-algorithm real-time-systems