You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The functions are already present in the code, so you can review them to understand their purposes. Given that they contain a significant number of internal clauses, it might be more straightforward to comprehend their functionality by reading the code directly.
The overall purpose of these functions is similar to the check_array function in sklearn. Depending on the provided flags, they can execute a wide range of checks. In our case, it’s crucial to ensure that all the checks are: a) necessary, meaning they make sense and are utilized in the code; b) implemented correctly, which we can verify by creating test cases for each check; and c) properly documented in the docstrings, with sklearn serving as an excellent reference for how to structure these. Additionally, we need to relocate these functions to a publicly accessible utils.py module, as they are intended for both internal use and external use (by anyone developing their own estimators).
The text was updated successfully, but these errors were encountered:
The functions are already present in the code, so you can review them to understand their purposes. Given that they contain a significant number of internal clauses, it might be more straightforward to comprehend their functionality by reading the code directly.
The overall purpose of these functions is similar to the check_array function in sklearn. Depending on the provided flags, they can execute a wide range of checks. In our case, it’s crucial to ensure that all the checks are: a) necessary, meaning they make sense and are utilized in the code; b) implemented correctly, which we can verify by creating test cases for each check; and c) properly documented in the docstrings, with sklearn serving as an excellent reference for how to structure these. Additionally, we need to relocate these functions to a publicly accessible utils.py module, as they are intended for both internal use and external use (by anyone developing their own estimators).
The text was updated successfully, but these errors were encountered: