Skip to content

Commit

Permalink
Merge branch master into KH_dev
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethshsu committed Sep 14, 2023
2 parents bed3583 + 9918309 commit f21b859
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion chainladder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ def auto_sparse(auto_sparse=True):
from chainladder.methods import * # noqa (API Import)
from chainladder.workflow import * # noqa (API Import)

__version__ = "0.8.17"
__version__ = "0.9.0"
2 changes: 1 addition & 1 deletion chainladder/development/clark.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def solver(x):
x0 = xp.array([[[[1.0, age_interval]]]])
bounds = ((1e-6, None), (1e-6, None))
idx_params.append(
minimize(fun=solver, x0=x0, bounds=bounds).x.reshape(1, 1, 1, -1)
minimize(fun=solver, x0=x0.flatten(), bounds=bounds).x.reshape(1, 1, 1, -1)
)
params.append(xp.concatenate(idx_params, axis=1))
params = xp.concatenate(params, axis=0)
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started/online_sandbox/sandbox_intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ You can open the sandbox tutorial in one of two ways. You may be forced to use o
<!-- - Open in [Google Colab](https://githubtocolab.com/casact/chainladder-python/blob/master/docs/library/2022_cas_annual_meeting/demo-blank-concurrent.ipynb) (faster, but a free Google Account is required)
- Open in [Binder](https://mybinder.org/v2/gh/casact/chainladder-python/master?urlpath=treedocs/library/2022_cas_annual_meeting/demo-blank-concurrent.ipynb) (slower, no sign up required) -->

Just in case you want a copy of the sandbox tutorial notebook, you can download it [here](https://github.com/casact/chainladder-python/blob/master/docs/getting_started/online_sandbox/demo-blank-concurrent.ipynb).
Just in case you want a copy of the sandbox tutorial notebook, you can download it [here](https://github.com/casact/chainladder-python/blob/master/docs/getting_started/online_sandbox/demo-blank-concurrent.ipynb).
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
descr = "Chainladder Package - P&C Loss Reserving package "
name = 'chainladder'
url = 'https://github.com/casact/chainladder-python'
version='0.8.17' # Put this in __init__.py
version='0.9.0' # Put this in __init__.py

data_path = ''
setup(
Expand Down

0 comments on commit f21b859

Please sign in to comment.