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.

Is it possible for a computer to "learn" a regular expression by user-provided examples?

Is it possible for a computer to "learn" a regular expression by user-provided examples? To clarify: I do not want …

regex artificial-intelligence theory automata
What is the difference between SGD and back-propagation?

Can you please tell me the difference between Stochastic Gradient Descent (SGD) and back-propagation?

machine-learning artificial-intelligence difference backpropagation gradient-descent
Weak Classifier

I am trying to implement an application that uses AdaBoost algorithm. I know that AdaBoost uses set of weak classifiers, …

machine-learning artificial-intelligence classification adaboost
Java Minimax Alpha-Beta Pruning Recursion Return

I am trying to implement minimax with alpha-beta pruning for a checkers game in Java. My minimax algorithm works perfectly. …

java recursion artificial-intelligence minimax alpha-beta-pruning
Simple tic-tac-toe AI

I know this has been asked a lot and I've searched other code but most of what I've seen doesn't …

javascript artificial-intelligence tic-tac-toe
Creating an AI Behavior Tree in C# - How?

I am attempting to create a "behavior tree" using C#. For anyone who doesn't know, a behavior tree is basically …

c# artificial-intelligence behavior-tree
What is the difference between monotonicity and the admissibility of a heuristic?

I'm reading over my AI textbook and I'm curious about what the difference is between monotonicity and admissibility of heuristics (…

computer-science artificial-intelligence heuristics
Continuous output in Neural Networks

How can I set Neural Networks so they accept and output a continuous range of values instead of a discrete …

artificial-intelligence neural-network
Proof of A* algorithm's optimality when heuristics always underestimates

I understand why A* algorithm always gives the most optimal path to a goal state when the heuristic always underestimates, …

algorithm search artificial-intelligence a-star
Multiple Output Neural Network

I have built my first neural network in python, and i've been playing around with a few datasets; it's going …

artificial-intelligence machine-learning neural-network probability