We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffdd4e1 commit b6af8a5Copy full SHA for b6af8a5
hyperfast/hyperfast.py
@@ -146,6 +146,11 @@ def _get_tags(self) -> dict:
146
tags["allow_nan"] = True
147
return tags
148
149
+ def __sklearn_tags__(self):
150
+ tags = super().__sklearn_tags__()
151
+ tags.input_tags.allow_nan = True
152
+ return tags
153
+
154
def _preprocess_fitting_data(
155
self,
156
x: np.ndarray | pd.DataFrame,
setup.cfg
@@ -19,6 +19,6 @@ python_requires = >=3.9
19
install_requires =
20
numpy>=1.26.2
21
pandas>=2.1.3
22
- scikit-learn>=1.3.2
+ scikit-learn>=1.3.2,<1.7
23
torch>=1.10.2
24
requests>=2.31.0
0 commit comments