Skip to content

Commit

Permalink
Fix PREPROC_HP_NUM_EVAL tag for MLPerf. (tensorflow#5717)
Browse files Browse the repository at this point in the history
This tag should match EVAL_HP_NUM_NEG.
  • Loading branch information
reedwm authored Nov 7, 2018
1 parent 541d584 commit d7ce21f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion official/recommendation/data_preprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def _filter_index_sort(raw_rating_path, match_mlperf):
num_items = len(original_items)

mlperf_helper.ncf_print(key=mlperf_helper.TAGS.PREPROC_HP_NUM_EVAL,
value=num_users * (1 + rconst.NUM_EVAL_NEGATIVES))
value=rconst.NUM_EVAL_NEGATIVES)
mlperf_helper.ncf_print(
key=mlperf_helper.TAGS.PREPROC_HP_SAMPLE_EVAL_REPLACEMENT,
value=match_mlperf)
Expand Down

0 comments on commit d7ce21f

Please sign in to comment.