From d3cdc41f2d99292994b6350e8de262b5fe347251 Mon Sep 17 00:00:00 2001 From: Victor Joos Date: Mon, 8 Apr 2024 11:04:59 +0200 Subject: [PATCH] Add a space for warning --- tracklab/wrappers/datasets/soccernet/soccernet_game_state.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracklab/wrappers/datasets/soccernet/soccernet_game_state.py b/tracklab/wrappers/datasets/soccernet/soccernet_game_state.py index 0600294f..43c16c7a 100644 --- a/tracklab/wrappers/datasets/soccernet/soccernet_game_state.py +++ b/tracklab/wrappers/datasets/soccernet/soccernet_game_state.py @@ -33,7 +33,7 @@ def __init__(self, if os.path.exists(self.dataset_path / split): sets[split] = load_set(self.dataset_path / split, nvid, vids_dict.get(split, [])) else: - log.warning(f"Warning: The '{split}' set does not exist in the SoccerNetGS dataset at '{self.dataset_path}'." + log.warning(f"Warning: The '{split}' set does not exist in the SoccerNetGS dataset at '{self.dataset_path}'. " f"Please check the path or download the dataset following the instructions here: https://github.com/soccerNet/sn-gamestate#manual-downloading-of-soccernet-gamestate") # We pass 'nvid=-1', 'vids_dict=None' because video subsampling is already done in the load_set function