Skip to content

Commit

Permalink
[Python] #3 QA 튜토리얼 보완
Browse files Browse the repository at this point in the history
  • Loading branch information
ratsgo committed Mar 6, 2021
1 parent 2493bad commit e31d213
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/question_answering/train_colab.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
" doc_stride=64,\n",
" do_eval=True,\n",
" batch_size=32,\n",
" epochs=10,\n",
" epochs=5,\n",
")"
],
"execution_count": null,
Expand Down
2 changes: 1 addition & 1 deletion examples/question_answering/train_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
max_query_length=32,
doc_stride=64,
batch_size=32,
epochs=10,
epochs=5,
)
# case2 : python train_local.py train_config.json
elif len(sys.argv) == 2 and sys.argv[-1].endswith(".json"):
Expand Down

0 comments on commit e31d213

Please sign in to comment.