From 73f34dee605057528f36e109e1eb8ff96c967318 Mon Sep 17 00:00:00 2001 From: Kamal Raj Date: Tue, 5 Nov 2019 11:09:43 +0530 Subject: [PATCH] max_seq_length default change for squad --- run_squad.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_squad.py b/run_squad.py index c213291..19c7627 100644 --- a/run_squad.py +++ b/run_squad.py @@ -95,7 +95,7 @@ "models and False for cased models.") flags.DEFINE_integer( - "max_seq_length", 512, + "max_seq_length", 384, "The maximum total input sequence length after WordPiece tokenization. " "Sequences longer than this will be truncated, and sequences shorter " "than this will be padded.")