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.

Crossover operation in genetic algorithm for TSP

I'm trying to solve the Travelling Salesman Problem (TSP) with Genetic algorithm. My genome is a permutation of a vertex …

c# algorithm artificial-intelligence genetic-algorithm traveling-salesman
What are the differences between simulated annealing and genetic algorithms?

What are the relevant differences, in terms of performance and use cases, between simulated annealing (with bean search) and genetic …

artificial-intelligence genetic-algorithm simulated-annealing constraint-satisfaction
How to proceed with NLP task for recognizing intent and slots

I wanted to write a program for asking questions about weather. What are the algorithms and techniques I should start …

machine-learning nlp artificial-intelligence text-processing
What is the difference between Q-learning and Value Iteration?

How is Q-learning different from value iteration in reinforcement learning? I know Q-learning is model-free and training samples are transitions (…

machine-learning artificial-intelligence reinforcement-learning q-learning
How to fetch vectors for a word list with Word2Vec?

I want to create a text file that is essentially a dictionary, with each word being paired with its vector …

machine-learning nlp artificial-intelligence word2vec
Programming a chess AI

I'm looking to try and write a chess AI. Is there something i can use on the .NET framework (or …

artificial-intelligence chess
Java Simulated Annealing from Pseudocode

I am currently working on a project (TSP) and am attempting to convert some simulated annealing pseudocode into Java. I …

java algorithm artificial-intelligence pseudocode simulated-annealing
2d trilateration

I am writing some code to participate in an AI challenge. The main objective for the AI challenge is to …

artificial-intelligence trilateration
Return bestMove in minimax algorithm for tictactoe

I have tried to code the minimax algorithm for tic-tac-toe given in Russel Norvig's book on Artificial Intelligence. It had …

c++ artificial-intelligence minimax
What is the difference between Greedy-Search and Uniform-Cost-Search?

When searching in a tree, my understanding of uniform cost search is that for a given node A, having child …

artificial-intelligence greedy