To illutrate the use of CGNM here we illustrate how CGNM can be used to estiamte two sets of the best fit parameters of the pharmacokinetics model when the drug is administered orally (known as flip-flop kinetics). To illustrate that the model can be definied flexibly, we use the RxODE package to define the model.
library(RxODE)
#> RxODE 1.1.2 using 1 threads (see ?getRxThreads)
#> no cache: create with `rxCreateCache()`
#> ========================================
#> RxODE has not detected OpenMP support and will run in single-threaded mode
#> This is a Mac. Please read https://mac.r-project.org/openmp/
#> ========================================
model_text="
d/dt(X_1)=-ka*X_1
d/dt(C_2)=(ka*X_1-CL_2*C_2)/V1"
# here the model defined as above is compiled
model=RxODE(model_text)
# here we define the model function where takes in the parameter vector x and return the model simulation
model_function=function(x){
observation_time=c(0.1,0.2,0.4,0.6,1,2,3,6,12)
theta <- c(ka=x[1],V1=x[2],CL_2=x[3])
ev <- eventTable()
ev$add.dosing(dose = 1000, start.time =0)
ev$add.sampling(observation_time)
odeSol=model$solve(theta, ev)
log10(odeSol[,"C_2"])
}
Here we have specified the upper and lower range of the initial guess.
CGNM_result=Cluster_Gauss_Newton_method(nonlinearFunction=model_function,
targetVector = observation,
initial_lowerRange = c(0.1,0.1,0.1),initial_upperRange = c(10,10,10))
#> [1] "checking if the nonlinearFunction can be evaluated at the initial_lowerRange"
#> [1] "Evaluation Successful"
#> [1] "checking if the nonlinearFunction can be evaluated at the initial_upperRange"
#> [1] "Evaluation Successful"
#> [1] "checking if the nonlinearFunction can be evaluated at the (initial_upperRange+initial_lowerRange)/2"
#> [1] "Evaluation Successful"
#> [1] "Generating initial cluster. 196 out of 250 done"
#> [1] "Generating initial cluster. 241 out of 250 done"
#> [1] "Generating initial cluster. 248 out of 250 done"
#> [1] "Generating initial cluster. 250 out of 250 done"
#> [1] "Iteration:1 Median sum of squares residual=4.77275971346861"
#> [1] "Iteration:2 Median sum of squares residual=2.71946046697338"
#> [1] "Iteration:3 Median sum of squares residual=0.884225581108638"
#> [1] "Iteration:4 Median sum of squares residual=0.67850930826005"
#> [1] "Iteration:5 Median sum of squares residual=0.173641035795561"
#> [1] "Iteration:6 Median sum of squares residual=0.0122631832161518"
#> [1] "Iteration:7 Median sum of squares residual=0.00741113112121069"
#> [1] "Iteration:8 Median sum of squares residual=0.00734930088163792"
#> [1] "Iteration:9 Median sum of squares residual=0.00734926992791461"
#> [1] "Iteration:10 Median sum of squares residual=0.00734926727781488"
#> [1] "Iteration:11 Median sum of squares residual=0.00734926725997317"
#> [1] "Iteration:12 Median sum of squares residual=0.0073492672328896"
#> [1] "Iteration:13 Median sum of squares residual=0.00734926720919953"
#> [1] "Iteration:14 Median sum of squares residual=0.00734926720847175"
#> [1] "Iteration:15 Median sum of squares residual=0.00734926720334394"
#> [1] "Iteration:16 Median sum of squares residual=0.00734926718148023"
#> [1] "Iteration:17 Median sum of squares residual=0.00734926718148023"
#> [1] "Iteration:18 Median sum of squares residual=0.00734926718148023"
#> [1] "Iteration:19 Median sum of squares residual=0.0073492671786963"
#> [1] "Iteration:20 Median sum of squares residual=0.00734926717743428"
#> [1] "Iteration:21 Median sum of squares residual=0.00734926717743428"
#> [1] "Iteration:22 Median sum of squares residual=0.00734926717310454"
#> [1] "Iteration:23 Median sum of squares residual=0.00734926717249444"
#> [1] "Iteration:24 Median sum of squares residual=0.00734926716012509"
#> [1] "Iteration:25 Median sum of squares residual=0.00734926715183214"
For the complete description and comparison with the conventional algorithm please see (https: //doi.org/10.1007/s11081-020-09571-2):
Aoki, Y., Hayami, K., Toshimoto, K., & Sugiyama, Y. (2020). Cluster Gauss–Newton method. Optimization and Engineering, 1-31.
Cluster Gauss-Newton method is an algorithm for obtaining multiple minimisers of nonlinear least squares problems \[ \min_{\boldsymbol{x}}|| \boldsymbol{f}(\boldsymbol x)-\boldsymbol{y}^*||_2^{\,2} \] which do not have a unique solution (global minimiser), that is to say, there exist \(\boldsymbol x^{(1)}\neq\boldsymbol x^{(2)}\) such that \[ \min_{\boldsymbol{x}}|| \boldsymbol{f}(\boldsymbol x)-\boldsymbol{y}^*||_2^{\,2}=|| \boldsymbol{f}(\boldsymbol x^{(1)})-\boldsymbol{y}^*||_2^{\,2}=|| \boldsymbol{f}(\boldsymbol x^{(2)})-\boldsymbol{y}^*||_2^{\,2} \,. \] Parameter estimation problems of mathematical models can often be formulated as nonlinear least squares problems. Typically these problems are solved numerically using iterative methods. The local minimiser obtained using these iterative methods usually depends on the choice of the initial iterate. Thus, the estimated parameter and subsequent analyses using it depend on the choice of the initial iterate. One way to reduce the analysis bias due to the choice of the initial iterate is to repeat the algorithm from multiple initial iterates (i.e. use a multi-start method). However, the procedure can be computationally intensive and is not always used in practice. To overcome this problem, we propose the Cluster Gauss-Newton method (CGNM), an efficient algorithm for finding multiple approximate minimisers of nonlinear-least squares problems. CGN simultaneously solves the nonlinear least squares problem from multiple initial iterates. Then, CGNM iteratively improves the approximations from these initial iterates similarly to the Gauss-Newton method. However, it uses a global linear approximation instead of the Jacobian. The global linear approximations are computed collectively among all the iterates to minimise the computational cost associated with the evaluation of the mathematical model.