From e3a1e75d52a554083dfb861fbb31712177737f5c Mon Sep 17 00:00:00 2001 From: Antoine Falisse Date: Thu, 27 Jun 2024 12:07:12 -0700 Subject: [PATCH] add log --- app.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 9852e26..6dbc06f 100644 --- a/app.py +++ b/app.py @@ -122,12 +122,14 @@ continue # This is a hack to have the trials with status "reprocess" to be reprocessed - # with camerasToUse_c = ['all_available'] instead of ['all']. In practice, this + # with camerasToUse = ['all_available'] instead of ['all']. In practice, this # allows reprocessing on server trials that failed because video(s) were not available. # This is a temporary solution until we have a better way to handle this. By default, # trials with missing videos are error-ed out directly so that we do not spend time - # on processing them. + # on processing them. Problem is that these trials then don't have pose pickles, which + # makes is hard for local reprocessing (hrnet still a hassle to install locally on Windows). status = trial["status"] + logging.info(f"Trial status: {status}") if status == "reprocess": camerasToUse_c = ['all_available'] else: