Aristi Christoforou
Followers: 0 Following: 0
Statistiques
RANG
80 636
of 295 467
RÉPUTATION
0
CONTRIBUTIONS
2 Questions
1 Réponse
ACCEPTATION DE VOS RÉPONSES
0.0%
VOTES REÇUS
0
RANG
of 20 234
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 153 912
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
how to find the optimal path to catch a target when the target is moving using q-learning
hello i would like to find the optimal action of an agent when the target that he wants to catch is moving using q-learning . M...
plus de 2 ans il y a | 3 réponses | 0
3
réponsesQuestion
optimal path problem using q-learning algorithm
hello i want to find the optimal path for my target to the nearest corner of an environment with 3 obstacles using q-learning. F...
plus de 2 ans il y a | 1 réponse | 0
1
réponseMATLAB CODE NEWTON METHOD
function[root]=newtonmethod(f,df,xo,tol,n) xn=xo; for k=1:n xn1=xn-f(xn)/df(xn); dx=abs(xn1-xn); xn=xn1; i...
plus de 3 ans il y a | 0