From 014809d9449a51012ce49dcf2cc104077b44007f Mon Sep 17 00:00:00 2001 From: Fons van der Plas Date: Wed, 7 Jan 2026 16:11:24 +0100 Subject: [PATCH 1/2] Fix download issue in PP lectures --- probprog/PP2 - Bayesian regression and classification.jl | 2 +- probprog/PP3 - variational Bayesian inference.jl | 1 + probprog/PP4 - Bayesian filtering and smoothing.jl | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/probprog/PP2 - Bayesian regression and classification.jl b/probprog/PP2 - Bayesian regression and classification.jl index 22073337..afaeb4f5 100644 --- a/probprog/PP2 - Bayesian regression and classification.jl +++ b/probprog/PP2 - Bayesian regression and classification.jl @@ -467,7 +467,7 @@ function get_data_file(name::String) p else # ...otherwise download it from our github repo - Downloads.download("https://raw.githubusercontent.com/bmlip/course/refs/tags/v4/probprog/data/$(name)") + download("https://raw.githubusercontent.com/bmlip/course/refs/tags/v4/probprog/data/$(name)") end end diff --git a/probprog/PP3 - variational Bayesian inference.jl b/probprog/PP3 - variational Bayesian inference.jl index 82443f7b..6868a740 100644 --- a/probprog/PP3 - variational Bayesian inference.jl +++ b/probprog/PP3 - variational Bayesian inference.jl @@ -441,6 +441,7 @@ function get_data_file(name::String) else # ...otherwise download it from our github repo Downloads.download("https://raw.githubusercontent.com/bmlip/course/refs/tags/v4/probprog/data/$(name)") + download("https://raw.githubusercontent.com/bmlip/course/refs/tags/v4/probprog/data/$(name)") end end diff --git a/probprog/PP4 - Bayesian filtering and smoothing.jl b/probprog/PP4 - Bayesian filtering and smoothing.jl index 90abb118..7873f111 100644 --- a/probprog/PP4 - Bayesian filtering and smoothing.jl +++ b/probprog/PP4 - Bayesian filtering and smoothing.jl @@ -328,7 +328,7 @@ function get_data_file(name::String) p else # ...otherwise download it from our github repo - Downloads.download("https://raw.githubusercontent.com/bmlip/course/refs/tags/v4/probprog/data/$(name)") + download("https://raw.githubusercontent.com/bmlip/course/refs/tags/v4/probprog/data/$(name)") end end From 5cc9989151e9373cb761b33216e2c58c87069ba3 Mon Sep 17 00:00:00 2001 From: Fons van der Plas Date: Wed, 7 Jan 2026 16:12:18 +0100 Subject: [PATCH 2/2] Update PP3 - variational Bayesian inference.jl --- probprog/PP3 - variational Bayesian inference.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/probprog/PP3 - variational Bayesian inference.jl b/probprog/PP3 - variational Bayesian inference.jl index 6868a740..96f880c2 100644 --- a/probprog/PP3 - variational Bayesian inference.jl +++ b/probprog/PP3 - variational Bayesian inference.jl @@ -440,7 +440,6 @@ function get_data_file(name::String) p else # ...otherwise download it from our github repo - Downloads.download("https://raw.githubusercontent.com/bmlip/course/refs/tags/v4/probprog/data/$(name)") download("https://raw.githubusercontent.com/bmlip/course/refs/tags/v4/probprog/data/$(name)") end end