Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 19, 2024
1 parent 09a2df7 commit a37908b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions examples/llm/hotpot_qa.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@
parser.add_argument('--NV_NIM_KEY', type=str, default="")
parser.add_argument('--local_lm', action="store_true")
parser.add_argument('--percent_data', type=float, default=1.0)
parser.add_argument('--chunk_size', type=int, default=512,
help="When splitting context documents, the maximum number of characters per chunk.")
parser.add_argument(
'--chunk_size', type=int, default=512, help=
"When splitting context documents, the maximum number of characters per chunk."
)
parser.add_argument('--checkpointing', action="store_true")
parser.add_argument('--verbose', action="store_true")
args = parser.parse_args()
Expand Down

0 comments on commit a37908b

Please sign in to comment.