Skip to content

Commit 50ceab6

Browse files
committed
Prep for release
1 parent 77c4151 commit 50ceab6

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Unreleased
55
- Add `model_info` class to better capture model information.
66
- Test `/examples` Jupyter notebooks within normal test suite.
77

8-
v1.10
8+
v1.10 (2023-08-31)
99
----------
1010
**Improvements**
1111
- `write_score_code.py` refactored to include ability to run batch scoring.

src/sasctl/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"Chris Toth",
1515
"Jon Walker",
1616
"Scott Lindauer",
17+
"DJ Moore",
1718
]
1819
__license__ = "Apache 2.0"
1920
__copyright__ = (

src/sasctl/pzmm/write_json_files.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -760,6 +760,7 @@ def add_df_to_fitstat(cls, df: DataFrame, data: List[dict]) -> List[dict]:
760760
return data
761761

762762
# TODO: Add unit/integration tests
763+
@experimental
763764
@classmethod
764765
def assess_model_bias(
765766
cls,
@@ -940,7 +941,6 @@ def assess_model_bias(
940941

941942
return json_files
942943

943-
# TODO: Add doc_string and unit tests
944944
@staticmethod
945945
def format_max_differences(
946946
maxdiff_dfs: List[DataFrame], datarole: str = "TEST"
@@ -971,7 +971,6 @@ def format_max_differences(
971971

972972
return maxdiff_df
973973

974-
# TODO: Add doc_string and unit tests
975974
@staticmethod
976975
def format_group_metrics(
977976
groupmetrics_dfs: List[DataFrame],
@@ -1041,7 +1040,6 @@ def format_group_metrics(
10411040
)
10421041
return groupmetrics_df
10431042

1044-
# TODO: Add doc_string and unit tests
10451043
@experimental
10461044
@classmethod
10471045
def bias_dataframes_to_json(

0 commit comments

Comments
 (0)