Learn R Programming

multiRL (version 0.2.3)

estimate_1_LBI: Likelihood-Based Inference (LBI)

Description

This function provides a unified interface to multiple algorithm packages, allowing different optimization algorithms to be selected for estimating optimal model parameters. The entire optimization framework is based on the log-likelihood returned by the model (or object function), making this function a collection of likelihood-based inference (LBI) methods. By abstracting over algorithm-specific implementations, the function enables flexible and consistent parameter estimation across different optimization backends.

Usage

estimate_1_LBI(model, env, algorithm, lower, upper, control = list(), ...)

Value

An S4 object of class multiRL.model

generated using the estimated optimal parameters.

Arguments

model

Reinforcement Learning Model

env

multiRL.env

algorithm

Algorithm packages that multiRL supports, see algorithm

lower

Lower bound of free parameters

upper

Upper bound of free parameters

control

Settings manage various aspects of the iterative process, see control

...

Additional arguments passed to internal functions.