Skip to main content

Tryangle Package - Scientific P&C Loss Reserving

Project description

Tryangle: Machine Learning Techniques for Chainladder Methods

Tryangle is an automatic chainladder reserving framework. It provides scoring and optimisation methods based on machine learning techniques to automatically select optimal parameters to minimise reserve prediction error. Tryangle is built on top of the chainladder reserving package.

Key Features

Tryangle is flexible and modular in how it can be applied:

  • Optimising loss development factors
    • Use sklearn's GridSearchCV or RandomizedSearchCV to find the optimal method to calculate loss development factors
  • Choosing between multiple reserving methods
    • Not sure if you should go with a basic chainladder, Bornhuetter-Ferguson, or Cape-Cod method? Let Tryangle decide.
  • Finding the optimal blend of reserving methods
    • Or why not combine all three, and let Tryangle find the optimal blend.
  • Using advanced optimisation methods
    • Not satisfied with an exhaustive grid search? Tryangle can be used with any optimisation framework, but we recommend Optuna

Basic Example

from sklearn.model_selection import GridSearchCV
from sklearn.pipeline import Pipeline
from tryangle import Development, CapeCod
from tryangle.metrics import neg_cdr_scorer
from tryangle.model_selection import TriangleSplit
from tryangle.utils.datasets import load_sample

X = load_sample("swiss")
tscv = TriangleSplit(n_splits=5)

param_grid = {
    "dev__n_periods": range(15, 20),
    "dev__drop_high": [True, False],
    "dev__drop_low": [True, False],
    "cc__decay": [0.25, 0.5, 0.75, 0.95],
}

pipe = Pipeline([("dev", Development()), ("cc", CapeCod())])

model = GridSearchCV(
    pipe, param_grid=param_grid, scoring=neg_cdr_scorer, cv=tscv, verbose=1, n_jobs=-1
)
model.fit(X, X)

Installation

Tryangle is available at the Python Package Index.

pip install tryangle

Tryangle supports Python 3.9.

Reference

Caesar Balona, Ronald Richman. 2021. The Actuary and IBNR Techniques: A Machine Learning Approach (SSRN).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tryangle-0.2.2.tar.gz (36.0 kB view details)

Uploaded Source

Built Distribution

tryangle-0.2.2-py3-none-any.whl (36.7 kB view details)

Uploaded Python 3

File details

Details for the file tryangle-0.2.2.tar.gz.

File metadata

  • Download URL: tryangle-0.2.2.tar.gz
  • Upload date:
  • Size: 36.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.3

File hashes

Hashes for tryangle-0.2.2.tar.gz
Algorithm Hash digest
SHA256 1af1bc0f2d0892d917584503475816d47f853d0e6bfcdb646f98efca6d0fc360
MD5 8c830e0d880a65181b10f0c70b49fe46
BLAKE2b-256 cadddb76cedf62b9fca15a1c63b0559fb6af443621f24739aa41b4b03ef7fb81

See more details on using hashes here.

File details

Details for the file tryangle-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: tryangle-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 36.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.3

File hashes

Hashes for tryangle-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 61bfc6096407affc0d156cb8928d837d72e0479c7c8ec6a715fd66953a83acc4
MD5 58e8c0e5bbb2d4900e80c335d56b9c6a
BLAKE2b-256 506a3e9b3a6f5e47c10a31a42b65a4a324c95ba265e93a6b5a03b8cd81566109

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page