Skip to content

Commit

Permalink
[MISC] Fix invalid escape sequence '\'
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io>
  • Loading branch information
panpan0000 committed Sep 26, 2024
1 parent 7193774 commit 0cb9ceb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmarks/benchmark_serving.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
--model <your_model> \
--dataset-name sharegpt \
--dataset-path <path to dataset> \
--request-rate <request_rate> \ # By default <request_rate> is inf
--request-rate <request_rate> \# By default <request_rate> is inf
--num-prompts <num_prompts> # By default <num_prompts> is 1000
when using tgi backend, add
Expand Down Expand Up @@ -963,4 +963,4 @@ def main(args: argparse.Namespace):
)

args = parser.parse_args()
main(args)
main(args)

0 comments on commit 0cb9ceb

Please sign in to comment.