Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,8 @@ git clone https://github.com/festim-dev/FESTIM-workshop
conda env create -f environment.yml
```

3. You should then be able to execute the notebooks with the ``festim-workshop`` environment
3. Compile the book locally

```
jupyter-book build book
```
2 changes: 2 additions & 0 deletions book/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ parts:
- caption: Getting started
chapters:
- file: content/applications/task01
- url: https://festim.readthedocs.io/en/latest/installation.html
title: Installation

- caption: Fundamentals
chapters:
Expand Down
4 changes: 2 additions & 2 deletions book/content/applications/surrogate.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ We will train several models by simply instantiating `AutoEmulate` with our $X$
:tags: [hide-output]

from autoemulate import AutoEmulate
# Run AutoEmulate with default settings
ae = AutoEmulate(X, Y, log_level="info")

ae = AutoEmulate(X, Y, log_level="info", models=["GaussianProcessRBF"])
```

```{code-cell} ipython3
Expand Down
9 changes: 3 additions & 6 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,11 @@ channels:
- defaults

dependencies:
- python<3.13
- pip=23.3
- setuptools<82
- setuptools
- wheel<0.45
- jupyter-book<2.0
- python<3.14 # som pyvista incompatibility issues with python 3.14
- python<3.13 # autoemulate is not compatible with Python 3.13 yet
- pip=23.3
- setuptools<82
- wheel<0.45
- jupytext # necessary to open MyST files using BinderHub https://jupyterbook.org/en/stable/interactive/launchbuttons.html#launchbuttons-binder
- sphinx-tags
- ipywidgets
Expand All @@ -38,4 +34,5 @@ dependencies:
- h-transport-materials==0.16
- foam2dolfinx>=1.1
- openmc2dolfinx
- torch<2.12.0
- autoemulate