Commit ·
32a581d
1
Parent(s): b2d7ba7
Docs: Fix LaTeX math rendering errors (underscores inside text tags)
Browse files
README.md
CHANGED
|
@@ -645,7 +645,7 @@ $$R_t = r_{\text{step}} + r_{\text{shaping}} + r_{\text{terminal}}$$
|
|
| 645 |
| $r_{\text{wall}}$ | $-0.20$ | Out-of-bounds penalty |
|
| 646 |
| $r_{\text{obstacle}}$ | $-0.10$ to $-0.20$ | Terrain avoidance signal |
|
| 647 |
| $r_{\text{delivery}}$ | $+1.0$ to $+0.6$ | Sparse reward — scales with difficulty |
|
| 648 |
-
| $r_{\text{battery
|
| 649 |
|
| 650 |
Reward shaping uses the **potential-based function**:
|
| 651 |
|
|
@@ -657,7 +657,7 @@ $$r_{\text{shaping}} = (d_{\text{before}} - d_{\text{after}}) \times 0.05$$
|
|
| 657 |
|
| 658 |
Scores are computed by `core/graders.py` using a unified formula:
|
| 659 |
|
| 660 |
-
$$\text{score} = 0.8 \times \underbrace{\frac{\text{deliveries
|
| 661 |
|
| 662 |
---
|
| 663 |
|
|
|
|
| 645 |
| $r_{\text{wall}}$ | $-0.20$ | Out-of-bounds penalty |
|
| 646 |
| $r_{\text{obstacle}}$ | $-0.10$ to $-0.20$ | Terrain avoidance signal |
|
| 647 |
| $r_{\text{delivery}}$ | $+1.0$ to $+0.6$ | Sparse reward — scales with difficulty |
|
| 648 |
+
| $r_{\text{battery dead}}$ | $-0.5$ to $-1.0$ | Terminal failure penalty |
|
| 649 |
|
| 650 |
Reward shaping uses the **potential-based function**:
|
| 651 |
|
|
|
|
| 657 |
|
| 658 |
Scores are computed by `core/graders.py` using a unified formula:
|
| 659 |
|
| 660 |
+
$$\text{score} = 0.8 \times \underbrace{\frac{\text{deliveries done}}{\text{deliveries total}}}_{\text{delivery ratio}} + 0.2 \times \underbrace{\left( 0.5 \cdot \text{battery} + 0.5 \cdot \left(1 - \frac{\text{steps}}{\text{max steps}}\right) \right)}_{\text{efficiency}}$$
|
| 661 |
|
| 662 |
---
|
| 663 |
|