Skip to content

Commit b7484cb

Browse files
gustavocidornelaswhoseoyster
authored andcommitted
Small re-wordings
1 parent d4300cd commit b7484cb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

unboxapi/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ def add_model(
441441
You can now upload this dataset to Unbox:
442442
443443
>>> model = project.add_model(
444-
... name='Linear classifiers',
444+
... name='Linear classifier',
445445
... task_type=task_type,
446446
... function=predict_proba,
447447
... model=sklearn_model,
@@ -737,7 +737,7 @@ def add_dataset(
737737
Column header in the csv containing the input text. Only applicable if your ``task_type`` is
738738
:obj:`TaskType.TextClassification`.
739739
categorical_feature_names : List[str], default []
740-
A list containing the names of all categorical features on the dataset. E.g. `["Gender", "Geography"]`.
740+
A list containing the names of all categorical features in the dataset. E.g. `["Gender", "Geography"]`.
741741
Only applicable if your ``task_type`` is :obj:`TaskType.TabularClassification` or :obj:`TaskType.TabularRegression`.
742742
tag_column_name : str, default None
743743
Column header in the csv containing tags you want pre-populated in Unbox.
@@ -1029,7 +1029,7 @@ def add_dataframe(
10291029
Column header in the csv containing the input text. Only applicable if your ``task_type`` is
10301030
:obj:`TaskType.TextClassification`.
10311031
categorical_feature_names : List[str], default []
1032-
A list containing the names of all categorical features on the dataframe. E.g. `["Gender", "Geography"]`.
1032+
A list containing the names of all categorical features in the dataframe. E.g. `["Gender", "Geography"]`.
10331033
Only applicable if your ``task_type`` is :obj:`TaskType.TabularClassification` or :obj:`TaskType.TabularRegression`.
10341034
description : str, default None
10351035
Commit message for this version.

0 commit comments

Comments
 (0)