Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,293 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Document an application scorecard model\n",
"\n",
"Build and document an *application scorecard model* with the ValidMind Library by using Kaggle's [Lending Club](https://www.kaggle.com/datasets/devanshi23/loan-data-2007-2014/data) sample dataset to build a simple application scorecard.\n",
"\n",
"An application scorecard model is a type of statistical model used in credit scoring to evaluate the creditworthiness of potential borrowers by generating a score based on various characteristics of an applicant — such as credit history, income, employment status, and other relevant financial data. \n",
"\n",
"- This score helps lenders make decisions about whether to approve or reject loan applications, as well as determine the terms of the loan, including interest rates and credit limits. \n",
"- Application scorecard models enable lenders to manage risk efficiently while making the loan application process faster and more transparent for applicants.\n",
"\n",
"This interactive notebook provides a step-by-step guide for loading a demo dataset, preprocessing the raw data, training a model for testing, setting up test inputs, initializing the required ValidMind objects, running the test, and then logging the results to ValidMind."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<a id='toc1_'></a>\n",
"\n",
"## About ValidMind\n",
"ValidMind is a suite of tools for managing model risk, including risk associated with AI and statistical models.\n",
"\n",
"You use the ValidMind Library to automate documentation and validation tests, and then use the ValidMind Platform to collaborate on model documentation. Together, these products simplify model risk management, facilitate compliance with regulations and institutional standards, and enhance collaboration between yourself and model validators.\n",
"\n",
"<a id='toc1_1_'></a>\n",
"\n",
"### Before you begin\n",
"This notebook assumes you have basic familiarity with Python, including an understanding of how functions work. If you are new to Python, you can still run the notebook but we recommend further familiarizing yourself with the language.\n",
"\n",
"If you encounter errors due to missing modules in your Python environment, install the modules with `pip install`, and then re-run the notebook. For more help, refer to [Installing Python Modules](https://docs.python.org/3/installing/index.html).\n",
"\n",
"<a id='toc1_2_'></a>\n",
"\n",
"### New to ValidMind?\n",
"If you haven't already seen our [Get started with the ValidMind Library](https://docs.validmind.ai/developer/get-started-validmind-library.html), we recommend you begin by exploring the available resources in this section. There, you can learn more about documenting models, find code samples, or read our developer reference.\n",
"\n",
"<div class=\"alert alert-block alert-info\" style=\"background-color: #B5B5B510; color: black; border: 1px solid #083E44; border-left-width: 5px; box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);border-radius: 5px;\"><span style=\"color: #083E44;\"><b>For access to all features available in this notebook, create a free ValidMind account.</b></span>\n",
"<br></br>\n",
"Signing up is FREE — <a href=\"https://docs.validmind.ai/guide/configuration/register-with-validmind.html\" style=\"color: #DE257E;\"><b>Register with ValidMind</b></a></div>\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<a id='toc1_3_'></a>\n",
"\n",
"### Key concepts\n",
"\n",
"**Model documentation**: A structured and detailed record pertaining to a model, encompassing key components such as its underlying assumptions, methodologies, data sources, inputs, performance metrics, evaluations, limitations, and intended uses. It serves to ensure transparency, adherence to regulatory requirements, and a clear understanding of potential risks associated with the model’s application.\n",
"\n",
"**Documentation template**: Functions as a test suite and lays out the structure of model documentation, segmented into various sections and sub-sections. Documentation templates define the structure of your model documentation, specifying the tests that should be run, and how the results should be displayed.\n",
"\n",
"**Tests**: A function contained in the ValidMind Library, designed to run a specific quantitative test on the dataset or model. Tests are the building blocks of ValidMind, used to evaluate and document models and datasets, and can be run individually or as part of a suite defined by your model documentation template.\n",
"\n",
"**Custom tests**: Custom tests are functions that you define to evaluate your model or dataset. These functions can be registered via the ValidMind Library to be used with the ValidMind Platform.\n",
"\n",
"**Inputs**: Objects to be evaluated and documented in the ValidMind Library. They can be any of the following:\n",
"\n",
"- **model**: A single model that has been initialized in ValidMind with [`vm.init_model()`](https://docs.validmind.ai/validmind/validmind.html#init_model).\n",
"- **dataset**: Single dataset that has been initialized in ValidMind with [`vm.init_dataset()`](https://docs.validmind.ai/validmind/validmind.html#init_dataset).\n",
"- **models**: A list of ValidMind models - usually this is used when you want to compare multiple models in your custom test.\n",
"- **datasets**: A list of ValidMind datasets - usually this is used when you want to compare multiple datasets in your custom test. See this [example](https://docs.validmind.ai/notebooks/how_to/run_tests_that_require_multiple_datasets.html) for more information.\n",
"\n",
"**Parameters**: Additional arguments that can be passed when running a ValidMind test, used to pass additional information to a test, customize its behavior, or provide additional context.\n",
"\n",
"**Outputs**: Custom tests can return elements like tables or plots. Tables may be a list of dictionaries (each representing a row) or a pandas DataFrame. Plots may be matplotlib or plotly figures.\n",
"\n",
"**Test suites**: Collections of tests designed to run together to automate and generate model documentation end-to-end for specific use-cases.\n",
"\n",
"Example: The [`classifier_full_suite`](https://docs.validmind.ai/validmind/validmind/test_suites/classifier.html#ClassifierFullSuite) test suite runs tests from the [`tabular_dataset`](https://docs.validmind.ai/validmind/validmind/test_suites/tabular_datasets.html) and [`classifier`](https://docs.validmind.ai/validmind/validmind/test_suites/classifier.html) test suites to fully document the data and model sections for binary classification model use-cases."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<a id='toc2_'></a>\n",
"\n",
"## Install the ValidMind Library\n",
"\n",
"To install the library:"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%pip install -q validmind"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<a id='toc3_'></a>\n",
"\n",
"## Initialize the ValidMind Library\n",
"\n",
"ValidMind generates a unique _code snippet_ for each registered model to connect with your developer environment. You initialize the ValidMind Library with this code snippet, which ensures that your documentation and tests are uploaded to the correct model when you run the notebook.\n",
"\n",
"<a id='toc3_1_'></a>\n",
"\n",
"### Get your code snippet\n",
"\n",
"1. In a browser, [log in to ValidMind](https://docs.validmind.ai/guide/configuration/log-in-to-validmind.html).\n",
"\n",
"2. In the left sidebar, navigate to **Model Inventory** and click **+ Register Model**.\n",
"\n",
"3. Enter the model details and click **Continue**. ([Need more help?](https://docs.validmind.ai/guide/model-inventory/register-models-in-inventory.html))\n",
"\n",
" For example, to register a model for use with this notebook, select:\n",
"\n",
" - Documentation template: `Credit Risk Scorecard`\n",
" - Use case: `Credit Risk - CECL`\n",
"\n",
" You can fill in other options according to your preference.\n",
"\n",
"4. Go to **Getting Started** and click **Copy snippet to clipboard**.\n",
"\n",
"Next, replace the placeholder with your own code snippet:"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import validmind as vm\n",
"\n",
"vm.init(\n",
" api_host = \"https://api.prod.validmind.ai/api/v1/tracking\",\n",
" api_key = \"...\",\n",
" api_secret = \"...\",\n",
" model = \"...\"\n",
")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<a id='toc7_'></a>\n",
"\n",
"## Document the model"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"from validmind.datasets.credit_risk import lending_club\n",
"from validmind.utils import preview_test_config\n",
"\n",
"scorecard = lending_club.load_scorecard()"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"lending_club.init_vm_objects(scorecard)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"test_config = lending_club.load_test_config(scorecard)\n",
"preview_test_config(test_config)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"vm.run_documentation_tests(config=test_config)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<a id='toc8_'></a>\n",
"\n",
"## Next steps\n",
"\n",
"You can look at the results of this test suite right in the notebook where you ran the code, as you would expect. But there is a better way — use the ValidMind Platform to work with your model documentation.\n",
"\n",
"<a id='toc8_1_'></a>\n",
"\n",
"### Work with your model documentation\n",
"\n",
"1. In the ValidMind Platform, go to the **Documentation** page for the model you registered earlier. ([Need more help?](https://docs.validmind.ai/guide/model-documentation/working-with-model-documentation.html))\n",
"\n",
"2. Expand the following sections and take a look around:\n",
"\n",
" - **2. Data Preparation**\n",
" - **3. Model Development**\n",
"\n",
"What you see is the full draft of your model documentation in a more easily consumable version. From here, you can make qualitative edits to model documentation (hint: some of the tests in **2.3. Feature Selection and Engineering** look like they need some attention), view guidelines, collaborate with validators, and submit your model documentation for approval when it's ready.\n",
"\n",
"<a id='toc8_2_'></a>\n",
"\n",
"### Discover more learning resources\n",
"\n",
"We offer many interactive notebooks to help you document models:\n",
"\n",
"- [Run tests & test suites](https://docs.validmind.ai/developer/model-testing/testing-overview.html)\n",
"- [Code samples](https://docs.validmind.ai/developer/samples-jupyter-notebooks.html)\n",
"\n",
"Or, visit our [documentation](https://docs.validmind.ai/) to learn more about ValidMind."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<a id='toc9_'></a>\n",
"\n",
"## Upgrade ValidMind\n",
"\n",
"<div class=\"alert alert-block alert-info\" style=\"background-color: #B5B5B510; color: black; border: 1px solid #083E44; border-left-width: 5px; box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);border-radius: 5px;\">After installing ValidMind, you’ll want to periodically make sure you are on the latest version to access any new features and other enhancements.</div>\n",
"\n",
"Retrieve the information for the currently installed version of ValidMind:"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%pip show validmind"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"If the version returned is lower than the version indicated in our [production open-source code](https://github.com/validmind/validmind-library/blob/prod/validmind/__version__.py), restart your notebook and run:\n",
"\n",
"```bash\n",
"%pip install --upgrade validmind\n",
"```"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"You may need to restart your kernel after running the upgrade package for changes to be applied."
]
}
],
"metadata": {
"kernelspec": {
"display_name": "validmind-eEL8LtKG-py3.10",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.13"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@
"\n",
" For each metric in the test results, include in the test overview:\n",
" - The metric's purpose and what it measures\n",
" - Its mathematical formula in LaTeX notation\n",
" - Its mathematical formula\n",
" - The range of possible values\n",
" - What constitutes good/bad performance\n",
" - How to interpret different values\n",
Expand Down
Loading
Loading