Just trying to run the simplest thing:
from waymax import config
from waymax import dataloader
scenarios = dataloader.simulator_state_generator(config.WOD_1_1_0_TRAINING)
scenario = next(scenarios)
print("hello")
It does not reach the latest line, crashes with segmentation fault on scenario = next(scenarios). Is there a way to debug this out?
Just trying to run the simplest thing:
It does not reach the latest line, crashes with segmentation fault on
scenario = next(scenarios). Is there a way to debug this out?