BipedalLocomotion::ML::VelMANNAutoregressive class

VelMANNAutoregressive is a class that allows to perform autoregressive inference with Mode-Adaptive Neural Networks (MANN).

VelMANN Autoregressive

The following diagram shows how the VelMANN network is used inside the VelMANNAutoregressive class. The output of VelMANN is given to two blocks, one computes the kinematically feasible base position, while the other blends it to te input provided by the user

Base classes

template<class _Input, class _Output>
class BipedalLocomotion::System::Advanceable<VelMANNAutoregressiveInput, VelMANNAutoregressiveOutput>
Basic class that represents a discrete system.

Public types

struct AutoregressiveState
AutoregressiveState contains all quantities required to reset the Advanceable The base position trajectory, base direction trajectory and base velocity trajectories are written in a bidimensional local reference frame L in which we assume all the quantities related to the ground-projected base trajectory in xi and yi to be expressed.
enum class SupportFoot { Left, Right, Unknown }
SupportFoot is an enum that contains the support foot considered by the VelMANN network.

Constructors, destructors, conversion operators

VelMANNAutoregressive()
Constructor.
~VelMANNAutoregressive()
Destructor.

Public functions

auto setRobotModel(const iDynTree::Model& model) -> bool
Set the robot model.
auto initialize(std::weak_ptr<const ParametersHandler::IParametersHandler> paramHandler) -> bool override
Initialize the network.
auto setInput(const Input& input) -> bool override
Set the input to the autoregressive model.
auto advance() -> bool override
Perform one step of the autoregressive model.
auto reset(Eigen::Ref<const Eigen::VectorXd> jointPositions, const manif::SE3d& basePose) -> bool
Reset the autoregressive model.
auto reset(const AutoregressiveState& autoregressiveState) -> bool
Reset the autoregressive model.
auto isOutputValid() const -> bool override
Check if the output is valid.
auto getOutput() const -> const Output& override
Get the output from VelMANNAutoregressive.
auto getVelMANNInput() const -> const VelMANNInput&
Get the structure that has been used as input for VelMANN.
auto getAutoregressiveState() const -> const AutoregressiveState&
Get the autoregressive state required to rest VelMANNAutoregressive.
auto populateInitialAutoregressiveState(Eigen::Ref<const Eigen::VectorXd> jointPositions, const manif::SE3d& basePose, VelMANNAutoregressive::AutoregressiveState& state) -> bool
Get the autoregressive state required to reset VelMANNAutoregressive.

Enum documentation

enum class BipedalLocomotion::ML::VelMANNAutoregressive::SupportFoot

SupportFoot is an enum that contains the support foot considered by the VelMANN network.

Enumerators
Left

Left foot.

Right

Right foot.

Unknown

This is useful to detect unexpected behaviour.

Function documentation

bool BipedalLocomotion::ML::VelMANNAutoregressive::setRobotModel(const iDynTree::Model& model)

Set the robot model.

Parameters
model model of the robot considered by the network. Please load the very same model with the same joint serialization used to train the VelMANN network.
Returns true in case of success, false otherwise.

bool BipedalLocomotion::ML::VelMANNAutoregressive::initialize(std::weak_ptr<const ParametersHandler::IParametersHandler> paramHandler) override

Initialize the network.

Parameters
paramHandler pointer to the parameters handler.
Returns True in case of success, false otherwise.

bool BipedalLocomotion::ML::VelMANNAutoregressive::setInput(const Input& input) override

Set the input to the autoregressive model.

Parameters
input input to the model
Returns true in case of success, false otherwise.

bool BipedalLocomotion::ML::VelMANNAutoregressive::advance() override

Perform one step of the autoregressive model.

Returns true in case of success, false otherwise.

bool BipedalLocomotion::ML::VelMANNAutoregressive::reset(Eigen::Ref<const Eigen::VectorXd> jointPositions, const manif::SE3d& basePose)

Reset the autoregressive model.

Parameters
jointPositions joint position.
basePose base pose.
Returns true in case of success, false otherwise.

bool BipedalLocomotion::ML::VelMANNAutoregressive::reset(const AutoregressiveState& autoregressiveState)

Reset the autoregressive model.

Parameters
autoregressiveState the autoregressive state at which you want to reset your model.
Returns true in case of success, false otherwise.

bool BipedalLocomotion::ML::VelMANNAutoregressive::isOutputValid() const override

Check if the output is valid.

Returns true if the output is valid, false otherwise.

const Output& BipedalLocomotion::ML::VelMANNAutoregressive::getOutput() const override

Get the output from VelMANNAutoregressive.

Returns the output of the system.

const VelMANNInput& BipedalLocomotion::ML::VelMANNAutoregressive::getVelMANNInput() const

Get the structure that has been used as input for VelMANN.

Returns the VelMANNInput

const AutoregressiveState& BipedalLocomotion::ML::VelMANNAutoregressive::getAutoregressiveState() const

Get the autoregressive state required to rest VelMANNAutoregressive.

Returns the AutoregressiveState

bool BipedalLocomotion::ML::VelMANNAutoregressive::populateInitialAutoregressiveState(Eigen::Ref<const Eigen::VectorXd> jointPositions, const manif::SE3d& basePose, VelMANNAutoregressive::AutoregressiveState& state)

Get the autoregressive state required to reset VelMANNAutoregressive.

Parameters
jointPositions joint position
basePose base pose
state autoregressive state that will be populated
Returns true in case of success, false otherwise.