Skip to content

Commit

Permalink
Prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
djm21 committed Aug 31, 2023
1 parent 77c4151 commit 50ceab6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Unreleased
- Add `model_info` class to better capture model information.
- Test `/examples` Jupyter notebooks within normal test suite.

v1.10
v1.10 (2023-08-31)
----------
**Improvements**
- `write_score_code.py` refactored to include ability to run batch scoring.
Expand Down
1 change: 1 addition & 0 deletions src/sasctl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"Chris Toth",
"Jon Walker",
"Scott Lindauer",
"DJ Moore",
]
__license__ = "Apache 2.0"
__copyright__ = (
Expand Down
4 changes: 1 addition & 3 deletions src/sasctl/pzmm/write_json_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -760,6 +760,7 @@ def add_df_to_fitstat(cls, df: DataFrame, data: List[dict]) -> List[dict]:
return data

# TODO: Add unit/integration tests
@experimental
@classmethod
def assess_model_bias(
cls,
Expand Down Expand Up @@ -940,7 +941,6 @@ def assess_model_bias(

return json_files

# TODO: Add doc_string and unit tests
@staticmethod
def format_max_differences(
maxdiff_dfs: List[DataFrame], datarole: str = "TEST"
Expand Down Expand Up @@ -971,7 +971,6 @@ def format_max_differences(

return maxdiff_df

# TODO: Add doc_string and unit tests
@staticmethod
def format_group_metrics(
groupmetrics_dfs: List[DataFrame],
Expand Down Expand Up @@ -1041,7 +1040,6 @@ def format_group_metrics(
)
return groupmetrics_df

# TODO: Add doc_string and unit tests
@experimental
@classmethod
def bias_dataframes_to_json(
Expand Down

0 comments on commit 50ceab6

Please sign in to comment.