Hello,
I have timeseries data in csv file which I am loading using following code.
from datasets import load_dataset
dataset = load_dataset("csv", data_files="mobile_4hr.csv")
I know for other dataset we can randomly split like ds.train_test_split(test_size=0.3)
But for timeseries data how can I split into train and test using specific date?