Add __init__.py
Browse files- fsd_model/__init__.py +28 -0
fsd_model/__init__.py
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Full Self-Driving (FSD) Model - Level 5 Autonomous Driving
|
| 2 |
+
# Modular architecture with configurable sensor placement
|
| 3 |
+
|
| 4 |
+
__version__ = "2.0.0"
|
| 5 |
+
|
| 6 |
+
from .config import VehicleConfig, SensorConfig, UltrasonicSensorConfig, CameraSensorConfig
|
| 7 |
+
from .sensor_fusion import MultiModalSensorFusion
|
| 8 |
+
from .perception import PerceptionModule
|
| 9 |
+
from .planning import PlanningModule
|
| 10 |
+
from .control import ControlModule
|
| 11 |
+
from .cot_reasoning import ChainOfThoughtReasoning
|
| 12 |
+
from .model import FullSelfDrivingModel
|
| 13 |
+
from .benchmarks import FSDExternalBenchmark, BenchmarkResult
|
| 14 |
+
|
| 15 |
+
__all__ = [
|
| 16 |
+
"VehicleConfig",
|
| 17 |
+
"SensorConfig",
|
| 18 |
+
"UltrasonicSensorConfig",
|
| 19 |
+
"CameraSensorConfig",
|
| 20 |
+
"MultiModalSensorFusion",
|
| 21 |
+
"PerceptionModule",
|
| 22 |
+
"PlanningModule",
|
| 23 |
+
"ControlModule",
|
| 24 |
+
"ChainOfThoughtReasoning",
|
| 25 |
+
"FullSelfDrivingModel",
|
| 26 |
+
"FSDExternalBenchmark",
|
| 27 |
+
"BenchmarkResult",
|
| 28 |
+
]
|