concrete.ml.common.check_inputs.md

module concrete.ml.common.check_inputs

Check and conversion tools.

Utils that are used to check (including convert) some data types which are compatible with scikit-learn to numpy types.


function check_array_and_assert

check_array_and_assert(X)

sklearn.utils.check_array with an assert.

Equivalent of sklearn.utils.check_array, with a final assert that the type is one which is supported by Concrete-ML.

Args:

  • X (object): Input object to check / convert

Returns: The converted and validated array


function check_X_y_and_assert

check_X_y_and_assert(X, y, *args, **kwargs)

sklearn.utils.check_X_y with an assert.

Equivalent of sklearn.utils.check_X_y, with a final assert that the type is one which is supported by Concrete-ML.

Args:

  • X (ndarray, list, sparse matrix): Input data

  • y (ndarray, list, sparse matrix): Labels

  • *args: The arguments to pass to check_X_y

  • **kwargs: The keyword arguments to pass to check_X_y

Returns: The converted and validated arrays

Last updated