Commit ·
b958aaf
1
Parent(s): 02fbe0a
Docs: added training commands for different difficulties
Browse files
README.md
CHANGED
|
@@ -326,6 +326,21 @@ python -m uvicorn server.app:app --host 0.0.0.0 --port 8000
|
|
| 326 |
|
| 327 |
Open `http://localhost:8000` to access the interactive dashboard.
|
| 328 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 329 |
### Python SDK Client
|
| 330 |
|
| 331 |
```python
|
|
|
|
| 326 |
|
| 327 |
Open `http://localhost:8000` to access the interactive dashboard.
|
| 328 |
|
| 329 |
+
### Training Manual
|
| 330 |
+
|
| 331 |
+
To train the drone agent, use the `train.py` script with the corresponding task and episode count:
|
| 332 |
+
|
| 333 |
+
```bash
|
| 334 |
+
# Easy: Train for basic navigation (1000 episodes)
|
| 335 |
+
python train.py --task easy_delivery --episodes 1000
|
| 336 |
+
|
| 337 |
+
# Medium: Train for longer routes and more targets (2000 episodes)
|
| 338 |
+
python train.py --task medium_delivery --episodes 2000
|
| 339 |
+
|
| 340 |
+
# Hard: Train for high-density obstacle navigation (5000 episodes)
|
| 341 |
+
python train.py --task hard_delivery --episodes 5000
|
| 342 |
+
```
|
| 343 |
+
|
| 344 |
### Python SDK Client
|
| 345 |
|
| 346 |
```python
|