{% extends "base.html" %} {% block title %}Drivers — FSD Disengagement Studio{% endblock %} {% block content %}

Known drivers

Each row is a Tesla driver profile that's appeared in at least one saved disengagement clip. Tesla 2026.14+ firmware embeds the driverProfileId in the clip's SEI metadata, so each transition is attributed to the actual driver, not the household. Rename via fsd-studio drivers rename <id> "Name".
"Interesting %" is the share of this driver's disengagements caused by phantom_brake / lane_confusion / construction_zone / traffic_light_hesitation / occluded_sign — the cohort the per-firmware regression chart actually cares about.

{% if drivers %} {% for d in drivers %} {% endfor %}
Driver ID Events Interesting %
{{ d.display_name }} {{ d.id }} {{ d.event_count }} {{ d.interesting_count }} {{ "%.1f%%" | format(d.interesting_pct) }}
{% else %}

No drivers known yet. Run fsd-studio backfill against 2026.14+ clips, or fsd-studio demo to seed synthetic drivers for a guided tour.

{% endif %}
{% endblock %}