MCPcopy Create free account

hub / github.com/Luca96/carla-driving-rl-agent / types & classes

Types & classes64 in github.com/Luca96/carla-driving-rl-agent

↓ 5 callersClassStage
A Curriculum Learning stage
core/learning.py:68
↓ 3 callersClassPPOMemory
Recent memory used in PPOAgent
rl/agents/ppo.py:629
↓ 2 callersClassCARLACollectWrapper
Wraps a CARLA Environment, collecting input observations and output actions that can be later used for pre-training or imitation learning purpo
rl/environments/carla/environment.py:667
↓ 2 callersClassGlobalRoutePlannerDAO
This class is the data access layer for fetching data from the carla server instance for GlobalRoutePlanner
rl/environments/carla/navigation/global_route_planner_dao.py:12
↓ 2 callersClassPolicyNetwork
core/networks.py:89
↓ 1 callersClassAggressive
Class for Aggressive agents.
rl/environments/carla/navigation/types_behavior.py:31
↓ 1 callersClassBehaviorAgent
BehaviorAgent implements an agent that navigates scenes to reach a given target destination, by computing the shortest possible path to it.
rl/environments/carla/navigation/behavior_agent.py:25
↓ 1 callersClassCARLAEnv
core/carla_env.py:17
↓ 1 callersClassCARLAMemory
core/carla_agent.py:586
↓ 1 callersClassCARLASyncContext
Context manager to synchronize output from different sensors. Synchronous mode is enabled as long as we are inside this context with
rl/environments/carla/tools/synchronous_mode.py:5
↓ 1 callersClassCARLAgent
core/carla_agent.py:59
↓ 1 callersClassCautious
Class for Cautious agents.
rl/environments/carla/navigation/types_behavior.py:7
↓ 1 callersClassCollisionDetector
rl/environments/carla/sensors.py:194
↓ 1 callersClassConstantParameter
A constant learning rate schedule that wraps a constant float learning rate value
rl/parameters/parameters.py:61
↓ 1 callersClassDepthCameraSensor
rl/environments/carla/sensors.py:155
↓ 1 callersClassGlobalRoutePlanner
This class provides a very high level route plan. Instantiate the class by passing a reference to A GlobalRoutePlannerDAO object.
rl/environments/carla/navigation/global_route_planner.py:21
↓ 1 callersClassGnssSensor
rl/environments/carla/sensors.py:250
↓ 1 callersClassIMUSensor
rl/environments/carla/sensors.py:271
↓ 1 callersClassLaneInvasionSensor
rl/environments/carla/sensors.py:203
↓ 1 callersClassLidarSensor
rl/environments/carla/sensors.py:225
↓ 1 callersClassLocalPlanner
LocalPlanner implements the basic behavior of following a trajectory of waypoints that is generated on-the-fly. The low-level motion of t
rl/environments/carla/navigation/local_planner_behavior.py:21
↓ 1 callersClassNormal
Class for Normal agents.
rl/environments/carla/navigation/types_behavior.py:19
↓ 1 callersClassObject
Creates generic objects with fields given as named arguments.
rl/environments/carla/tools/utils.py:82
↓ 1 callersClassObstacleDetector
rl/environments/carla/sensors.py:212
↓ 1 callersClassPIDLateralController
PIDLateralController implements lateral control using a PID.
rl/environments/carla/navigation/controller.py:149
↓ 1 callersClassPIDLongitudinalController
PIDLongitudinalController implements longitudinal control using a PID.
rl/environments/carla/navigation/controller.py:90
↓ 1 callersClassPPONetwork
rl/networks/networks.py:114
↓ 1 callersClassRGBCameraSensor
rl/environments/carla/sensors.py:149
↓ 1 callersClassRadarSensor
rl/environments/carla/sensors.py:234
↓ 1 callersClassRoute
Wraps a list of [(carla.Waypoint, RoadOption)] returned by a RoutePlanner.
rl/environments/carla/navigation/route.py:10
↓ 1 callersClassRoutePlanner
Provides a high-level route plan.
rl/environments/carla/navigation/route_planner.py:12
↓ 1 callersClassScheduleWrapper
A wrapper for built-in tf.keras' learning rate schedules
rl/parameters/parameters.py:45
↓ 1 callersClassSemanticCameraSensor
rl/environments/carla/sensors.py:184
↓ 1 callersClassVehiclePIDController
VehiclePIDController is the combination of two PID controllers (lateral and longitudinal) to perform the low level control a vehicle from
rl/environments/carla/navigation/controller.py:15
ClassAgent
Base class to define agents in CARLA
rl/environments/carla/navigation/agent.py:28
ClassAgent
Agent abstract class
rl/agents/agents.py:15
ClassAgentState
AGENT_STATE represents the possible states of a roaming agents
rl/environments/carla/navigation/agent.py:19
ClassCARLABaseEnvironment
Base extendable environment for the CARLA driving simulator
rl/environments/carla/environment.py:39
ClassCARLABenchmark
CARLA benchmark, as described in the paper: "End-to-end Driving via Conditional Imitation Learning" - https://arxiv.org/pdf/1710.02410
rl/environments/carla/environment.py:1309
ClassCARLAEvent
Available events (callbacks) related to CARLAEnvironment
rl/environments/carla/environment.py:27
ClassCARLANetwork
The CARLAgent network
core/networks.py:147
ClassCARLAPlayWrapper
Makes an already instantiated CARLAEnvironment be playable with a keyboard
rl/environments/carla/environment.py:568
ClassCARLARecordWrapper
Wraps a CARLA Environment in order to record input observations
rl/environments/carla/environment.py:828
ClassCARLAWrapper
rl/environments/carla/environment.py:564
ClassCameraSensor
rl/environments/carla/sensors.py:123
ClassColors
Wraps some carla.Color instances.
rl/environments/carla/tools/utils.py:70
ClassDynamicParameter
Interface for learning rate schedule wrappers as dynamic-parameters
rl/parameters/parameters.py:9
ClassExponentialDecay
rl/parameters/parameters.py:74
ClassFakeCARLAEnvironment
A testing-only environment with the same state- and action-space of a CARLA Environment
core/carla_agent.py:26
ClassIncrementalStatistics
Compute mean, variance, and standard deviation incrementally.
rl/utils.py:676
ClassNetwork
rl/networks/networks.py:13
ClassOneCameraCARLAEnvironment
One camera (front) CARLA Environment
rl/environments/carla/environment.py:837
ClassOneCameraCARLAEnvironmentDiscrete
One-camera CARLA Environment with discrete action-space
rl/environments/carla/environment.py:1178
ClassPPOAgent
rl/agents/ppo.py:22
ClassPolynomialDecay
rl/parameters/parameters.py:88
ClassRandomAgent
rl/agents/agents.py:218
ClassRoadOption
RoadOption represents the possible topological configurations when moving from a segment of lane to other.
rl/environments/carla/navigation/road_option.py:7
ClassSensor
Base class for wrapping sensors.
rl/environments/carla/sensors.py:8
ClassSensorSpecs
rl/environments/carla/sensors.py:309
ClassStepDecay
rl/parameters/parameters.py:82
ClassSummary
rl/utils.py:577
ClassTasks
Kind of tasks that the benchmark supports
rl/environments/carla/environment.py:1345
ClassThreeCameraCARLAEnvironment
Three Camera (front, lateral left and right) CARLA Environment
rl/environments/carla/environment.py:1213
ClassThreeCameraCARLAEnvironmentDiscrete
Three-camera CARLA Environment with discrete action-space
rl/environments/carla/environment.py:1267