{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Microsoft Sentinel Notebooks and MSTICPy\n",
"## Examples of machine learning techniques in Jupyter notebooks\n",
"\n",
"Author: Ian Hellen\n",
"
Co-Authors: Pete Bryan, Ashwin Patil\n",
"\n",
"Released: 26 Oct 2020"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Notebook Setup\n",
"\n",
"Please ensure that MSTICPy is installed before continuing with this notebook.\n",
"\n",
"The nbinit module loads required libraries and optionally installs require packages."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"gather": {
"logged": 1618337296472
}
},
"outputs": [],
"source": [
"from pathlib import Path\n",
"from IPython.display import display, HTML\n",
"import warnings\n",
"warnings.simplefilter(action='ignore', category=FutureWarning)\n",
"\n",
"REQ_PYTHON_VER = \"3.10\"\n",
"REQ_MSTICPY_VER = \"2.12.0\"\n",
"REQ_MP_EXTRAS = [\"ml\"]\n",
"\n",
"\n",
"display(HTML(\"