openvino/docs/articles_en/learn-openvino/llm_inference_guide/genai-guide.rst

288 lines
9.7 KiB
ReStructuredText
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Run LLMs with OpenVINO GenAI Flavor
=====================================
.. meta::
:description: Learn how to use the OpenVINO GenAI flavor to execute LLM models.
This guide will show you how to integrate the OpenVINO GenAI flavor into your application, covering
loading a model and passing the input context to receive generated text. Note that the vanilla flavor of OpenVINO
will not work with these instructions, make sure to
:doc:`install OpenVINO GenAI <../../get-started/install-openvino/install-openvino-genai>`.
.. note::
The examples use the CPU as the target device, however, the GPU is also supported.
Note that for the LLM pipeline, the GPU is used only for inference, while token selection, tokenization, and
detokenization remain on the CPU, for efficiency. Tokenizers are represented as a separate model and also run
on the CPU.
1. Export an LLM model via Hugging Face Optimum-Intel. A chat-tuned TinyLlama model is used in this example:
.. code-block:: python
optimum-cli export openvino --model "TinyLlama/TinyLlama-1.1B-Chat-v1.0" --weight-format fp16 --trust-remote-code "TinyLlama-1.1B-Chat-v1.0"
*Optional*. Optimize the model:
The model is an optimized OpenVINO IR with FP16 precision. For enhanced LLM performance,
it is recommended to use lower precision for model weights, such as INT4, and to compress weights
using NNCF during model export directly:
.. code-block:: python
optimum-cli export openvino --model "TinyLlama/TinyLlama-1.1B-Chat-v1.0" --weight-format int4 --trust-remote-code
2. Perform generation using the new GenAI API:
.. tab-set::
.. tab-item:: Python
:sync: py
.. code-block:: python
import openvino_genai as ov_genai
pipe = ov_genai.LLMPipeline(model_path, "CPU")
print(pipe.generate("The Sun is yellow because"))
.. tab-item:: C++
:sync: cpp
.. code-block:: cpp
#include "openvino/genai/llm_pipeline.hpp"
#include <iostream>
int main(int argc, char* argv[]) {
std::string model_path = argv[1];
ov::genai::LLMPipeline pipe(model_path, "CPU");//target device is CPU
std::cout << pipe.generate("The Sun is yellow because"); //input context
The `LLMPipeline` is the main object used for decoding. You can construct it directly from the
folder with the converted model. It will automatically load the main model, tokenizer, detokenizer,
and the default generation configuration.
Once the model is exported from Hugging Face Optimum-Intel, it already contains all the information
necessary for execution, including the tokenizer/detokenizer and the generation config, ensuring that
its results match those generated by Hugging Face.
Streaming the Output
###########################
For more interactive UIs during generation, streaming of model output tokens is supported. See the example
below, where a lambda function outputs words to the console immediately upon generation:
.. tab-set::
.. tab-item:: C++
.. code-block:: cpp
#include "openvino/genai/llm_pipeline.hpp"
#include <iostream>
int main(int argc, char* argv[]) {
std::string model_path = argv[1];
ov::genai::LLMPipeline pipe(model_path, "CPU");
auto streamer = [](std::string word) { std::cout << word << std::flush; };
std::cout << pipe.generate("The Sun is yellow because", streamer);
}
You can also create your custom streamer for more sophisticated processing:
.. tab-set::
.. tab-item:: C++
.. code-block:: cpp
#include <streamer_base.hpp>
class CustomStreamer: publict StreamerBase {
public:
void put(int64_t token) {/* decode tokens and do process them*/};
void end() {/* decode tokens and do process them*/};
};
int main(int argc, char* argv[]) {
CustomStreamer custom_streamer;
std::string model_path = argv[1];
ov::LLMPipeline pipe(model_path, "CPU");
cout << pipe.generate("The Sun is yellow because", custom_streamer);
}
Optimizing the Chat Scenario
################################
For chat scenarios where inputs and outputs represent a conversation, maintaining KVCache across inputs
may prove beneficial. The chat-specific methods **start_chat** and **finish_chat** are used to
mark a conversation session, as you can see in these simple examples:
.. tab-set::
.. tab-item:: Python
:sync: py
.. code-block:: python
import openvino_genai as ov_genai
pipe = ov_genai.LLMPipeline(model_path)
config = {'num_groups': 3, 'group_size': 5, 'diversity_penalty': 1.1}
pipe.set_generation_cofnig(config)
pipe.start_chat()
while True:
    print('question:')
    prompt = input()
if prompt == 'Stop!':
        break
    print(pipe(prompt))
pipe.finish_chat()
.. tab-item:: C++
:sync: cpp
.. code-block:: cpp
int main(int argc, char* argv[]) {
std::string prompt;
std::string model_path = argv[1];
ov::LLMPipeline pipe(model_path, "CPU");
pipe.start_chat();
for (size_t i = 0; i < questions.size(); i++) {
std::cout << "question:\n";
std::getline(std::cin, prompt);
std::cout << pipe(prompt) << std::endl>>;
}
pipe.finish_chat();
}
Optimizing Generation with Grouped Beam Search
#######################################################
Leverage grouped beam search decoding and configure generation_config for better text generation
quality and efficient batch processing in GenAI applications.
Use grouped beam search decoding:
.. tab-set::
.. tab-item:: C++
.. code-block:: cpp
int main(int argc, char* argv[]) {
std::string model_path = argv[1];
ov::LLMPipeline pipe(model_path, "CPU");
ov::GenerationConfig config = pipe.get_generation_config();
config.max_new_tokens = 256;
config.num_groups = 3;
config.group_size = 5;
config.diversity_penalty = 1.0f;
cout << pipe.generate("The Sun is yellow because", config);
}
Specify generation_config to use grouped beam search:
.. tab-set::
.. tab-item:: C++
.. code-block:: cpp
int main(int argc, char* argv[]) {
std::string prompt;
std::string model_path = argv[1];
ov::LLMPipeline pipe(model_path, "CPU");
ov::GenerationConfig config = pipe.get_generation_config();
config.max_new_tokens = 256;
config.num_groups = 3;
config.group_size = 5;
config.diversity_penalty = 1.0f;
auto streamer = [](std::string word) { std::cout << word << std::flush; };
pipe.start_chat();
for (size_t i = 0; i < questions.size(); i++) {
std::cout << "question:\n";
cout << prompt << endl;
auto answer = pipe(prompt, config, streamer);
// no need to print answer, streamer will do that
}
pipe.finish_chat();
}
Comparing with Hugging Face Results
#######################################
Compare and analyze results with those generated by Hugging Face models.
.. tab-set::
.. tab-item:: Python
.. code-block:: python
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("TinyLlama/TinyLlama-1.1B-Chat-v1.0")
model = AutoModelForCausalLM.from_pretrained("TinyLlama/TinyLlama-1.1B-Chat-v1.0")
max_new_tokens = 32
prompt = 'table is made of'
encoded_prompt = tokenizer.encode(prompt, return_tensors='pt', add_special_tokens=False)
hf_encoded_output = model.generate(encoded_prompt, max_new_tokens=max_new_tokens, do_sample=False)
hf_output = tokenizer.decode(hf_encoded_output[0, encoded_prompt.shape[1]:])
print(f'hf_output: {hf_output}')
import sys
sys.path.append('build-Debug/')
import py_generate_pipeline as genai # set more friendly module name
pipe = genai.LLMPipeline('text_generation/causal_lm/TinyLlama-1.1B-Chat-v1.0/pytorch/dldt/FP16/')
ov_output = pipe(prompt, max_new_tokens=max_new_tokens)
print(f'ov_output: {ov_output}')
assert hf_output == ov_output
GenAI API
#######################################
OpenVINO GenAI Flavor includes the following API:
* generation_config - defines a configuration class for text generation, enabling customization of the generation process such as the maximum length of the generated text, whether to ignore end-of-sentence tokens, and the specifics of the decoding strategy (greedy, beam search, or multinomial sampling).
* llm_pipeline - provides classes and utilities for text generation, including a pipeline for processing inputs, generating text, and managing outputs with configurable options.
* streamer_base - an abstract base class for creating streamers.
* tokenizer - the tokenizer class for text encoding and decoding.
* visibility - controls the visibility of the GenAI library.
Learn more about API in the `GenAI repository <https://github.com/openvinotoolkit/openvino.genai/tree/master/src/cpp/include/openvino/genai>`__.
Additional Resources
####################
* `OpenVINO GenAI Repo <https://github.com/openvinotoolkit/openvino.genai>`__
* `OpenVINO Tokenizers <https://github.com/openvinotoolkit/openvino_tokenizers>`__
* `Neural Network Compression Framework <https://github.com/openvinotoolkit/nncf>`__