"src/vscode:/vscode.git/clone" did not exist on "5f04935fc106011ba0a42dda13c62cc48dbf24fa"
Unverified Commit b29163aa authored by Tab Zhang's avatar Tab Zhang Committed by GitHub
Browse files

add recommend type for selector (#3914)

parent dec845f6
......@@ -94,10 +94,10 @@ And you could reference the examples in ``/examples/feature_engineering/gradient
*
**X** (array-like, require) - The training input samples which shape = [n_samples, n_features]
**X** (array-like, require) - The training input samples which shape = [n_samples, n_features]. `np.ndarry` recommended.
*
**y** (array-like, require) - The target values (class labels in classification, real numbers in regression) which shape = [n_samples].
**y** (array-like, require) - The target values (class labels in classification, real numbers in regression) which shape = [n_samples]. `np.ndarry` recommended.
*
**groups** (array-like, optional, default = None) - Groups of columns that must be selected as a unit. e.g. [0, 0, 1, 2] specifies the first two columns are part of a group. Which shape is [n_features].
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment