This enum represents the different tracks of the CARLA AD leaderboard.
| 19 | |
| 20 | |
| 21 | class Track(Enum): |
| 22 | |
| 23 | """ |
| 24 | This enum represents the different tracks of the CARLA AD leaderboard. |
| 25 | """ |
| 26 | SENSORS = 'SENSORS' |
| 27 | MAP = 'MAP' |
| 28 | |
| 29 | class AutonomousAgent(object): |
| 30 |
no outgoing calls
no test coverage detected