{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Model example\n", "\n", "This notebook illustrates basic functionality with the `model` package that apply complex transformations on certificates.\n", "\n", "```{note}\n", "You probably don't need to use this. Instead, you should use `CCDataset` or `FIPSDataset` classes to handle the transformations for yourself.\n", "```" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "from sec_certs.dataset import CCDataset\n", "from sec_certs.model import SARTransformer" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dset: CCDataset = CCDataset.from_web()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## SARTransformer" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "transformer = SARTransformer().fit(dset.certs.values())\n", "extracted_sars = {x.dgst: transformer.transform_single_cert(x) for x in dset}" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3.8.13 ('venv': venv)", "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.8.13" }, "orig_nbformat": 4, "vscode": { "interpreter": { "hash": "a5b8c5b127d2cfe5bc3a1c933e197485eb9eba25154c3661362401503b4ef9d4" } } }, "nbformat": 4, "nbformat_minor": 2 }