Questions tagged [intelligent-agent]

For questions related to the concept of (intelligent) agents in artificial intelligence.

In artificial intelligence, an intelligent agent (IA) is an autonomous entity which observes through sensors and acts upon an environment using actuators (i.e. it is an agent) and directs its activity towards achieving goals (i.e. it is "rational", as defined in economics). Intelligent agents may also learn or use knowledge to achieve their goals. They may be very simple or very complex: a reflex machine such as a thermostat is an intelligent agent.

66 questions
40
votes
6 answers

Is the Turing Test, or any of its variants, a reliable test of artificial intelligence?

The Turing Test was the first test of artificial intelligence and is now a bit outdated. The Total Turing Test aims to be a more modern test which requires a much more sophisticated system. What techniques can we use to identify an artificial…
Rob Murray
  • 501
  • 5
  • 8
10
votes
3 answers

What are the differences between an agent and a model?

In the context of Artificial Intelligence, sometimes people use the word "agent" and sometimes use the word "model" to refer to the output of the whole "AI-process". For examples: "RL agents" and "deep learning models". Are the two words…
malioboro
  • 2,729
  • 3
  • 20
  • 46
9
votes
2 answers

What is the difference between goal-based and utility-based agents?

What is the difference between goal-based and utility-based agents? Please, provide a real-world example.
9
votes
1 answer

What are the necessary components to make an AI agent capable of self-programming?

An AI agent is often thought of having "sensors", "a memory", "machine learning processors" and "reaction" components. However, a machine with these does not necessarily become a self-programming AI agent. Beyond the parts mentioned above, is there…
Mithical
  • 2,885
  • 5
  • 27
  • 39
8
votes
1 answer

What are some examples of intelligent agents for each intelligent agent class?

There are several classes of intelligent agents, such as: simple reflex agents model-based reflex agents goal-based agents utility-based agents learning agents Each of these agents behaves slightly different from the other agents. There are…
8
votes
3 answers

How can an AI freely make decisions?

Suppose a deep neural network is created using Keras or Tensorflow. Usually, when you want to make a prediction, the user would invoke model.predict. However, how would the actual AI system proactively invoke their own actions (i.e. without the need…
7
votes
1 answer

What does the agent in reinforcement learning exactly do?

What is an agent in reinforcement learning (RL)? I think it is not the neural network behind. What does the agent in RL exactly do?
TVSuchty
  • 263
  • 3
  • 11
7
votes
2 answers

Are humans intelligent according to the definition of an intelligent agent?

Given the following definition of an intelligent agent (taken from a Wikipedia article) If an agent acts so as to maximize the expected value of a performance measure based on past experience and knowledge then it is intelligent and given that we,…
wythagoras
  • 1,511
  • 12
  • 27
6
votes
2 answers

What is the definition of rationality?

I'm having a little trouble with the definition of rationality, which goes something like: An agent is rational if it maximizes its performance measure given its current knowledge. I've read that a simple reflex agent will not act rationally in a…
5
votes
1 answer

What are the differences between an agent that thinks rationally and an agent that acts rationally?

Stuart Russell and Peter Norvig pointed out 4 four possible goals to pursue in artificial intelligence: systems that think/act humanly/rationally. What are the differences between an agent that thinks rationally and an agent that acts rationally?
Bayequentist
  • 161
  • 1
  • 6
5
votes
1 answer

What is the difference between simple reflex and model-based agents?

What is the difference between simple reflex and model-based agents? What is the role of the internal state in the case of model-based agents?
Pierre P.
  • 161
  • 1
  • 2
5
votes
3 answers

How widely accepted is the definition of intelligence by Marcus Hutter & Shane Legg?

I came across several papers by M. Hutter & S. Legg. Especially this one: Universal Intelligence: A Definition of Machine Intelligence, Shane Legg, Marcus Hutter Given that it was published back in 2007, how much recognition or agreement has it…
Aether
  • 265
  • 2
  • 7
5
votes
2 answers

What is the difference between abstract, autonomous and virtual intelligent agents?

On Wikipedia, we can read about different type of intelligent agents: abstract intelligent agents (AIA), autonomous intelligent agents, virtual intelligent agent (IVA), which I've found on other websites, e.g. this one. What are the differences…
kenorb
  • 10,423
  • 3
  • 43
  • 91
4
votes
1 answer

What is a learning agent?

What is a learning agent, and how does it work? What are examples of learning agents (e.g., in the field of robotics)?
4
votes
2 answers

What is the difference between learning and non-learning agents?

What is the difference between learning agents and other types of agents? In what ways learning agents can be applied? Do learning agents differ from deep learning?
1
2 3 4 5