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.

How does Content-Aware fill work?

In the upcoming version of Photoshop there is a feature called Content-Aware fill. This feature will fill a selection of …

algorithm graphics image-processing artificial-intelligence photoshop
Can someone give me an example of admissible heuristic that is not consistent?

In this figure: let's assume that h(C)=1 If f(A)=g(A)+h(A)=0+4=4, and f(C)=g(C)+…

algorithm artificial-intelligence heuristics
Completeness of depth-first search

I quote from Artificial Intelligence: A Modern Approach: The properties of depth-first search depend strongly on whether the graph-search or …

tree artificial-intelligence graph-theory graph-traversal search-tree
How does a back-propagation training algorithm work?

I've been trying to learn how back-propagation works with neural networks, but yet to find a good explanation from a …

artificial-intelligence computer-science neural-network backpropagation
Convolutional Neural Networks - Multiple Channels

How is the convolution operation carried out when multiple channels are present at the input layer? (e.g. RGB) After …

computer-vision artificial-intelligence neural-network convolution
Solving the Tower of Hanoi by using a good state space and then a search tree

I want to solve the "Towers of Hanoi" problem by using a good "state space". Using an appropriate state space …

artificial-intelligence towers-of-hanoi
How do I define a fitness function?

I'm working on a project which will have a selected set of data and each data will have different attributes. …

artificial-intelligence genetic-algorithm evolutionary-algorithm fitness
How to optimally solve the flood fill puzzle?

I like playing the puzzle game Flood-It, which can be played online at: https://www.lemoda.net/javascript/flood-it/game.…

algorithm search artificial-intelligence a-star flood-fill
What kind of artificial intelligence jobs are out there?

Throughout my academic years in computer science I fell in love with many aspects of artificial intelligence. From expert systems, …

artificial-intelligence neural-network data-mining
Pacman Ghost AI

I'm currently making a pacman game in java. I have a question about the ghosts though. I understand that the …

java artificial-intelligence pacman