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 to utilize Hebbian learning?

I want to upgrade my evolution simulator to use Hebb learning, like this one. I basically want small creatures to …

machine-learning artificial-intelligence neural-network evolutionary-algorithm
Any business examples of using Markov chains?

What business cases are there for using Markov chains? I've seen the sort of play area of a markov chain …

artificial-intelligence markov-chains
What is the theorical foundation for scikit-learn dummy classifier?

By the documentation I read that a dummy classifier can be used to test it against a classification algorithm. This …

python machine-learning artificial-intelligence scikit-learn svm
Trilateration (2D) algorithm implementation

I am trying to implement the Trilateration process in 2D. The wikipedia article relating to this: Tilateration I have found …

c++ algorithm geolocation artificial-intelligence trilateration
Simple constraint programming solver

I'm trying to get familiar with constraint programming. All documentation/videos I've seen so far just contain description of top-level …

java artificial-intelligence mathematical-optimization constraint-programming
Use pretrained model with different input shape and class model

I am working on a classification problem using CNN where my input image size is 64X64 and I want to …

machine-learning deep-learning artificial-intelligence conv-neural-network supervised-learning
implementing a perceptron classifier

Hi I'm pretty new to Python and to NLP. I need to implement a perceptron classifier. I searched through some …

python artificial-intelligence nlp machine-learning perceptron
Applications of Unification?

What are the (practical) applications of Unification? Where it is actually being used in real world? I couldn't understand the …

artificial-intelligence logic predicate unification
Eight Queens Heuristic

I am developing a heuristic to place 8 queens on 8x8 chessboard. each square has its own elimination number (to indicate …

java artificial-intelligence heuristics n-queens