From 27fb972354c69bf61845ae21f842855e762318d8 Mon Sep 17 00:00:00 2001 From: Jordan Gong Date: Sun, 27 Dec 2020 14:57:14 +0800 Subject: Make naming scheme consistent Use `dir` instead of `path` --- config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config.py') diff --git a/config.py b/config.py index 0d98608..316ec50 100644 --- a/config.py +++ b/config.py @@ -9,14 +9,14 @@ config: Configuration = { # GPU(s) used in training or testing, if CUDA enabled 'CUDA_VISIBLE_DEVICES': '0', # Directory used in training or testing for temporary storage - 'save_path': 'runs', + 'save_dir': 'runs', }, # Dataset settings 'dataset': { # Name of dataset (CASIA-B or FVG) 'name': 'CASIA-B', # Path to dataset root - 'path': 'dataset/output/CASIA-B', + 'root_dir': 'dataset/output/CASIA-B', # The number of subjects for training 'train_size': 74, # Number of sampled frames per sequence (Training only) -- cgit v1.2.3