Skip to content

Commit

Permalink
update report_missing.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kennymckormick committed Mar 20, 2024
1 parent 2674902 commit f38fd35
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/report_missing.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def completed(m, d, suf):
if not completed(f, D, suff):
logger.info(colored(f'Model {f} x Dataset {D} Not Found. ', 'red'))
ESS_MISSING.append(f'--model {f} --data {D}')
ESS_MISSING.append('')
mwlines(ESS_MISSING, 'missing_essential.txt')

logger.info(colored('Optional Datasets: ', 'magenta'))
Expand All @@ -53,4 +54,5 @@ def completed(m, d, suf):
if not completed(f, D, suff):
logger.info(colored(f'Model {f} x Dataset {D} Not Found. ', 'magenta'))
OPT_MISSING.append(f'--model {f} --data {D}')
OPT_MISSING.append('')
mwlines(OPT_MISSING, 'missing_optional.txt')

0 comments on commit f38fd35

Please sign in to comment.