Skip to content

Commit 133ab08

Browse files
committed
Prep for release
1 parent 5f9a3d1 commit 133ab08

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
Unreleased
22
----------
3+
**Improvements**
4+
- Refactor `tasks.py` to utilize `sasctl.pzmm` functions.
5+
- Add `model_info` class to better capture model information.
6+
7+
v1.9.0 (2023-04-04)
8+
----------
9+
**Improvements**
10+
- `sasctl.pzmm` refactored to follow PEP8 standards, include type hinting, and major expansion of code coverage.
11+
- `sasctl.pzmm` functions that can generate files can now run in-memory instead of writing to disk.
12+
- Added custom KPI handling via `pzmm.model_parameters`, allowing users to interact with the KPI table generated by model performance via API.
13+
- Added a method for scikit-learn models to generate hyperparameters as custom KPIs.
14+
- Reworked the `pzmm.write_score_code()` logic to appropriately write score code for binary classification, multi-class classification, and regression models.
15+
- Updated all examples based on `sasctl.pzmm` usage and model assets.
16+
- Examples from older versions moved to `examples/ARCHIVE/vX.X`.
17+
- DataStep or ASTORE models can include additional files when running `tasks.register_model()`.
18+
319
**Bugfixes**
420
- Fixed an issue where invalid HTTP responses could cause an error when using `Session.version_info()`.
521

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,15 @@
2222
</a>
2323

2424
<a href="https://pepy.tech/project/sasctl">
25-
<img src="https://static.pepy.tech/personalized-badge/sasctl?period=month&units=international_system&left_color=black&right_color=orange&left_text=Downloads"/>
25+
<img src="https://static.pepy.tech/personalized-badge/sasctl?period=month&units=international_system&left_color=grey&right_color=brightgreen&left_text=PyPI downloads per month"/>
26+
</a>
27+
28+
<a href="https://github.com/psf/black">
29+
<img src="https://img.shields.io/badge/code%20style-black-000000.svg">
30+
</a>
31+
32+
<a href="https://pycqa.github.io/isort/">
33+
<img src="https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336">
2634
</a>
2735

2836
</div>

src/sasctl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright © 2019, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
55
# SPDX-License-Identifier: Apache-2.0
66

7-
__version__ = "1.8.2"
7+
__version__ = "1.9.0"
88
__author__ = "SAS"
99
__credits__ = [
1010
"Yi Jian Ching",

0 commit comments

Comments
 (0)