We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c582c8 commit 21fa740Copy full SHA for 21fa740
tsml_eval/experiments/experiments.py
@@ -657,8 +657,15 @@ def __init__(self):
657
pass
658
659
def load_experimental_data(self):
660
- # TODO IMPLEMENT
661
- return super().load_experimental_data()
+ train = pd.read_csv(
+ f"{self.problem_path}/{self.dataset_name}/{self.dataset_name}_TRAIN.csv", index_col=0
662
+ ).squeeze("columns")
663
+ train = train.astype(float).to_numpy()
664
+ test = pd.read_csv(
665
+ f"{self.problem_path}/{self.dataset_name}/{self.dataset_name}_TEST.csv", index_col=0
666
667
+ test = test.astype(float).to_numpy()
668
+ return train, None, test, None
669
670
def generate_test_preds(self, x_test, y_test):
671
# TODO Implement this and train_preds properly
0 commit comments