Skip to content

Commit

Permalink
Removes katex and others (#471)
Browse files Browse the repository at this point in the history
* Fixing Sophgrid bug

* Add unit test for sophgrid

* Minor doc update

* Bump version Number

* Remove unnecessary doc files

* Update changelog
  • Loading branch information
HKaras authored Apr 14, 2024
1 parent cf7cefe commit fba1c4e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 20 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.1.2
v1.1.3
2 changes: 2 additions & 0 deletions deerlab/fitresult.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ class FitResult(dict):
* ``stats['aic']`` - Akaike information criterion
* ``stats['aicc']`` - Corrected Akaike information criterion
* ``stats['bic']`` - Bayesian information criterion
* ``stats['autocorr']`` - Autocorrelation based on Durbin–Watson statistic
nonlin : ndarray
Fitted non-linear parameters. [:ref:`snlls` specific attribute]
Expand Down
1 change: 1 addition & 0 deletions deerlab/solvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,7 @@ def snlls(y, Amodel, par0=None, lb=None, ub=None, lbl=None, ubl=None, nnlsSolver
* ``stats['aic']`` - Akaike information criterion
* ``stats['aicc']`` - Corrected Akaike information criterion
* ``stats['bic']`` - Bayesian information criterion
* ``stats['autocorr']`` - Autocorrelation based on Durbin–Watson statistic
success : bool
Whether or not the optimizer exited successfully.
cost : float
Expand Down
1 change: 1 addition & 0 deletions deerlab/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ def goodness_of_fit(x,xfit,Ndof,noiselvl):
stats['aic'] - Akaike information criterion
stats['aicc'] - Corrected Akaike information criterion
stats['bic'] - Bayesian information criterion
stats['autocorr'] - Autocorrelation based on Durbin–Watson statistic
"""
sigma = noiselvl
Ndof = np.maximum(Ndof,1)
Expand Down
19 changes: 0 additions & 19 deletions docsrc/package-lock.json

This file was deleted.

4 changes: 4 additions & 0 deletions docsrc/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ Release Notes
- |fix| : Something which was not working as expected or leading to errors has been fixed.
- |api| : This will require changes in your scripts or code.

Release ``v1.1.3`` - Ongoing
------------------------------------------
- |fix| : Removes unnecessary files from the docs

Release ``v1.1.2`` - November 2023
------------------------------------------
- |fix| : Fixes an issue with sophgrid (:pr:`463`).
Expand Down

0 comments on commit fba1c4e

Please sign in to comment.