Skip to content

Commit 20a9806

Browse files
Update README.md
1 parent 23f9fdc commit 20a9806

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Reinforcement Learning in Python
2-
Implementing Reinforcement Learning (RL) Algorithms for global path planning in tasks of mobile robot navigation
2+
Implementing Reinforcement Learning (RL) Algorithms for global path planning in tasks of mobile robot navigation.
33

44
### Reference to:
55
[1] Valentyn N Sichkar. Reinforcement Learning Algorithms for global path planning // GitHub platform [Electronic resource]. URL: https://github.com/sichkar-valentyn/Reinforcement_Learning_in_Python (date of access: XX.XX.XXXX)
@@ -17,7 +17,7 @@ The environment:
1717

1818
Goal is to learn how to take actions in order to maximize the reward. The objective function is as following:
1919

20-
Q[s, a] = Q[s, a] + λ * (r + γ * max (Q[s_, a_]) – Q[s, a]),
20+
<b>Q[s, a] = Q[s, a] + λ * (r + γ * max (Q[s_, a_]) – Q[s, a]),</b>
2121

2222
where,
2323
<br/>s – current position of the agent,

0 commit comments

Comments
 (0)