https://github.com/commaai/reporterv2
The incredible comma model reporter (v2)
https://github.com/commaai/reporterv2
Last synced: about 1 month ago
JSON representation
The incredible comma model reporter (v2)
- Host: GitHub
- URL: https://github.com/commaai/reporterv2
- Owner: commaai
- Created: 2026-06-04T16:13:03.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2026-06-27T01:35:39.000Z (about 1 month ago)
- Last Synced: 2026-06-27T03:11:35.648Z (about 1 month ago)
- Language: JavaScript
- Size: 107 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# reporterv2
The incredible comma model reporter!
## Install
```bash
uv pip install .
```
## Storage
`REPORTERV2_HOST` must point at an fsspec-compatible store.
`REPORTERV2_DATA` stores the local SQLite index cache.
```bash
export REPORTERV2_HOST=/tmp/reporterv2-store
export REPORTERV2_DATA=/tmp/reporterv2-index
```
## Client
```python
from reporterv2 import ReporterV2
reporter = ReporterV2({"training_id": "run-id"})
```
## Server
```bash
uv run reporterv2-server
```
Open `http://localhost:8802`.
## Docker
```bash
docker compose -f docker-compose.local.yaml up --build
```