This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # first start it in another terminal | |
| # vllm serve Qwen/Qwen2-VL-7B-Instruct --swap-space 16 --disable-log-requests | |
| # Define model variables | |
| MODEL_NAME="Qwen/Qwen2-VL-7B-Instruct" | |
| NUM_PROMPTS=10 | |
| # Define the output markdown file | |
| OUTPUT_FILE="benchmark_output.md" |
OlderNewer