Skip to main content

Reusable modelling, pricing, governance, and reporting utilities.

Project description

Insurance-Pricing

A reusable toolkit for insurance modeling, pricing, governance, and reporting.

Overview

Insurance-Pricing (ins_pricing) is an enterprise-grade Python library designed for machine learning model training, pricing calculations, and model governance workflows in the insurance industry.

Core Modules

Module Description
modelling ML model training (GLM, XGBoost, ResNet, FT-Transformer, GNN) and model interpretability
pricing Factor table construction, numeric binning, premium calibration, exposure calculation, PSI monitoring
production Model prediction, batch scoring, data drift detection, production metrics monitoring
governance Model registry, version management, approval workflows, audit logging
reporting Report generation (Markdown format), report scheduling
utils Data validation, performance profiling, device management, logging configuration

Quick Start

# Model training with Bayesian optimization
from ins_pricing import bayesopt as ropt

model = ropt.BayesOptModel(
    train_data, test_data,
    model_name='my_model',
    resp_nme='target',
    weight_nme='weight',
    factor_nmes=feature_list,
    cate_list=categorical_features,
)
model.bayesopt_xgb(max_evals=100)      # Train XGBoost
model.bayesopt_resnet(max_evals=50)    # Train ResNet
model.bayesopt_ft(max_evals=50)        # Train FT-Transformer

# Pricing: build factor table
from ins_pricing.pricing import build_factor_table
factors = build_factor_table(
    df,
    factor_col='age_band',
    loss_col='claim_amount',
    exposure_col='exposure',
)

# Production: batch scoring
from ins_pricing.production import batch_score
scores = batch_score(model.trainers['xgb'].predict, df)

# Model governance
from ins_pricing.governance import ModelRegistry
registry = ModelRegistry('models.json')
registry.register(model_name, version, metrics=metrics)

Project Structure

ins_pricing/
  cli/                    # Command-line entry points
  modelling/
    core/bayesopt/         # ML model training core
    explain/               # Model interpretability
    plotting/              # Model visualization
  pricing/                 # Insurance pricing module
  production/              # Production deployment module
  governance/              # Model governance
  reporting/               # Report generation
  utils/                   # Utilities
  tests/                   # Test suite

Installation

# Basic installation
pip install ins_pricing

# Full installation (all optional dependencies)
pip install ins_pricing[all]

# Install specific extras
pip install ins_pricing[bayesopt]    # Model training
pip install ins_pricing[explain]     # Model explanation
pip install ins_pricing[plotting]    # Visualization
pip install ins_pricing[gnn]         # Graph neural networks

Multi-platform and GPU notes

  • Install the correct PyTorch build for your platform/GPU before installing extras.
  • Torch Geometric requires platform-specific wheels; follow the official PyG install guide.
  • Multi-GPU uses torch.distributed/DataParallel where supported; Windows disables CUDA DDP.

PyPI Upload (scripts)

This repo includes upload scripts for Windows and Linux/macOS.

Windows

set TWINE_PASSWORD=your_pypi_token_here
python -m build
upload_to_pypi.bat

Linux / macOS

chmod +x upload_to_pypi.sh
export TWINE_PASSWORD='your_pypi_token_here'
python -m build
./upload_to_pypi.sh

Makefile (if make is available)

make build
make upload

Tips

  • Never commit tokens to version control.
  • Use environment variables or secret managers to store credentials.
  • Test with TestPyPI before publishing when needed.

Project details


Release history Release notifications | RSS feed

This version

0.5.4

Download files

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

Source Distribution

ins_pricing-0.5.4.tar.gz (238.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ins_pricing-0.5.4-py3-none-any.whl (292.4 kB view details)

Uploaded Python 3

File details

Details for the file ins_pricing-0.5.4.tar.gz.

File metadata

  • Download URL: ins_pricing-0.5.4.tar.gz
  • Upload date:
  • Size: 238.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for ins_pricing-0.5.4.tar.gz
Algorithm Hash digest
SHA256 9fa1a4f44e3d97592ce335c2f64df7cd2f4960ee51c79d3d12625ad276404f8f
MD5 bf9bb4c72d81bdb1d252c9368a1e2d22
BLAKE2b-256 3ba327dbaa3fc19b43c176669ccec13e62e29ee39a68a65d5573a69cceae7962

See more details on using hashes here.

File details

Details for the file ins_pricing-0.5.4-py3-none-any.whl.

File metadata

  • Download URL: ins_pricing-0.5.4-py3-none-any.whl
  • Upload date:
  • Size: 292.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for ins_pricing-0.5.4-py3-none-any.whl
Algorithm Hash digest
SHA256 9d487057ea331dc89fb8bb42159645f91b881299743c05312d8bd2d4521fe49c
MD5 f0cd2be0276a37999f0cab7e79c2dc9a
BLAKE2b-256 52e65411b7d445fe9467138d5aa37fd33f241fe3462c3ada8e9f75543c678b31

See more details on using hashes here.

Supported by

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