Dataset Viewer
Auto-converted to Parquet Duplicate
path
stringlengths
8
75
value
unknown
vehicle.manufacturer
"Tesla"
vehicle.model
"Cybertruck"
vehicle.model_year_start
2023
vehicle.body_style
"truck"
vehicle.door_count
4
vehicle.seating_capacity
5
vehicle.propulsion.high_voltage_battery
[ "800V Li-Ion" ]
vehicle.propulsion.low_voltage_battery
[ "48V Li-Ion" ]
responder_information.immobilization.ordered_steps
[ "1. CHOCK WHEELS", "2. PUT VEHICLE INTO PARK POSITION" ]
responder_information.stabilization_lifting.lift_areas
[ "green Appropriate lift areas" ]
responder_information.stabilization_lifting.stabilization_points
[ "yellow Safe stabilization points for Cybertruck resting on its side" ]
responder_information.stabilization_lifting.no_contact_zones
[ "brown High Voltage (HV) Battery" ]
responder_information.disable_direct_hazards.ordered_steps
[ "Open the hood.", "Double cut the first responder loop.", "Double cut negative cable to the 48V battery only if necessary." ]
responder_information.disable_direct_hazards.first_responder_loop
"Always double cut the first responder loop."
responder_information.occupant_access.access_methods
[ "OPENING DOORS FROM OUTSIDE WITH POWER", "OPENING DOORS FROM INSIDE WITH POWER", "OPENING TONNEAU AND LIFTGATE WITH POWER", "Touch the open hood button on the touchscreen", "OPENING FRONT DOORS FROM INSIDE WITHOUT POWER", "OPENING REAR DOORS FROM INSIDE WITHOUT POWER", "NON-OPERATIONAL WITHOUT POWER", ...
responder_information.stored_energy_fluids_gases_solids.energy_sources
[ "48V Li-Ion", "800V Li-Ion", "AIR" ]
responder_information.stored_energy_fluids_gases_solids.high_voltage_cables
[ "All high voltage cables have ORANGE INSULATION." ]
responder_information.stored_energy_fluids_gases_solids.fluids
[ "Coolant is blue or orange." ]
responder_information.stored_energy_fluids_gases_solids.prohibited_actions
[ "Never cut or open high voltage components or cables." ]
responder_information.fire.prohibitions
[ "DO NOT SUBMERGE VEHICLE TO EXTINGUISH/COOL BATTERY FIRE" ]
responder_information.fire.suppression_cooling_actions
[ "USE LARGE AMOUNTS OF WATER TO COOL THE BATTERY ENCLOSURE FROM THE BOTTOM OF THE VEHICLE" ]
responder_information.fire.monitoring_requirements
[ "MONITOR HV BATTERY TEMPERATURE FOR AT LEAST 24 HOURS" ]
responder_information.fire.reignition_risk
"POSSIBLE BATTERY RE-IGNITION!"
responder_information.submersion.ordered_steps
[ "Wear appropriate PPE for water rescue.", "Remove the vehicle from the water", "continue with normal high voltage disabling", "Raise the front of the vehicle approximately 30 cm (1 foot) to allow water to drain out of the vehicle and battery pack", "store the vehicle flat" ]
responder_information.submersion.guidance
[ "Treat a submerged Cybertruck like any other submerged vehicle." ]
responder_information.submersion.hazard_note
"Vehicles submerged in water should be handled with a greater potential risk of an HV battery fire."
responder_information.submersion.drainage_lift_requirement
"Raise the front of the vehicle approximately 30 cm (1 foot) to allow water to drain out of the vehicle and battery pack"
responder_information.towing_transport_storage.transport_method
"Use a towing truck with flatbed."
responder_information.towing_transport_storage.prohibited_methods
[ "NO towing with running traction wheels." ]
responder_information.towing_transport_storage.pre_transport_checks
[ "HV BATTERY TEMPERATURE SHOULD BE CHECKED BEFORE TRANSPORT" ]
responder_information.identification_recognition.silent_vehicle_warning
"LACK OF ENGINE NOISE DOES NOT MEAN VEHICLE IS OFF: SILENT MOVEMENT OR INSTANT RESTART CAPABILITY EXISTS UNTIL VEHICLE IS FULLY SHUT DOWN. WEAR APPROPRIATE PPE."
vehicle_layout.structural_zones
[ "External body panels made of stainless steel.", "Understructure for the A, B, and C pillar are made of ultra-high strength steel.", "Forward overhead rail is made of high strength steel." ]
vehicle_layout.glazing
[ "Windshield, roof, and moving door glass are laminated glass.", "The rear window and front quarter side windows are tempered glass." ]
warnings
[ "LACK OF ENGINE NOISE DOES NOT MEAN VEHICLE IS OFF: SILENT MOVEMENT OR INSTANT RESTART CAPABILITY EXISTS UNTIL VEHICLE IS FULLY SHUT DOWN. WEAR APPROPRIATE PPE.", "Do not push on HV Battery.", "Not every high voltage component is labeled. Always wear appropriate PPE. Always double cut the first responder loop. ...

Extraction Arena

Tesla Cybertruck Rescue Sheet (Gold)

One-document gold extraction of Tesla’s public 4-page Cybertruck first-responder rescue sheet. Used by Extraction Arena to score vision-language models against a versioned rescue-sheet-ev-v1.1 record.

This is an ISO 17840-style mapping (mapping_candidate_not_certified). It is not a certified rescue sheet and is not for operational emergency use.

Hugging Face    GitHub    YouTube

Hugging Face · GitHub · YouTube walkthrough

Source document

Tesla publishes the original 4-page sheet for first responders:

Manufacturer Tesla
Model Cybertruck (2023–)
Document ID TESLA-2023CA-001
Version 02
Pages 4

Sheet wording quoted in this gold remains Tesla’s. This dataset is the structured annotation, not a redistributed copy of the PDF.

What's in the files

File What it is
data/rescue-sheet.json Canonical nested record (rescue-sheet-ev-v1.1)
data/rescue-sheet.jsonl Same record, one line (Hub canonical config)
data/projection.jsonl Flat scoring paths used by Extraction Arena (default config, 34 fields)
schema/rescue-sheet-ev-v1.1.json JSON Schema for the nested record

Exact scoring prefers document-supported source_text over internal action/class IDs. Diagram-only items (pyrotechnics, component locations) stay in the nested gold and are not Exact-projected.

Load

from datasets import load_dataset

# Flat projection (path → value) — default
proj = load_dataset("martincousseau/Cybertruck-Rescue-Sheet")
print(proj["train"][0])

# Nested canonical record
gold = load_dataset("martincousseau/Cybertruck-Rescue-Sheet", "canonical")
record = gold["train"][0]
print(record["vehicle"]["model"], record["document"]["document_id"])

License

MIT for the structured gold (schema, projection, and annotations). Tesla owns the original rescue sheet. Do not treat this dataset as emergency-response guidance.

Links

Downloads last month
76