File size: 375 Bytes
5164d59 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # viet-robot-path-summarizer
A small helper that summarizes path history records for a home robot.
The `summarize_paths(records)` function expects a list of dicts with
`distance_m`, `duration_s`, and `success` fields and returns:
- `average_speed_m_per_s`
- `success_rate`
- `total_distance_m`
This is a lightweight, non-ML model written in pure Python.
## License
MIT
|