Are Artificial Intelligence and Dynamical Programming connected? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

Are Artificial Intelligence and Dynamical Programming connected?

I have a very personal question about the relationship between Artifical Intelligence and Dynamical Programming. Why am I asking myself about it?. When I apply Dynamical Programming I try memorize each result into my memory, at this way I can reuse those results for futures calculations and gain CPU time. This it can occur with AI. Each result is transformed in knowledge, and that knowledge take a decisions.

29th Oct 2020, 4:48 PM
Josué Becerra
Josué Becerra - avatar
1 Réponse
0
Dynamic Programming is used in Reinforcement Learning, where we define the problem of learning how to behave optimally in an environment using the Bellman Equation, which is a recursive equation. Bellman is the same guy that coined the term of Dynamic Programming. Other than Reinforcement Learning, I haven't seen much use of recursiveness (and therefore applicability of DP) in other areas of AI (ML, DL, Supervised, Unsupervised). Mostly, they use an iterative process of error correction to construct a good model.
30th Oct 2020, 5:00 AM
Alejandro Aristizabal
Alejandro Aristizabal - avatar