From 448ef1655e646e80764472b355aa54e673c2be57 Mon Sep 17 00:00:00 2001 From: smallv0221 <33639025+smallv0221@users.noreply.github.com> Date: Wed, 16 Dec 2020 11:15:28 +0800 Subject: [PATCH] update dureader-robust readme result (#5064) * update lrscheduler * minor fix * add pre-commit * minor fix * Add __len__ to squad dataset * minor fix * Add dureader robust prototype * dataset implement * minor fix * fix var name * add dureader-yesno train script and dataset * add readme and fix md5sum * integrete dureader datasets * change var names: segment to mode, root to data_file * minor fix * update var name * Fix api bugs * add dataset readme * add express ner * update readme format * fix format bug * change readme path * fix format bug * fix dataset bug * add 2 datasets and update squad metric * update readme result --- .../DuReader-robust/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/PaddleNLP/examples/machine_reading_comprehension/DuReader-robust/README.md b/PaddleNLP/examples/machine_reading_comprehension/DuReader-robust/README.md index 7210d25d..0c96ce67 100644 --- a/PaddleNLP/examples/machine_reading_comprehension/DuReader-robust/README.md +++ b/PaddleNLP/examples/machine_reading_comprehension/DuReader-robust/README.md @@ -41,7 +41,7 @@ python -u ./run_du.py \ --max_seq_length 384 \ --batch_size 12 \ --learning_rate 3e-5 \ - --num_train_epochs 2 \ + --num_train_epochs 1 \ --logging_steps 1000 \ --save_steps 1000 \ --warmup_proportion 0.1 \ @@ -58,11 +58,11 @@ python -u ./run_du.py \ ```text { - "exact": 66.97247706422019, - "f1": 67.26064455422254, + "exact": 68.59562455892731, + "f1": 84.23267270105613, "total": 1417, - "HasAns_exact": 66.97247706422019, - "HasAns_f1": 67.26064455422254, + "HasAns_exact": 68.59562455892731, + "HasAns_f1": 84.23267270105613, "HasAns_total": 1417 } ``` -- GitLab