From 2d0cbf5b1226147d07fd2edd1705c5dccdc2c830 Mon Sep 17 00:00:00 2001 From: arterm-sedov <66188814+arterm-sedov@users.noreply.github.com> Date: Fri, 18 Aug 2023 14:44:04 +0300 Subject: [PATCH] Corrected grammar in dataset_object.rst (#2661) * Corrected grammar in the categorical feature documentation --------- Co-authored-by: Noam Bressler --- docs/source/tabular/usage_guides/dataset_object.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/tabular/usage_guides/dataset_object.rst b/docs/source/tabular/usage_guides/dataset_object.rst index 7ff519eff6..de6a44abc8 100644 --- a/docs/source/tabular/usage_guides/dataset_object.rst +++ b/docs/source/tabular/usage_guides/dataset_object.rst @@ -147,8 +147,8 @@ Inferring Categorical Features .. warning:: It is highly recommended to explicitly state the categorical features or define their column type to be ``category``. - Otherwise, the inherent limitations of the automatic, and may cause inconsistencies (misdetection, different detection between - train and test, etc.), and required tuning and adaptions. + Otherwise, the inherent limitations of the automatic type detection may cause inconsistencies (misdetection, different detection between + train and test, etc.) and require tuning and adaptions. If the parameter ``cat_features`` was not passed explicitly, the following inference logic will run on the columns to determine which are classified as categorical: @@ -163,4 +163,4 @@ will run on the columns to determine which are classified as categorical: - If (`number of unique values in column` <= `max_categories_allowed_per_column_type`) Check the API Reference for :func:`deepchecks.utils.type_inference.infer_categorical_features` -for more details. \ No newline at end of file +for more details.