|
1 |
| - |
2 | 1 | Examples
|
3 | 2 | ========
|
| 3 | +The `/examples` directory includes the examples listed below. Additionally, the `/data` |
| 4 | +directory includes the model file outputs of the examples as well as the data sets |
| 5 | +utilized by the examples. |
| 6 | + |
| 7 | +Older examples are kept in the `/ARCHIVE` directory and sorted by their version of |
| 8 | +python-sasctl. |
| 9 | + |
| 10 | +PZMM Submodule |
| 11 | +============== |
| 12 | +- [Register scikit-learn binary classification models](#register-binary-classification-models) |
| 13 | +- [Register a scikit-learn regression model](#register-a-regression-model) |
| 14 | +- [Register a scikit-learn multiclass classification model](#register-a-multiclassification-model) |
| 15 | +- [Register a MLFlow model](#register-a-mlflow-model) |
| 16 | +- [Register a H2O.ai model](#register-a-h2o-model) |
4 | 17 |
|
| 18 | + |
| 19 | +- [Generate a requirements.json file](#generate-a-requirements-file) |
| 20 | +- [Create and update custom model KPIs](#create-and-update-custom-model-kpis) |
| 21 | + |
| 22 | +--- |
| 23 | +Tasks and Services |
| 24 | +================== |
5 | 25 | - [Register a SAS classification model](#register-a-sas-classification-model)
|
6 | 26 | - [Register a SAS regression model](#register-a-sas-regression-model)
|
7 | 27 | - [Register a SAS deep learning model](#register-a-sas-deep-learning-model)
|
8 | 28 |
|
| 29 | + |
9 | 30 | - [Register a scikit-learn classification model](#register-a-scikit-learn-classification-model)
|
10 | 31 | - [Register a scikit-learn regression model](#register-a-scikit-learn-regression-model)
|
11 | 32 |
|
| 33 | + |
12 | 34 | - [Full model lifecycle](#full-model-lifecycle)
|
13 | 35 | - [Register a custom model](#register-a-custom-model)
|
14 | 36 | - [Register models with model metrics](#register-models-with-model-metrics)
|
15 | 37 | - [Modeling with Python & SAS AutoML](#modeling-with-python--sas-automl)
|
16 | 38 | - [Making direct REST API calls](#making-direct-rest-api-calls)
|
17 | 39 |
|
18 | 40 | ---
|
| 41 | +Register binary classification models |
| 42 | +------------------------------------- |
| 43 | +Filename: [pzmm_binary_classification_model_import.ipynb](pzmm_binary_classification_model_import.ipynb) |
| 44 | + |
| 45 | +Level: Beginner |
| 46 | + |
| 47 | +Registers a trio of classification models in SAS Model Manager that were created from a Python algorithm with [scikit-learn](https://github.com/scikit-learn/scikit-learn). |
| 48 | + |
| 49 | + |
| 50 | +Register a regression model |
| 51 | +--------------------------- |
| 52 | +Filename: [pzmm_regression_model_import.ipynb](pzmm_regression_model_import.ipynb) |
| 53 | + |
| 54 | +Level: Beginner |
| 55 | + |
| 56 | +Registers a regression model in SAS Model Manager that was created from a Python algorithm with [scikit-learn](https://github.com/scikit-learn/scikit-learn). |
| 57 | + |
| 58 | + |
| 59 | +Register a multiclassification model |
| 60 | +------------------------------------ |
| 61 | +Filename: [pzmm_multi_classification_model_import.ipynb](pzmm_multi_classification_model_import.ipynb) |
| 62 | + |
| 63 | +Level: Beginner |
| 64 | + |
| 65 | +Registers a multiclass classification model in SAS Model Manager that was created from a Python algorithm with [scikit-learn](https://github.com/scikit-learn/scikit-learn). |
| 66 | + |
| 67 | + |
| 68 | +Register a MLFlow model |
| 69 | +----------------------- |
| 70 | +Filename: [pzmm_mlflow_model_import.ipynb](pzmm_mlflow_model_import.ipynb) |
| 71 | + |
| 72 | +Level: Intermediate |
| 73 | + |
| 74 | +Registers a classification model in SAS Model Manager that was created from a Python algorithm with [MLflow](https://github.com/mlflow/mlflow). |
| 75 | + |
| 76 | + |
| 77 | +Register a H2O model |
| 78 | +-------------------- |
| 79 | +Filename: [pzmm_h2o_model_import.ipynb](pzmm_h2o_model_import.ipynb) |
| 80 | + |
| 81 | +Level: Intermediate |
| 82 | + |
| 83 | +Registers a classification model in SAS Model Manager that was created from a Python algorithm with [H2O.ai](https://github.com/h2oai/h2o-3). |
| 84 | + |
| 85 | + |
| 86 | +Generate a requirements file |
| 87 | +--------------------------------- |
| 88 | +Filename: [pzmm_generate_requirements_json.ipynb](pzmm_generate_requirements_json.ipynb) |
| 89 | + |
| 90 | +Level: Intermediate |
| 91 | + |
| 92 | +Generates a requirements.json file which includes the minimal number of dependencies required to run a Python model |
| 93 | + |
| 94 | + |
| 95 | +Create and update custom model KPIs |
| 96 | +----------------------------------- |
| 97 | +Filename: [pzmm_custom_kpis.ipynb](pzmm_custom_kpis.ipynb) |
| 98 | + |
| 99 | +Level: Intermediate |
| 100 | + |
| 101 | +Create and update custom model parameters and kpis on SAS Model Manager |
19 | 102 |
|
20 | 103 |
|
21 | 104 | Register a SAS classification model
|
|
0 commit comments