We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is obvious code redunancy due to the parallel Python and C++ implementations. This is because there are two different purposes.
The modules bbo and dmp_bbo need not be real-time, and therefore the C++ implementation is not really necessary.
bbo
dmp_bbo
Further steps along the way:
The text was updated successfully, but these errors were encountered:
Further idea: anything that is not real-time need not be in C++ (e.g. training)
Use case:
All train() functions could then be removed from the C++ version (i.e. also no more meta-paramers necessary in C++)
In C++, only the UnifiedModel would be necessary (or perhaps two, i.e. weighted basis functions or weighted line segments)
Sorry, something went wrong.
The redundancy has been resolved in v2 of dmpbbo: https://github.com/stulp/dmpbbo/tree/v2
No branches or pull requests
Rationale for removing bbo C++ implementation
There is obvious code redunancy due to the parallel Python and C++ implementations. This is because there are two different purposes.
The modules
bbo
anddmp_bbo
need not be real-time, and therefore the C++ implementation is not really necessary.Planned refactoring steps
Further steps along the way:
The text was updated successfully, but these errors were encountered: