From 34e2de0620e1626cf4d6a76598721a6c795eda4c Mon Sep 17 00:00:00 2001 From: hstewart93 Date: Tue, 14 May 2024 11:11:53 +0100 Subject: [PATCH] Add small change to check upstream. --- continunet/network/train.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/continunet/network/train.py b/continunet/network/train.py index 055745e..8a51e75 100644 --- a/continunet/network/train.py +++ b/continunet/network/train.py @@ -5,6 +5,7 @@ from config import KAGGLE_DATASET, TRAIN_DATASET_PATH + class ApiCaller: def __init__(self): self.api = KaggleApi() @@ -25,3 +26,6 @@ def get_data(self): if not os.path.exists(KAGGLE_DATASET): self.data_api.download_dataset(TRAIN_DATASET_PATH, KAGGLE_DATASET) return self + + def load_data(self): + pass