Package Summary
Tags | No category tags. |
Version | 0.43.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_universe.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-04-04 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Maxime Clement
- Tomas Nagy
- Junya Sasaki
Authors
Learned Model
This is the design document for the Python learned model used in the simple_planning_simulator
package.
Purpose / Use cases
This library creates an interface between models in Python and PSIM (C++). It is used to quickly deploy learned Python models in PSIM without a need for complex C++ implementation.
Design
The idea behind this package is that the model we want to use for simulation consists of multiple sub-models (e.g., steering model, drive model, vehicle kinematics, etc.). These sub-models are implemented in Python and can be trainable. Each sub-model has string names for all of its inputs/outputs, which are used to create model interconnections automatically (see image below). This allows us to easily switch sub-models for better customization of the simulator.
Assumptions / Known limits
To use this package python3
and pybind11
need to be installed. The only assumption on Python sub-models is their interface.
class PythonSubmodelInterface:
def forward(self, action, state): # Required
"""
Calculate forward pass through the model and returns next_state.
"""
return list()
def get_state_names(self): # Required
"""
Return list of string names of the model states (outputs).
"""
return list()
def get_action_names(self): # Required
"""
Return list of string names of the model actions (inputs).
"""
return list()
def reset(self): # Required
"""
Reset model. This function is called after load_params().
"""
pass
def load_params(self, path): # Required
"""
Load parameters of the model.
Inputs:
- path: Path to a parameter file to load by the model.
"""
pass
def dtSet(self, dt): # Required
"""
Set dt of the model.
Inputs:
- dt: time step
"""
pass
API
To successfully create a vehicle model an InterconnectedModel class needs to be set up correctly.
InterconnectedModel class
Constructor
The constructor takes no arguments.
void addSubmodel(std::tuple<std::string, std::string, std::string> model_descriptor)
Add a new sub-model to the model.
Inputs:
- model_descriptor: Describes what model should be used. The model descriptor contains three strings:
- The first string is a path to a python module where the model is implemented.
- The second string is a path to the file where model parameters are stored.
- The third string is the name of the class that implements the model.
Outputs:
- None
void generateConnections(std::vector<char *> in_names, std::vector<char*> out_names)
Generate connections between sub-models and inputs/outputs of the model.
Inputs:
- in_names: String names for all of the model inputs in order.
- out_names: String names for all of the model outputs in order.
Outputs:
- None
void initState(std::vector<double> new_state)
Set the initial state of the model.
Inputs:
- new_state: New state of the model.
Outputs:
- None
std::vector<double> updatePyModel(std::vector<double> psim_input)
Calculate the next state of the model by calculating the next state of all of the sub-models.
Inputs:
- psim_input: Input to the model.
Outputs:
- next_state: Next state of the model.
dtSet(double dt)
Set the time step of the model.
Inputs:
- dt: time step
Outputs:
- None
Example
Firstly we need to set up the model.
InterconnectedModel vehicle;
// Example of model descriptors
std::tuple<char*, char*, char*> model_descriptor_1 = {
(char*)"path_to_python_module_with_model_class_1",
(char*)nullptr, // If no param file is needed you can pass 'nullptr'
(char*)"ModelClass1"
};
std::tuple<char*, char*, char*> model_descriptor_2 = {
(char*)"path_to_python_module_with_model_class_2",
(char*)"/path_to/param_file",
(char*)"ModelClass2" // Name of the python class. Needs to use the interface from 'Assumptions'
};
// Create sub-models based on descriptors
vehicle.addSubmodel(model_descriptor_1);
vehicle.addSubmodel(model_descriptor_2);
// Define STATE and INPUT names of the system
std::vector<char*> state_names = {(char*)"STATE_NAME_1", (char*)"STATE_NAME_2"};
std::vector<char*> input_names = {(char*)"INPUT_NAME_1", (char*)"INPUT_NAME_2"};
// Automatically connect sub-systems with model input
vehicle.generateConnections(input_names, state_names);
// Set the time step of the model
vehicle.dtSet(dt);
After the model is correctly set up, we can use it the following way.
// Example of an model input
std::vector<double> vehicle_input = {0.0, 1.0}; // INPUT_NAME_1, INPUT_NAME_2
// Example of an model state
std::vector<double> current_state = {0.2, 0.5}; // STATE_NAME_1, STATE_NAME_2
// Set model state
vehicle.initState(current_state);
// Calculate the next state of the model
std::vector<double> next_state = vehicle.updatePyModel(vehicle_input);
References / External links
Related issues
Changelog for package autoware_learning_based_vehicle_model
0.43.0 (2025-03-21)
- Merge remote-tracking branch 'origin/main' into chore/bump-version-0.43
- chore: rename from [autoware.universe]{.title-ref} to [autoware_universe]{.title-ref} (#10306)
- Contributors: Hayato Mizushima, Yutaka Kondo
0.42.0 (2025-03-03)
0.41.2 (2025-02-19)
- chore: bump version to 0.41.1 (#10088)
- Contributors: Ryohsuke Mitsudome
0.41.1 (2025-02-10)
0.41.0 (2025-01-29)
- Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
- feat: apply [autoware_]{.title-ref} prefix for [learning_based_vehicle_model]{.title-ref} (#9991)
- Contributors: Fumiya Watanabe, Junya Sasaki
0.40.0 (2024-12-12)
- Merge branch 'main' into release-0.40.0
- Revert "chore(package.xml): bump version to 0.39.0 (#9587)" This reverts commit c9f0f2688c57b0f657f5c1f28f036a970682e7f5.
- fix: fix ticket links in CHANGELOG.rst (#9588)
- chore(package.xml): bump version to 0.39.0
(#9587)
- chore(package.xml): bump version to 0.39.0
- fix: fix ticket links in CHANGELOG.rst
* fix: remove unnecessary diff ---------Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>>
- fix: fix ticket links in CHANGELOG.rst (#9588)
- fix(cpplint): include what you use - simulator (#9572)
- fix(learning_based_vehicle_model): fix clang-diagnostic-delete-abstract-non-virtual-dtor (#9446)
- 0.39.0
- update changelog
- fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
- fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
- chore(package.xml): bump version to 0.38.0
(#9266)
(#9284)
- unify package.xml version to 0.37.0
- remove system_monitor/CHANGELOG.rst
- add changelog
* 0.38.0
- Contributors: Esteve Fernandez, Fumiya Watanabe, M. Fatih Cırıt, Ryohsuke Mitsudome, Ryuta Kambe, Yutaka Kondo
0.39.0 (2024-11-25)
- fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
- fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
- chore(package.xml): bump version to 0.38.0
(#9266)
(#9284)
- unify package.xml version to 0.37.0
- remove system_monitor/CHANGELOG.rst
- add changelog
* 0.38.0
- Contributors: Esteve Fernandez, Yutaka Kondo
0.38.0 (2024-11-08)
- unify package.xml version to 0.37.0
- fix(learning_based_vehicle_model): fix passedByValue
(#8244)
- fix:passedByValue
* fix:clang format ---------
- fix(learning_based_vehicle_model): fix constVariableReference (#8061) fix:constVariableReference
- fix(learning_based_vehicle_model): fix constVariablePointer
warning
(#7575)
- fix constVariablePointer warning
* add reference ---------
- feat(learned_model): create package (#6395) Co-authored-by: Tomas Nagy <<tomas@pmc.sk>>
- Contributors: Ryuta Kambe, Tomas Nagy, Yutaka Kondo, kobayu858
0.26.0 (2024-04-03)
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
autoware_cmake | |
ament_cmake_auto | |
ament_cmake_ros | |
ament_lint_auto | |
autoware_lint_common | |
pybind11_vendor |
System Dependencies
Name |
---|
python3-dev |
Dependant Packages
Name | Deps |
---|---|
autoware_simple_planning_simulator |