Commit d569b531 authored by Taylor Robie's avatar Taylor Robie
Browse files

remove references to hash pipeline

parent 4fb325da
...@@ -155,7 +155,6 @@ def parse_flags(flags_obj): ...@@ -155,7 +155,6 @@ def parse_flags(flags_obj):
"train_epochs": flags_obj.train_epochs, "train_epochs": flags_obj.train_epochs,
"batches_per_step": num_devices, "batches_per_step": num_devices,
"use_seed": flags_obj.seed is not None, "use_seed": flags_obj.seed is not None,
"hash_pipeline": flags_obj.hash_pipeline,
"batch_size": batch_size, "batch_size": batch_size,
"eval_batch_size": eval_batch_size, "eval_batch_size": eval_batch_size,
"learning_rate": flags_obj.learning_rate, "learning_rate": flags_obj.learning_rate,
......
...@@ -54,11 +54,7 @@ do ...@@ -54,11 +54,7 @@ do
# To reduce variation set the seed flag: # To reduce variation set the seed flag:
# --seed ${i} # --seed ${i}
#
# And to confirm that the pipeline is deterministic pass the flag:
# --hash_pipeline
#
# (`--hash_pipeline` will slow down training, though not as much as one might imagine.)
python ncf_main.py --model_dir ${MODEL_DIR} \ python ncf_main.py --model_dir ${MODEL_DIR} \
--data_dir ${DATA_DIR} \ --data_dir ${DATA_DIR} \
--dataset ${DATASET} --hooks "" \ --dataset ${DATASET} --hooks "" \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment