Skip to content

Commit 782dc52

Browse files
committed
Update examples README.md
1 parent 4a9962e commit 782dc52

File tree

1 file changed

+84
-1
lines changed

1 file changed

+84
-1
lines changed

examples/README.md

Lines changed: 84 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,104 @@
1-
21
Examples
32
========
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)
417

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+
==================
525
- [Register a SAS classification model](#register-a-sas-classification-model)
626
- [Register a SAS regression model](#register-a-sas-regression-model)
727
- [Register a SAS deep learning model](#register-a-sas-deep-learning-model)
828

29+
930
- [Register a scikit-learn classification model](#register-a-scikit-learn-classification-model)
1031
- [Register a scikit-learn regression model](#register-a-scikit-learn-regression-model)
1132

33+
1234
- [Full model lifecycle](#full-model-lifecycle)
1335
- [Register a custom model](#register-a-custom-model)
1436
- [Register models with model metrics](#register-models-with-model-metrics)
1537
- [Modeling with Python & SAS AutoML](#modeling-with-python--sas-automl)
1638
- [Making direct REST API calls](#making-direct-rest-api-calls)
1739

1840
---
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
19102

20103

21104
Register a SAS classification model

0 commit comments

Comments
 (0)