From 3d24f17e4df231fdb765d051de990e0bbbe80661 Mon Sep 17 00:00:00 2001 From: Sathvik Bhagavan Date: Wed, 6 Mar 2024 06:44:45 +0000 Subject: [PATCH] docs: adjust lambda in ADMM for fitting correctly --- docs/src/showcase/missing_physics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/showcase/missing_physics.md b/docs/src/showcase/missing_physics.md index 52a153ed32a..57ac59ea8da 100644 --- a/docs/src/showcase/missing_physics.md +++ b/docs/src/showcase/missing_physics.md @@ -384,7 +384,7 @@ Let's solve the data-driven problems using sparse regression. We will use the `A method, which requires we define a set of shrinking cutoff values `λ`, and we do this like: ```@example ude -λ = exp10.(-3:0.01:3) +λ = 1e-1 opt = ADMM(λ) ```