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.

Iterative deepening vs depth-first search

I keep reading about iterative deepening, but I don't understand how it differs from depth-first search. I understood that depth-first …

algorithm search artificial-intelligence depth-first-search iterative-deepening
Why should weights of Neural Networks be initialized to random numbers?

I am trying to build a neural network from scratch. Across all AI literature there is a consensus that weights …

machine-learning neural-network artificial-intelligence mathematical-optimization gradient-descent
Unsupervised clustering with unknown number of clusters

I have a large set of vectors in 3 dimensions. I need to cluster these based on Euclidean distance such that …

algorithm math artificial-intelligence machine-learning cluster-analysis
Is it possible to use OpenCV or similar library in Javascript?

Can we use OpenCV from Javascript? Is there such implementation? Is there any JS libraries that can be used for …

javascript html opencv artificial-intelligence face-detection
What would be a good AI strategy to play Gomoku?

I'm writing a game that's a variant of Gomoku. Basically a tic tac toe on a huge board. Wondering if …

artificial-intelligence minimax gomoku
Comparison between luis.ai vs api.ai vs wit.ai?

Does anyone know the specific differences and features among the three, Or if one has more features/more flexible to …

artificial-intelligence wit.ai azure-language-understanding dialogflow-es
Simple multi layer neural network implementation

some time ago I have started my adventure with machine learning (during last 2 years of my studies). I have read …

python machine-learning artificial-intelligence neural-network
Difference between "Edge Detection" and "Image Contours"

I am working on the following code: #include <iostream> #include <opencv2/core/core.hpp> #include <…

c++ image opencv image-processing artificial-intelligence
Is the greedy best-first search algorithm different from the best-first search algorithm?

Is the greedy best-first search algorithm different from the best-first search algorithm? The wiki page has a separate paragraph about …

algorithm search artificial-intelligence best-first-search