開源 AI 食譜文件

引言

Hugging Face's logo
加入 Hugging Face 社群

並獲得增強的文件體驗

開始使用

Open In Colab

簡介

本食譜旨在向您展示如何正確地對 TGI 進行基準測試。有關更多背景細節和解釋,請先檢視這篇熱門部落格

設定

請確保您有一個安裝了 TGI 的環境;docker 是一個很好的選擇。這裡的命令可以輕鬆地複製/貼上到終端中,這可能會更方便。不必非要使用 Jupyter。如果您只是想測試一下,可以複製並使用 derek-thomas/tgi-benchmark-space

TGI 啟動器

>>> !text-generation-launcher --version
text-generation-launcher 2.2.1-dev0

下面我們可以看到 TGI 的不同設定。請務必仔細閱讀它們,並決定哪些設定對您的用例最重要。

以下是一些最重要的設定

  • --model-id
  • --quantize 量化可以節省記憶體,但並不總是能提高速度
  • --max-input-tokens 這允許 TGI 最佳化預填充操作
  • --max-total-tokens 結合上述引數,TGI 現在知道了最大輸入和輸出詞元數
  • --max-batch-size 這讓 TGI 知道它一次可以處理多少個請求。

最後 3 個引數共同提供了必要的限制,以便為您的用例進行最佳化。透過儘可能恰當地設定這些引數,您可以發現很多效能提升。

>>> !text-generation-launcher -h
Text Generation Launcher

Usage: text-generation-launcher [OPTIONS]

Options:
      --model-id 
          The name of the model to load. Can be a MODEL_ID as listed on  like `gpt2` or `OpenAssistant/oasst-sft-1-pythia-12b`. Or it can be a local directory containing the necessary files as saved by `save_pretrained(...)` methods of transformers [env: MODEL_ID=] [default: bigscience/bloom-560m]
      --revision 
          The actual revision of the model if you're referring to a model on the hub. You can use a specific commit id or a branch like `refs/pr/2` [env: REVISION=]
      --validation-workers 
          The number of tokenizer workers used for payload validation and truncation inside the router [env: VALIDATION_WORKERS=] [default: 2]
      --sharded 
          Whether to shard the model across multiple GPUs By default text-generation-inference will use all available GPUs to run the model. Setting it to `false` deactivates `num_shard` [env: SHARDED=] [possible values: true, false]
      --num-shard 
          The number of shards to use if you don't want to use all GPUs on a given machine. You can use `CUDA_VISIBLE_DEVICES=0,1 text-generation-launcher... --num_shard 2` and `CUDA_VISIBLE_DEVICES=2,3 text-generation-launcher... --num_shard 2` to launch 2 copies with 2 shard each on a given machine with 4 GPUs for instance [env: NUM_SHARD=]
      --quantize 
          Whether you want the model to be quantized [env: QUANTIZE=] [possible values: awq, eetq, exl2, gptq, marlin, bitsandbytes, bitsandbytes-nf4, bitsandbytes-fp4, fp8]
      --speculate 
          The number of input_ids to speculate on If using a medusa model, the heads will be picked up automatically Other wise, it will use n-gram speculation which is relatively free in terms of compute, but the speedup heavily depends on the task [env: SPECULATE=]
      --dtype 
          The dtype to be forced upon the model. This option cannot be used with `--quantize` [env: DTYPE=] [possible values: float16, bfloat16]
      --trust-remote-code
          Whether you want to execute hub modelling code. Explicitly passing a `revision` is encouraged when loading a model with custom code to ensure no malicious code has been contributed in a newer revision [env: TRUST_REMOTE_CODE=]
      --max-concurrent-requests 
          The maximum amount of concurrent requests for this particular deployment. Having a low limit will refuse clients requests instead of having them wait for too long and is usually good to handle backpressure correctly [env: MAX_CONCURRENT_REQUESTS=] [default: 128]
      --max-best-of 
          This is the maximum allowed value for clients to set `best_of`. Best of makes `n` generations at the same time, and return the best in terms of overall log probability over the entire generated sequence [env: MAX_BEST_OF=] [default: 2]
      --max-stop-sequences 
          This is the maximum allowed value for clients to set `stop_sequences`. Stop sequences are used to allow the model to stop on more than just the EOS token, and enable more complex "prompting" where users can preprompt the model in a specific way and define their "own" stop token aligned with their prompt [env: MAX_STOP_SEQUENCES=] [default: 4]
      --max-top-n-tokens 
          This is the maximum allowed value for clients to set `top_n_tokens`. `top_n_tokens` is used to return information about the the `n` most likely tokens at each generation step, instead of just the sampled token. This information can be used for downstream tasks like for classification or ranking [env: MAX_TOP_N_TOKENS=] [default: 5]
      --max-input-tokens 
          This is the maximum allowed input length (expressed in number of tokens) for users. The larger this value, the longer prompt users can send which can impact the overall memory required to handle the load. Please note that some models have a finite range of sequence they can handle. Default to min(max_position_embeddings - 1, 4095) [env: MAX_INPUT_TOKENS=]
      --max-input-length 
          Legacy version of [`Args::max_input_tokens`] [env: MAX_INPUT_LENGTH=]
      --max-total-tokens 
          This is the most important value to set as it defines the "memory budget" of running clients requests. Clients will send input sequences and ask to generate `max_new_tokens` on top. with a value of `1512` users can send either a prompt of `1000` and ask for `512` new tokens, or send a prompt of `1` and ask for `1511` max_new_tokens. The larger this value, the larger amount each request will be in your RAM and the less effective batching can be. Default to min(max_position_embeddings, 4096) [env: MAX_TOTAL_TOKENS=]
      --waiting-served-ratio 
          This represents the ratio of waiting queries vs running queries where you want to start considering pausing the running queries to include the waiting ones into the same batch. `waiting_served_ratio=1.2` Means when 12 queries are waiting and there's only 10 queries left in the current batch we check if we can fit those 12 waiting queries into the batching strategy, and if yes, then batching happens delaying the 10 running queries by a `prefill` run [env: WAITING_SERVED_RATIO=] [default: 0.3]
      --max-batch-prefill-tokens 
          Limits the number of tokens for the prefill operation. Since this operation take the most memory and is compute bound, it is interesting to limit the number of requests that can be sent. Default to `max_input_tokens + 50` to give a bit of room [env: MAX_BATCH_PREFILL_TOKENS=]
      --max-batch-total-tokens 
          **IMPORTANT** This is one critical control to allow maximum usage of the available hardware [env: MAX_BATCH_TOTAL_TOKENS=]
      --max-waiting-tokens 
          This setting defines how many tokens can be passed before forcing the waiting queries to be put on the batch (if the size of the batch allows for it). New queries require 1 `prefill` forward, which is different from `decode` and therefore you need to pause the running batch in order to run `prefill` to create the correct values for the waiting queries to be able to join the batch [env: MAX_WAITING_TOKENS=] [default: 20]
      --max-batch-size 
          Enforce a maximum number of requests per batch Specific flag for hardware targets that do not support unpadded inference [env: MAX_BATCH_SIZE=]
      --cuda-graphs 
          Specify the batch sizes to compute cuda graphs for. Use "0" to disable. Default = "1,2,4,8,16,32" [env: CUDA_GRAPHS=]
      --hostname 
          The IP address to listen on [env: HOSTNAME=r-derek-thomas-tgi-benchmark-space-geij6846-b385a-lont4] [default: 0.0.0.0]
  -p, --port 
          The port to listen on [env: PORT=80] [default: 3000]
      --shard-uds-path 
          The name of the socket for gRPC communication between the webserver and the shards [env: SHARD_UDS_PATH=] [default: /tmp/text-generation-server]
      --master-addr 
          The address the master shard will listen on. (setting used by torch distributed) [env: MASTER_ADDR=] [default: localhost]
      --master-port 
          The address the master port will listen on. (setting used by torch distributed) [env: MASTER_PORT=] [default: 29500]
      --huggingface-hub-cache 
          The location of the huggingface hub cache. Used to override the location if you want to provide a mounted disk for instance [env: HUGGINGFACE_HUB_CACHE=]
      --weights-cache-override 
          The location of the huggingface hub cache. Used to override the location if you want to provide a mounted disk for instance [env: WEIGHTS_CACHE_OVERRIDE=]
      --disable-custom-kernels
          For some models (like bloom), text-generation-inference implemented custom cuda kernels to speed up inference. Those kernels were only tested on A100. Use this flag to disable them if you're running on different hardware and encounter issues [env: DISABLE_CUSTOM_KERNELS=]
      --cuda-memory-fraction 
          Limit the CUDA available memory. The allowed value equals the total visible memory multiplied by cuda-memory-fraction [env: CUDA_MEMORY_FRACTION=] [default: 1.0]
      --rope-scaling 
          Rope scaling will only be used for RoPE models and allow rescaling the position rotary to accomodate for larger prompts [env: ROPE_SCALING=] [possible values: linear, dynamic]
      --rope-factor 
          Rope scaling will only be used for RoPE models See `rope_scaling` [env: ROPE_FACTOR=]
      --json-output
          Outputs the logs in JSON format (useful for telemetry) [env: JSON_OUTPUT=]
      --otlp-endpoint 
          [env: OTLP_ENDPOINT=]
      --otlp-service-name 
          [env: OTLP_SERVICE_NAME=] [default: text-generation-inference.router]
      --cors-allow-origin 
          [env: CORS_ALLOW_ORIGIN=]
      --api-key 
          [env: API_KEY=]
      --watermark-gamma 
          [env: WATERMARK_GAMMA=]
      --watermark-delta 
          [env: WATERMARK_DELTA=]
      --ngrok
          Enable ngrok tunneling [env: NGROK=]
      --ngrok-authtoken 
          ngrok authentication token [env: NGROK_AUTHTOKEN=]
      --ngrok-edge 
          ngrok edge [env: NGROK_EDGE=]
      --tokenizer-config-path 
          The path to the tokenizer config file. This path is used to load the tokenizer configuration which may include a `chat_template`. If not provided, the default config will be used from the model hub [env: TOKENIZER_CONFIG_PATH=]
      --disable-grammar-support
          Disable outlines grammar constrained generation. This is a feature that allows you to generate text that follows a specific grammar [env: DISABLE_GRAMMAR_SUPPORT=]
  -e, --env
          Display a lot of information about your runtime environment
      --max-client-batch-size 
          Control the maximum number of inputs that a client can send in a single request [env: MAX_CLIENT_BATCH_SIZE=] [default: 4]
      --lora-adapters 
          Lora Adapters a list of adapter ids i.e. `repo/adapter1,repo/adapter2` to load during startup that will be available to callers via the `adapter_id` field in a request [env: LORA_ADAPTERS=]
      --usage-stats 
          Control if anonymous usage stats are collected. Options are "on", "off" and "no-stack" Defaul is on [env: USAGE_STATS=] [default: on] [possible values: on, off, no-stack]
  -h, --help
          Print help (see more with '--help')
  -V, --version
          Print version

我們可以直接從食譜中啟動,因為我們不需要命令是互動式的。

在本食譜中,我們將只使用預設值,因為目的是瞭解基準測試工具。

如果您在 Space 上執行,這些引數被更改了,因為我們不希望與 Spaces 伺服器衝突

  • --hostname
  • --port

您可以根據您的需求隨意更改或刪除它們。

>>> !RUST_BACKTRACE=1 \
>>> text-generation-launcher \
>>> --model-id astronomer/Llama-3-8B-Instruct-GPTQ-8-Bit \
>>> --quantize gptq \
>>> --hostname 0.0.0.0 \
>>> --port 1337
2024-08-16T12:07:56.411768Z  INFO text_generation_launcher: Args {
    model_id: "astronomer/Llama-3-8B-Instruct-GPTQ-8-Bit",
    revision: None,
    validation_workers: 2,
    sharded: None,
    num_shard: None,
    quantize: Some(
        Gptq,
    ),
    speculate: None,
    dtype: None,
    trust_remote_code: false,
    max_concurrent_requests: 128,
    max_best_of: 2,
    max_stop_sequences: 4,
    max_top_n_tokens: 5,
    max_input_tokens: None,
    max_input_length: None,
    max_total_tokens: None,
    waiting_served_ratio: 0.3,
    max_batch_prefill_tokens: None,
    max_batch_total_tokens: None,
    max_waiting_tokens: 20,
    max_batch_size: None,
    cuda_graphs: None,
    hostname: "0.0.0.0",
    port: 1337,
    shard_uds_path: "/tmp/text-generation-server",
    master_addr: "localhost",
    master_port: 29500,
    huggingface_hub_cache: None,
    weights_cache_override: None,
    disable_custom_kernels: false,
    cuda_memory_fraction: 1.0,
    rope_scaling: None,
    rope_factor: None,
    json_output: false,
    otlp_endpoint: None,
    otlp_service_name: "text-generation-inference.router",
    cors_allow_origin: [],
    api_key: None,
    watermark_gamma: None,
    watermark_delta: None,
    ngrok: false,
    ngrok_authtoken: None,
    ngrok_edge: None,
    tokenizer_config_path: None,
    disable_grammar_support: false,
    env: false,
    max_client_batch_size: 4,
    lora_adapters: None,
    usage_stats: On,
}
2024-08-16T12:07:56.411941Z  INFO hf_hub: Token file not found "/data/token"    
config.json [00:00:00] [████████████████████████] 1021 B/1021 B 50.70 KiB/s (0s)2024-08-16T12:07:56.458451Z  INFO text_generation_launcher: Model supports up to 8192 but tgi will now set its default to 4096 instead. This is to save VRAM by refusing large prompts in order to allow more users on the same hardware. You can increase that size using `--max-batch-prefill-tokens=8242 --max-total-tokens=8192 --max-input-tokens=8191`.
2024-08-16T12:07:56.458473Z  INFO text_generation_launcher: Default `max_input_tokens` to 4095
2024-08-16T12:07:56.458480Z  INFO text_generation_launcher: Default `max_total_tokens` to 4096
2024-08-16T12:07:56.458487Z  INFO text_generation_launcher: Default `max_batch_prefill_tokens` to 4145
2024-08-16T12:07:56.458494Z  INFO text_generation_launcher: Using default cuda graphs [1, 2, 4, 8, 16, 32]
2024-08-16T12:07:56.458606Z  INFO download: text_generation_launcher: Starting check and download process for astronomer/Llama-3-8B-Instruct-GPTQ-8-Bit
2024-08-16T12:07:59.750101Z  INFO text_generation_launcher: Download file: model.safetensors
^C
2024-08-16T12:08:09.101893Z  INFO download: text_generation_launcher: Terminating download
2024-08-16T12:08:09.102368Z  INFO download: text_generation_launcher: Waiting for download to gracefully shutdown

TGI 基準測試

現在,讓我們學習如何啟動基準測試工具!

這裡我們可以看到 TGI 基準測試的不同設定。

以下是一些更重要的 TGI 基準測試設定

  • --tokenizer-name 這是必需的,以便工具知道使用哪個分詞器
  • --batch-size 這對於負載測試很重要。我們應該使用足夠多的值來觀察吞吐量和延遲的變化。請注意,在基準測試工具的上下文中,batch-size 是虛擬使用者的數量。
  • --sequence-length AKA 輸入詞元數,匹配您的用例需求非常重要
  • --decode-length AKA 輸出詞元數,匹配您的用例需求非常重要
  • --runs 預設為 10
💡 提示: 在探索時使用較小的 --runs 值,但在最終確定時使用較大的值以獲得更精確的統計資料
>>> !text-generation-benchmark -h
Text Generation Benchmarking tool

Usage: text-generation-benchmark [OPTIONS] --tokenizer-name 

Options:
  -t, --tokenizer-name 
          The name of the tokenizer (as in model_id on the huggingface hub, or local path) [env: TOKENIZER_NAME=]
      --revision 
          The revision to use for the tokenizer if on the hub [env: REVISION=] [default: main]
  -b, --batch-size 
          The various batch sizes to benchmark for, the idea is to get enough batching to start seeing increased latency, this usually means you're moving from memory bound (usual as BS=1) to compute bound, and this is a sweet spot for the maximum batch size for the model under test
  -s, --sequence-length 
          This is the initial prompt sent to the text-generation-server length in token. Longer prompt will slow down the benchmark. Usually the latency grows somewhat linearly with this for the prefill step [env: SEQUENCE_LENGTH=] [default: 10]
  -d, --decode-length 
          This is how many tokens will be generated by the server and averaged out to give the `decode` latency. This is the *critical* number you want to optimize for LLM spend most of their time doing decoding [env: DECODE_LENGTH=] [default: 8]
  -r, --runs 
          How many runs should we average from [env: RUNS=] [default: 10]
  -w, --warmups 
          Number of warmup cycles [env: WARMUPS=] [default: 1]
  -m, --master-shard-uds-path 
          The location of the grpc socket. This benchmark tool bypasses the router completely and directly talks to the gRPC processes [env: MASTER_SHARD_UDS_PATH=] [default: /tmp/text-generation-server-0]
      --temperature 
          Generation parameter in case you want to specifically test/debug particular decoding strategies, for full doc refer to the `text-generation-server` [env: TEMPERATURE=]
      --top-k 
          Generation parameter in case you want to specifically test/debug particular decoding strategies, for full doc refer to the `text-generation-server` [env: TOP_K=]
      --top-p 
          Generation parameter in case you want to specifically test/debug particular decoding strategies, for full doc refer to the `text-generation-server` [env: TOP_P=]
      --typical-p 
          Generation parameter in case you want to specifically test/debug particular decoding strategies, for full doc refer to the `text-generation-server` [env: TYPICAL_P=]
      --repetition-penalty 
          Generation parameter in case you want to specifically test/debug particular decoding strategies, for full doc refer to the `text-generation-server` [env: REPETITION_PENALTY=]
      --frequency-penalty 
          Generation parameter in case you want to specifically test/debug particular decoding strategies, for full doc refer to the `text-generation-server` [env: FREQUENCY_PENALTY=]
      --watermark
          Generation parameter in case you want to specifically test/debug particular decoding strategies, for full doc refer to the `text-generation-server` [env: WATERMARK=]
      --do-sample
          Generation parameter in case you want to specifically test/debug particular decoding strategies, for full doc refer to the `text-generation-server` [env: DO_SAMPLE=]
      --top-n-tokens 
          Generation parameter in case you want to specifically test/debug particular decoding strategies, for full doc refer to the `text-generation-server` [env: TOP_N_TOKENS=]
  -h, --help
          Print help (see more with '--help')
  -V, --version
          Print version

這是一個示例命令。請注意,我重複添加了感興趣的批處理大小,以確保它們都被基準測試工具使用。我還在根據估計的使用者活動考慮哪些批處理大小是重要的。

⚠️ 警告: 請注意,TGI 基準測試工具設計用於在終端中工作,而不是在 Jupyter Notebook 中。這意味著您需要將命令複製/貼上到 Jupyter 終端選項卡中。我把它放在這裡是為了方便。
!text-generation-benchmark \
--tokenizer-name astronomer/Llama-3-8B-Instruct-GPTQ-8-Bit \
--sequence-length 70 \
--decode-length 50 \
--batch-size 1 \
--batch-size 2 \
--batch-size 4 \
--batch-size 8 \
--batch-size 16 \
--batch-size 32 \
--batch-size 64 \
--batch-size 128
< > 在 GitHub 上更新

© . This site is unofficial and not affiliated with Hugging Face, Inc.