Skip to content

Commit

Permalink
Removed training scores computation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Noa Garcia committed Dec 2, 2019
1 parent ef703fe commit 15a9f3b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions KnowledgeRetrieval/process.py
Expand Up @@ -206,5 +206,6 @@ def evaluate(args, outdir, split):
evaluate(args, outdir, split='test')
if not os.path.exists(os.path.join(args.data_dir, 'retieval_scores_val.pckl')):
evaluate(args, outdir, split='val')
if not os.path.exists(os.path.join(args.data_dir, 'retieval_scores_train.pckl')):
evaluate(args, outdir, split='train')
# Do not compute scores for training, we use random samples in the VideoReasoning training part
# if not os.path.exists(os.path.join(args.data_dir, 'retieval_scores_train.pckl')):
# evaluate(args, outdir, split='train')

0 comments on commit 15a9f3b

Please sign in to comment.