Skip to content

Commit eaba956

Browse files
committed
chore: misc cleanup
1 parent 58d32f1 commit eaba956

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/sasctl/utils/model_info.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
# SPDX-License-Identifier: Apache-2.0
66

77
from abc import ABC, abstractmethod
8-
from collections import OrderedDict
98
from typing import Any, Callable, Dict, List, Union
109

1110
import numpy as np
@@ -78,9 +77,9 @@ class ModelInfo(ABC):
7877
The cutoff value used in a binary classification model to determine which class an
7978
observation belongs to. Returns None if not a binary classification model.
8079
X : pandas.DataFrame
81-
A sample of the input data used to train the model.
80+
A sample of the input data used to train the model. Must contain at least one row.
8281
y : pandas.DataFrame
83-
A sample of the output data produced by the model.
82+
A sample of the output data produced by the model. Must have at least one row.
8483
8584
"""
8685

0 commit comments

Comments
 (0)