When using Alpamayo 1.5 for inference on custom data, the model accepts an optional nav_text input (e.g., "Turn left in 30m") via helper.create_message(nav_text=...) to condition trajectory predictions.
However, the PhysicalAI-AV public dataset does not include any navigation field, and there is no code in the released repository that generates nav_text. The only reference is the 20 pre-computed samples in nav_demo_samples.json with format "Turn {left/right} in {distance}m", which include nav_maneuver and distance_m fields.
My questions:
How is nav_text generated for training or inference?
For users running inference on their own driving data, what is the recommended approach to generate nav_text?
Compute from future trajectory (detect heading change > threshold, measure along-path distance)?
Or is it acceptable to just provide simple commands like "Turn left" without distance?
Any guidance on the expected format and generation method would be very helpful for the community.
When using Alpamayo 1.5 for inference on custom data, the model accepts an optional nav_text input (e.g., "Turn left in 30m") via helper.create_message(nav_text=...) to condition trajectory predictions.
However, the PhysicalAI-AV public dataset does not include any navigation field, and there is no code in the released repository that generates nav_text. The only reference is the 20 pre-computed samples in nav_demo_samples.json with format "Turn {left/right} in {distance}m", which include nav_maneuver and distance_m fields.
My questions:
How is nav_text generated for training or inference?
For users running inference on their own driving data, what is the recommended approach to generate nav_text?
Compute from future trajectory (detect heading change > threshold, measure along-path distance)?
Or is it acceptable to just provide simple commands like "Turn left" without distance?
Any guidance on the expected format and generation method would be very helpful for the community.