From fe504aa8d4b8036dadd3c37bc13ab4cf5fedec95 Mon Sep 17 00:00:00 2001 From: Steve Schmerler <git@elcorto.com> Date: Wed, 7 May 2025 16:39:09 +0200 Subject: [PATCH] gp: add requirements --- BLcourse2.3/requirements.txt | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 BLcourse2.3/requirements.txt diff --git a/BLcourse2.3/requirements.txt b/BLcourse2.3/requirements.txt new file mode 100644 index 0000000..c1b364c --- /dev/null +++ b/BLcourse2.3/requirements.txt @@ -0,0 +1,33 @@ +# ---------------------------------------------------------------------------- +# Required to at least run the py scripts +# ---------------------------------------------------------------------------- +torch +gpytorch +pyro-ppl +matplotlib +scikit-learn + +# ---------------------------------------------------------------------------- +# Jupyter stuff, this must be present in the used Jupyter kernel on a hosted +# service like https://jupyter.jsc.fz-juelich.de +# ---------------------------------------------------------------------------- + +# Since we use paired notebooks. This is used for local dev, not really needed +# on a hosted service, but still useful to avoid confusing warnings (jupytext +# extension failed loading). +jupytext + +# for %matplotlib widget +ipympl + +# ---------------------------------------------------------------------------- +# Jupyter Lab, when running locally +# ---------------------------------------------------------------------------- + +# Jupyter Lab +jupyter + +# or Jupyter notebook is also fine +##notebook + +# vim:syn=sh -- GitLab