Class: LeaveOneOut
Leave-One-Out cross-validator.
Provides train/test indices to split data in train/test sets. Each sample is used once as a test set (singleton) while the remaining samples form the training set.
Note: LeaveOneOut() is equivalent to KFold(n_splits=n) and LeavePOut(p=1) where n is the number of samples.
Due to the high number of test sets (which is the same as the number of samples) this cross-validation method can be very costly. For large datasets one should favor KFold, ShuffleSplit or StratifiedKFold.
Read more in the User Guide.
Constructors
new LeaveOneOut()
new LeaveOneOut(
opts?):LeaveOneOut
Parameters
| Parameter | Type | Description |
|---|---|---|
opts? | object | - |
opts.routing? | any | A MetadataRequest encapsulating routing information. |
Returns LeaveOneOut
Defined in generated/model_selection/LeaveOneOut.ts:29
Properties
| Property | Type | Default value | Defined in |
|---|---|---|---|
_isDisposed | boolean | false | generated/model_selection/LeaveOneOut.ts:27 |
_isInitialized | boolean | false | generated/model_selection/LeaveOneOut.ts:26 |
_py | PythonBridge | undefined | generated/model_selection/LeaveOneOut.ts:25 |
id | string | undefined | generated/model_selection/LeaveOneOut.ts:22 |
opts | any | undefined | generated/model_selection/LeaveOneOut.ts:23 |
Accessors
py
Get Signature
get py():
PythonBridge
Returns PythonBridge
Set Signature
set py(
pythonBridge):void
Parameters
| Parameter | Type |
|---|---|
pythonBridge | PythonBridge |
Returns void
Defined in generated/model_selection/LeaveOneOut.ts:39
Methods
dispose()
dispose():
Promise<void>
Disposes of the underlying Python resources.
Once dispose() is called, the instance is no longer usable.
Returns Promise<void>
Defined in generated/model_selection/LeaveOneOut.ts:91
get_metadata_routing()
get_metadata_routing(
opts):Promise<any>
Get metadata routing of this object.
Please check User Guide on how the routing mechanism works.
Parameters
| Parameter | Type | Description |
|---|---|---|
opts | object | - |
opts.routing? | any | A MetadataRequest encapsulating routing information. |
Returns Promise<any>
Defined in generated/model_selection/LeaveOneOut.ts:110
get_n_splits()
get_n_splits(
opts):Promise<number>
Returns the number of splitting iterations in the cross-validator.
Parameters
| Parameter | Type | Description |
|---|---|---|
opts | object | - |
opts.groups? | any | Always ignored, exists for compatibility. |
opts.X? | ArrayLike[] | Training data, where n_samples is the number of samples and n_features is the number of features. |
opts.y? | any | Always ignored, exists for compatibility. |
Returns Promise<number>
Defined in generated/model_selection/LeaveOneOut.ts:144
init()
init(
py):Promise<void>
Initializes the underlying Python resources.
This instance is not usable until the Promise returned by init() resolves.
Parameters
| Parameter | Type |
|---|---|
py | PythonBridge |
Returns Promise<void>
Defined in generated/model_selection/LeaveOneOut.ts:52
split()
split(
opts):Promise<ArrayLike>
Generate indices to split data into training and test set.
Parameters
| Parameter | Type | Description |
|---|---|---|
opts | object | - |
opts.groups? | any | Always ignored, exists for compatibility. |
opts.X? | ArrayLike[] | Training data, where n_samples is the number of samples and n_features is the number of features. |
opts.y? | ArrayLike | The target variable for supervised learning problems. |
Returns Promise<ArrayLike>
Defined in generated/model_selection/LeaveOneOut.ts:186