You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is some missing information and duplicated lines on splitting.py documentation.
Path: .\fklearn\src\fklearn\preprocessing\splitting.py
Describe the documentation issue
It is in space_time_split_dataset function:
Returns
----------
train_set : pandas.DataFrame
The in ID sample and in time training set.
intime_outspace_hdout : pandas.DataFrame
The out of ID sample and in time hold out set. #duplicated line
outime_inspace_hdout : pandas.DataFrame
The out of ID sample and in time hold out set. #duplicated line
holdout_space : pandas.DataFrame
The out of ID sample and in time hold out set. #duplicated line
#Should it return holdout_space?
Possible solutions
The following text is my guess of what this function should return:
Returns
----------
train_set : pandas.DataFrame
Samples with timestamp >= train_start_date and timestamp < train_end_date
All IDs are included except from those selected for validation (holdout_space)
intime_outspace_hdout : pandas.DataFrame
Samples with same timestamps of train_set
IDs are selected in holdout_space array
All rows with selected ID and in specified timestamps are included
outime_inspace_hdout : pandas.DataFrame
Samples with timestamp >= train_end_date and timestamp < holdout_end_date
All IDs are included
outime_outspace_hdout : pandas.DataFrame
Samples with same timestamps of outime_inspace_hdout.
IDs are selected in holdout_space array
All rows with selected ID and in specified timestamps are included
The text was updated successfully, but these errors were encountered:
Instructions
There is some missing information and duplicated lines on splitting.py documentation.
Path: .\fklearn\src\fklearn\preprocessing\splitting.py
Describe the documentation issue
It is in space_time_split_dataset function:
Possible solutions
The following text is my guess of what this function should return:
The text was updated successfully, but these errors were encountered: