Skip to content

Commit 28a8e70

Browse files
committed
Update test_utils.py
1 parent 2c77eeb commit 28a8e70

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

autokeras/test_utils.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,12 @@
4949
ROOT_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
5050
# Use pre-split CSVs stored under benchmark/datasets to avoid downloads and
5151
# processing at import time.
52-
TRAIN_CSV_PATH = os.path.join(ROOT_DIR, "benchmark", "datasets", "titanic_train.csv")
53-
TEST_CSV_PATH = os.path.join(ROOT_DIR, "benchmark", "datasets", "titanic_test.csv")
52+
TRAIN_CSV_PATH = os.path.join(
53+
ROOT_DIR, "benchmark", "datasets", "titanic_train.csv"
54+
)
55+
TEST_CSV_PATH = os.path.join(
56+
ROOT_DIR, "benchmark", "datasets", "titanic_test.csv"
57+
)
5458

5559

5660
def generate_data(num_instances=100, shape=(32, 32, 3)):

0 commit comments

Comments
 (0)