Skip to content

Commit de432d6

Browse files
luisfabibstestoll
andauthored
Overhaul of the DeerLab documentation website for v0.14.0 (#234)
* implement penalty system for models * refactor addpenalty function, fix one warning in ICC functional * dipolarmodel: implement compactness and smoothness penalties on P(r) * tests: avoid model modification by tests * snlls: correct covariance estimation in the presence of frozen parameters * dipolarkernel: minor edits in docstring * add docstrings to experiment-specific dipolar models * adapt beginners_guide to new interface (WIP) * implement regularization penalty for models * expand model print function * expand model print function * work on getting_started docs (WIP) * pass penalties to the fit function instead of incorporating to the model * overhaul of the Sphinx theme and web design - removes Sphinx version dependency * fix error in test * overhaul of documentation (WIP) - add modelling guide - add fitting guide - reorder old sections - improve automatization of reference pages - further style edits - many minor edits * overhaul of documentation (WIP) - rewrite uncertainty guide - improve landing page - lots of minor edits - more styling * overhaul of documentation (WIP) - better automatize the API reference - edit/update the dipolar EPR guide - add missing end edit many docstrings * remove the _autosummary folder from version control * adapt packages required workflows * remove seaborn dependency * streamline the changelog * minor edits * finish up the getting started guide for dipolar EPR * fix and edit some models * remove the old markdown changelog * remove RTD theme remains in conf.py * add missing package to workflow * workflows: update the sphinx version * fix error in test * cleanup conf.py and properly document new lines * cleanup unused docsrc files * docs: add section to fitting guide * document some of the utils functions * document some of the utils functions * add back example plots to dd_models * fix all Sphinx warnings during build * remove twitter icon * automate table string formatting, improve model printout * add summary table printout for fit results, improve guides * fix URLs in landing page * fix bugs related to new _print_fitresults() function * minor edits and fixes in examples * split and restructure user-guide sections * further clean up structure * fix size and padding of images in model references other minor edits Co-authored-by: Stefan Stoll <[email protected]>
1 parent a2884a3 commit de432d6

File tree

148 files changed

+19756
-9620
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+19756
-9620
lines changed

.github/workflows/deploy_ghpages.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29-
python -m pip install sphinx_rtd_theme
29+
python -m pip install pydata-sphinx-theme
3030
python -m pip install numpydoc
3131
python -m pip install sphinx-gallery
3232
python -m pip install sphinxcontrib-httpdomain
3333
python -m pip install sphinxcontrib-ghcontributors
34-
python -m pip install m2r2
35-
python -m pip install sphinx==1.8.4
34+
python -m pip install sphinx-issues
35+
python -m pip install sphinx-copybutton
36+
python -m pip install sphinx
3637
sudo apt install texlive-extra-utils
3738
sudo apt-get install texlive-latex-extra
3839
python -m pip install .

.github/workflows/docs_PR.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,14 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip
32-
python -m pip install sphinx_rtd_theme
32+
python -m pip install pydata-sphinx-theme
3333
python -m pip install numpydoc
3434
python -m pip install sphinx-gallery
3535
python -m pip install sphinxcontrib-httpdomain
3636
python -m pip install sphinxcontrib-ghcontributors
37-
python -m pip install m2r2
38-
python -m pip install sphinx==1.8.4
37+
python -m pip install sphinx-copybutton
38+
python -m pip install sphinx-issues
39+
python -m pip install sphinx
3940
sudo apt install texlive-extra-utils
4041
sudo apt-get install texlive-latex-extra
4142
python -m pip install .

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ dist/
2424
build/
2525
.debugging.py
2626
multidocs/**/*
27+
docsrc/source/_autosummary/**/*
2728
docsrc/source/auto_examples/**/*
2829
docsrc/plot_directive/
2930
docsrc/source/_build/

CHANGELOG.md

-269
This file was deleted.

deerlab/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
from .dd_models import *
33
from .bg_models import *
44
from .ex_models import *
5-
from .model import Model, link, lincombine, merge, relate, fit
5+
from .model import Model, Penalty, Parameter, link, lincombine, merge, relate, fit
66
from .deerload import deerload
77
from .selregparam import selregparam
88
from .dipolarkernel import dipolarkernel
99
from .dipolarbackground import dipolarbackground
10-
from .dipolarmodel import dipolarmodel, dipolarpenalty, ex_4pdeer,ex_3pdeer,ex_5pdeer
10+
from .dipolarmodel import dipolarmodel,ExperimentInfo, dipolarpenalty, ex_4pdeer,ex_3pdeer,ex_5pdeer
1111
from .solvers import snlls
1212
from .regoperator import regoperator
1313
from .correctphase import correctphase

deerlab/bg_models.py

+28-25
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import scipy as scp
99
from numpy import pi
1010
import inspect
11-
from deerlab.utils import load_exvolume_redfactor
11+
from deerlab.utils import load_exvolume_redfactor,formatted_table
1212
from deerlab.model import Model
1313

1414
# Natural constants
@@ -57,31 +57,34 @@ def _docstring(model,notes):
5757
Notes
5858
-----
5959
60-
**Parameter List**
61-
62-
============ ========= ========== =========== ========== ==========================
63-
Name Lower Upper Type Units Description
64-
============ ========= ========== =========== ========== ==========================""")
60+
**Parameter Table**
61+
""")
62+
string += '\n'
63+
string += '\n'
64+
table = []
65+
table.append(['Name','Lower','Upper','Type','Frozen','Units','Description'])
6566
for n,paramname in enumerate(model._parameter_list(order='vector')):
66-
string += f'\n {paramname:7s}'
67-
string += f' {getattr(model,paramname).lb:5.3g}'
68-
string += f' {getattr(model,paramname).ub:5.3g}'
69-
string += f' {"linear" if getattr(model,paramname).linear else "nonlin"}'
70-
string += f' {str(getattr(model,paramname).units):6s}'
71-
string += f' {str(getattr(model,paramname).description):s}'
72-
string += f'\n============ ========= ========== =========== ========== =========================='
67+
param_str = f'``{paramname}``'
68+
lb_str = f'{np.atleast_1d(getattr(model,paramname).lb)[0]:5.3g}'
69+
ub_str = f'{np.atleast_1d(getattr(model,paramname).ub)[0]:5.3g}'
70+
linear_str = "linear" if np.all(getattr(model,paramname).linear) else "nonlin"
71+
frozen_str = "Yes" if np.all(getattr(model,paramname).frozen) else "No"
72+
units_str = str(getattr(model,paramname).units)
73+
desc_str = str(getattr(model,paramname).description)
74+
table.append([param_str,lb_str,ub_str,linear_str,frozen_str,units_str,desc_str])
75+
string += formatted_table(table)
76+
string += f'\n{notes}'
7377

7478
string += f'\n{notes}'
7579

76-
model.__doc__ = string
77-
return model
80+
return string
7881
#---------------------------------------------------------------------------------------
7982

8083
#=======================================================================================
8184
# bg_hom3d
8285
#=======================================================================================
8386
notes = r"""
84-
**Model:**
87+
**Model**
8588
8689
This model describes the inter-molecular interaction of one observer spin with a 3D homogenous distribution of spins of concentration `c_s`
8790
@@ -120,7 +123,7 @@ def _hom3d_fcn(t,conc,lam):
120123
# bg_hom3dex
121124
#=======================================================================================
122125
notes = r"""
123-
**Model:**
126+
**Model**
124127
125128
.. image:: ../images/model_scheme_bg_hom3dex.png
126129
:width: 350px
@@ -178,7 +181,7 @@ def _hom3dex(t,conc,rexcl,lam):
178181
# bg_homfractal
179182
#=======================================================================================
180183
notes = r"""
181-
**Model:**
184+
**Model**
182185
183186
This implements the background due to a homogeneous distribution of spins in a d-dimensional space, with d-dimensional spin concentration ``c_d``.
184187
"""
@@ -217,7 +220,7 @@ def _homfractal(t,fconc,fdim,lam):
217220
# bg_exp
218221
#=======================================================================================
219222
notes= r"""
220-
**Model:**
223+
**Model**
221224
222225
.. math::
223226
@@ -242,7 +245,7 @@ def _exp(t,decay):
242245
# bg_strexp
243246
#=======================================================================================
244247
notes = r"""
245-
**Model:**
248+
**Model**
246249
247250
.. math::
248251
@@ -268,7 +271,7 @@ def _strexp(t,decay,stretch):
268271
# bg_prodstrexp
269272
#=======================================================================================
270273
notes = r"""
271-
**Model:**
274+
**Model**
272275
273276
:math:`B(t) = \exp\left(-\kappa_1 \vert t \vert^{d_1}\right) \exp\left(-\kappa_2 \vert t\vert^{d_2}\right)`
274277
"""
@@ -293,7 +296,7 @@ def _prodstrexp(t,decay1,stretch1,decay2,stretch2):
293296
# bg_sumstrexp
294297
#=======================================================================================
295298
notes = r"""
296-
**Model:**
299+
**Model**
297300
298301
:math:`B(t) = A_1\exp \left(-\kappa_1 \vert t \vert^{d_1}\right) + (1-A_1)\exp\left(-\kappa_2 \vert t \vert^{d_2}\right)`
299302
"""
@@ -318,7 +321,7 @@ def _sumstrexp(t,decay1,stretch1,weight1,decay2,stretch2):
318321
# bg_poly1
319322
#=======================================================================================
320323
notes = r"""
321-
**Model:**
324+
**Model**
322325
323326
:math:`B(t) = p_0 + p_1 t`
324327
"""
@@ -339,7 +342,7 @@ def _poly1(t,p0,p1):
339342
# bg_poly2
340343
#=======================================================================================
341344
notes = r"""
342-
**Model:**
345+
**Model**
343346
344347
:math:`B(t) = p_0 + p_1 t + p_2 t^2`
345348
"""
@@ -360,7 +363,7 @@ def _poly2(t,p0,p1,p2):
360363
# bg_poly2
361364
#=======================================================================================
362365
notes = r"""
363-
**Model:**
366+
**Model**
364367
365368
:math:`B(t) = p_0 + p_1 t + p_2 t^2 + p_3 t^3`
366369
"""

deerlab/classes.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,13 @@ def __getattr__(self, name):
5454
return self[name]
5555
except KeyError:
5656
raise AttributeError(name)
57-
57+
5858
__setattr__ = dict.__setitem__
5959
__delattr__ = dict.__delitem__
6060

61+
def __str__(self):
62+
return self._summary
63+
6164
def __repr__(self):
6265
if self.keys():
6366
m = max(map(len, list(self.keys()))) + 1

0 commit comments

Comments
 (0)