From 1e4d7117d5e9640caa4d75fd765dc2078e1aff4c Mon Sep 17 00:00:00 2001 From: Mikhail Ksenzov Date: Thu, 8 Oct 2020 19:44:14 -0400 Subject: [PATCH] Update submit.md Use proper JSONL input/eval resources --- submit.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/submit.md b/submit.md index e992da9..d2d35c8 100644 --- a/submit.md +++ b/submit.md @@ -64,21 +64,21 @@ mkdir ${INPUT_DIR} mkdir ${OUTPUT_DIR} mkdir ${EVAL_DIR} -wget https://raw.githubusercontent.com/google-research-datasets/natural-questions/master/nq_open/NQ-open.efficientqa.dev.no-annotations.jsonl -P "${INPUT_DIR}" -wget https://raw.githubusercontent.com/google-research-datasets/natural-questions/master/nq_open/NQ-open.efficientqa.dev.jsonl -P "${EVAL_DIR}" +wget https://raw.githubusercontent.com/google-research-datasets/natural-questions/master/nq_open/NQ-open.efficientqa.dev.1.1.no-annotations.jsonl -P "${INPUT_DIR}" +wget https://raw.githubusercontent.com/google-research-datasets/natural-questions/master/nq_open/NQ-open.efficientqa.dev.1.1.jsonl -P "${EVAL_DIR}" docker pull gcr.io//: docker run -v ${INPUT_DIR}:/input -v ${OUTPUT_DIR}:/output \ gcr.io//: \ /submission.sh \ - /input/NQ-open.efficientqa.dev.no-annotations.jsonl \ + /input/NQ-open.efficientqa.dev.1.1.no-annotations.jsonl \ /output/predictions.jsonl cd ${EVAL_DIR} git clone https://github.com/google-research/language.git pip3 install tensorflow python3 -m language.orqa.evaluation.evaluate_predictions \ - --references_path=${EVAL_DIR}/NQ-open.efficientqa.dev.jsonl \ + --references_path=${EVAL_DIR}/NQ-open.efficientqa.dev.1.1.jsonl \ --predictions_path=${OUTPUT_DIR}/predictions.jsonl ```