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
4 changes: 2 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:

- name: Test with pytest and coverage
run: |
pytest --cov=analyzer_tools --cov-report=xml --cov-report=html --cov-report=term-missing --cov-fail-under=0
pytest --cov=analyzer_tools --cov-report=xml --cov-report=html --cov-report=term-missing

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
file: ./coverage.xml
files: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
data/
reports/
results/

# Coverage reports
coverage.xml
Expand Down Expand Up @@ -209,3 +210,4 @@ cython_debug/
marimo/_static/
marimo/_lsp/
__marimo__/
optimization_results.json
10 changes: 10 additions & 0 deletions analyzer_tools/planner/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Experiment planning tool

# TODO: add nested sampler
In some cases the information gain can be comparable in different scenarios.
For instance in the case of a CuOx layer on top of copper, both a protiated and
deuterated electrolyte will lead to similar information gains. But the protiated
electrolyte model looks very close to a simpler model without an oxide, as the
oxide is lost in the roughness. Using a nested sampler to compare two models (with and without an oxide) might give us better insight into what deuteration ratio is best.

We could do this by adding an alternate model to the experiment planner.
Empty file.
Loading