Intelligent agents "textbook"

I recently met Intelligent Agents by reading this book: link text

I am interested in finding a good book for beginners, so I can begin to implement such a system. I also tried reading “Multiagent Systems: A Modern Approach to Distributed Artificial Intelligence” (can't find it on amazon), but that's not what I'm looking for. Thanks for the help:).

+4
source share
3 answers

An agent’s viewpoint is simply an abstraction of convenience. There is nothing magical about agents. This is a way of thinking about software processes that can be transferred from one system to another.

So yes, if you want your agents to be smart, you need to understand the AI ​​algorithms.

+2
source

There are many classic books:

The first two are the lightest, and the second is more lightweight. However, there is little "pragmatic" or "engineering" material. And math is pretty demanding, but the whole area. I think you will do your best with O'Reilly to program collective intelligence , as it focuses on programming.

+1
source

The book you contacted is a collection of invited scientific papers , which means that this is a rather complicated book if you are just starting to work in intelligent systems.

In fact, there are two interpretations of intelligent systems:

(a) Artificial intelligence , mainly studied by the computer science community. AI is engaged in machine learning, knowledge representation and reasoning, teaching and planning methods. AI is the development of algorithms. Absolute reference to AI: " Artificial Intelligence, a modern approach "

Although you mean this interpretation, in case of your interest, here is the second:

(b) Intelligent control systems , mainly studied by electrical engineers. He is engaged in the development of intelligent systems capable of adapting to environmental changes, capable of learning, capable of making intelligent decisions, etc. Intelligent systems deal with the development of mathematical models of “intelligence” that can be applied to real systems to optimize their performance (or some other measures). The tools used are mainly adaptive control, neural networks and optimization methods. There is not so easy to follow a book on this subject, however some excellent articles here and . Also a great link to Neural Networks - " Neural Networks, a comprehensive foundation

+1
source

Source: https://habr.com/ru/post/1299931/


All Articles