From 7917a83ae722ae0b7f39f05ed84d50c0c468ee12 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sun, 1 Oct 2023 14:14:02 +0200 Subject: [PATCH 1/6] Remove v1.6 from CI --- .github/workflows/CI.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 0e65682df6..866d6547c9 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -21,7 +21,6 @@ jobs: - Forward version: - "1" - - "1.6" steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v1 From b856109c398b25b86309baf2aaac97409e2dc4cb Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sun, 1 Oct 2023 14:14:27 +0200 Subject: [PATCH 2/6] Update pipeline.yml --- .buildkite/pipeline.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index b96c8e1aaf..26668b555a 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -20,7 +20,6 @@ steps: matrix: setup: version: - - "1.6" - "1" group: - "NNODE" From 585e9ad35e8bfa7cebe57c322598abcdb562557e Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Mon, 2 Oct 2023 01:02:10 +0200 Subject: [PATCH 3/6] Update Project.toml --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index a544d3318f..5cbe9bedd8 100644 --- a/Project.toml +++ b/Project.toml @@ -57,7 +57,7 @@ Flux = "0.13, 0.14" ForwardDiff = "0.10" Functors = "0.4" Integrals = "3.1" -IntegralsCubature = "0.2" +IntegralsCubature = "=0.2.2" LogDensityProblems = "2" Lux = "0.4, 0.5" MCMCChains = "6" From 4cca1cd1a885bcb3607993f351b3bedde1f76f77 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Mon, 2 Oct 2023 01:02:34 +0200 Subject: [PATCH 4/6] Update Project.toml --- docs/Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Project.toml b/docs/Project.toml index e136596981..a0da3777ee 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -24,7 +24,7 @@ Documenter = "0.27" DomainSets = "0.6" Flux = "0.13, 0.14" Integrals = "3.3" -IntegralsCubature = "0.2" +IntegralsCubature = "=0.2.2" Lux = "0.4, 0.5" ModelingToolkit = "8.33" NeuralPDE = "5.3" From 716ccd1a622d30a0f72ef2513a37ba6b145b9f74 Mon Sep 17 00:00:00 2001 From: Astitva Aggarwal Date: Mon, 2 Oct 2023 22:47:09 +0530 Subject: [PATCH 5/6] docs fixes --- docs/src/examples/Lotka_Volterra_BPINNs.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/src/examples/Lotka_Volterra_BPINNs.md b/docs/src/examples/Lotka_Volterra_BPINNs.md index f8a8739acf..f5ad016ca6 100644 --- a/docs/src/examples/Lotka_Volterra_BPINNs.md +++ b/docs/src/examples/Lotka_Volterra_BPINNs.md @@ -88,8 +88,7 @@ alg1 = NeuralPDE.BNNODE(chainflux, Normal(2, 2), Normal(2, 2), Normal(0, 2), - ], - n_leapfrog = 30, progress = true) + ], progress = true) sol_flux_pestim = solve(prob, alg1) @@ -98,7 +97,7 @@ alg2 = NeuralPDE.BNNODE(chainlux, draw_samples = 1000, phystd = [0.05, 0.05], priorsNNw = (0.0, 10.0), - n_leapfrog = 30, progress = true) + progress = true) sol_lux = solve(prob, alg2) From 70615bdea27e2fa4be65a2f54aaf14faf428e2f9 Mon Sep 17 00:00:00 2001 From: Vaibhav Kumar Dixit Date: Wed, 4 Oct 2023 19:05:19 +0530 Subject: [PATCH 6/6] Update docs/src/examples/Lotka_Volterra_BPINNs.md --- docs/src/examples/Lotka_Volterra_BPINNs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/examples/Lotka_Volterra_BPINNs.md b/docs/src/examples/Lotka_Volterra_BPINNs.md index f5ad016ca6..a61b1a4882 100644 --- a/docs/src/examples/Lotka_Volterra_BPINNs.md +++ b/docs/src/examples/Lotka_Volterra_BPINNs.md @@ -60,7 +60,7 @@ To make the example more realistic we add random normally distributed noise to t ```julia -# Dataset creation for parameter estimation(30 percent noise) +# Dataset creation for parameter estimation (30% noise) time = solution.t u = hcat(solution.u...) x = u[1, :] + (0.3 .*u[1, :]).*randn(length(u[1, :]))