Spaces:
Sleeping
Sleeping
File size: 1,373 Bytes
08123aa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# How to Monitor Training Progress
## Training is Currently Running! ✅
The model optimization is running in Docker container `heart-optimization-v2`.
## Quick Status Check
```bash
# Check if container is running
docker ps | grep heart-optimization
# See current progress (last 50 lines)
docker logs --tail 50 heart-optimization-v2
# Follow progress in real-time (like tail -f)
docker logs -f heart-optimization-v2
```
## View Log File
```bash
# View the log file
tail -f optimization_v2_log.txt
# Or view last 100 lines
tail -100 optimization_v2_log.txt
```
## Current Progress
Based on the logs, training is:
- **XGBoost:** Trial 4/300 (just started)
- **CatBoost:** Waiting (will start after XGBoost)
- **LightGBM:** Waiting (will start after CatBoost)
## Estimated Time Remaining
- **XGBoost (300 trials):** ~1.5-2 hours remaining
- **CatBoost (300 trials):** ~2-3 hours
- **LightGBM (300 trials):** ~1-1.5 hours
- **Total:** ~4.5-6.5 hours
## What to Look For
The logs show:
- Trial number (e.g., "Trial 4/300")
- Best score found so far
- Progress bar
- Estimated time remaining
## Stop Training (if needed)
```bash
docker stop heart-optimization-v2
```
## Check Results (when complete)
Results will be saved to:
- `content/models/model_metrics_optimized.csv`
- `content/models/*_optimized.joblib`
- `content/models/ensemble_info_optimized.json`
|