PyTorch NLP BERT-base
¶
This tutorial aims to introduce how to compile and deploy the natural language processing model BERT for a masked language modeling task provided by Hugging Face
. The model predicts the most probable word to fill the masked position of the given sentence.
The tutorial consists of two main steps:
- How to compile the PyTorch
BERT-base
model and save to local storage - How to deploy the compiled model in the runtime-based inference environment
Prerequisite¶
Before we proceed, please make sure you have installed the following pip packages in your system:
Note
If you want to skip the details and quickly compile and deploy the models on RBLN NPU, you can directly jump to the summary section in this tutorial. The code summarized in this section includes all the necessary steps required to compile and deploy the model so it can be used as a quick starting point for your own project.
Native RBLN API¶
Step 1. How to compile¶
We will demonstrate how to compile the Hugging Face BERT-base model.
Prepare the model¶
To begin, we will import the BertForMaskedLM
model from the transformers library.
Compile the model¶
Once the model torch.nn.Module
is instantiated, we can simply compile it with rebel.compile_from_torch()
method.
If the NPU is installed on your host machine, you can omit the npu
argument in the rebel.compile_from_torch()
function. In this case, the function will automatically detect and use the installed NPU. However, if the NPU is not installed on your host machine, you need to specify the target NPU using the npu
argument to avoid any errors.
Currently, there are two supported NPU names: RBLN-CA02
, RBLN-CA12
. If you are unsure about the name of your target NPU, you can check it by running the rbln-stat
command in the shell on the host machine where the NPU is installed.
Save the compiled model¶
To save the compiled model to local storage, we can use the compiled_model.save()
method as below.
Step 2. How to deploy¶
In this section, we will learn how to load the compiled model, run inference on RBLN NPU, and check results inferred from the model.
Prepare the input¶
First, we need to preprocess the input text sequence for the masked language modeling task. We will use BertTokenizer
from the transformers library to tokenize the input sequence.
Run inference¶
The RBLN Runtime module rebel.Runtime()
is used to load the compiled model by passing the path of the saved model as an input argument. The tensor_type
argument in rebel.Runtime()
specifies the type of tensor to be used for input and output data. It can be set to either "pt"
for PyTorch tensors or "np"
for NumPy arrays.
We can use the run()
method of the instantiated runtime module rebel.Runtime()
for running inference. Additionally, the forward()
method and the __call__
magic method can also be used to run inference, maintaining compatibility with PyTorch's interface.
You can see fundamental information of the runtime module, such as input/output shapes and the compiled model size, by using the print(module)
function.
Check results¶
To decode the final logits to text, we will use fill-mask
pipeline from the transformers library. It generates the most probable word to fill in [MASK]
of the given sentence.
The results will look like:
Summary¶
The complete code for model compilation is:
The completed code for inference of the compiled model is as follows:
torch.compile()
API¶
The RBLN SDK not only offers its native API but also supports PyTorch's torch.compile
feature. This integration allows developers to harness the power of PyTorch's just-in-time (JIT) compilation for optimized model execution directly within the RBLN SDK. By incorporating RBLN's custom backend into any workflow that utilizes torch.compile
, you can achieve enhanced performance while maintaining full compatibility with RBLN's native features.
This guide demonstrates how to compile and run the Hugging Face BERT-base model using the torch.compile()
API.
Prepare the Model¶
To begin, import the BertForMaskedLM
model from the HuggingFace transformers library and instantiate the model. This step mirrors the process used in the native RBLN API.
Prepare the Input¶
Next, prepare the input data by tokenizing the input text sequence for the masked language modeling task. This process is also identical to using the native API.
Compile and Run the Model¶
With the model and input prepared, compile and run the model using torch.compile()
. This step enables JIT compilation at runtime during the first forward pass.
Understanding torch.compile()
Parameters¶
backend="rbln"
:
- Description: Specifies the backend to use for model compilation.
- Purpose: By setting this to
"rbln"
, you direct the compilation process to utilize the RBLN SDK’s custom backend, which is optimized for performance within the RBLN environment.
options={"cache_dir": "PATH/TO/rbln_cache_dir", "npu" : "TARGET_NPU_DEVICE"}
:
- Description: Provides additional options for the compilation process.
-
Purpose:
cache_dir
:"cache_dir"
option specifies the directory where compiled artifacts should be stored.- Usage: This is similar to using
compiled_model.save("resnet50.rbln")
in the native API, creating an RBLN artifact at the specified path. - Caching: If a compiled model already exists in the specified directory, the RBLN backend will use the cached version instead of recompiling the model. This helps to reduce compilation time and overhead when the model is reused.
- Usage: This is similar to using
npu
: The identifier of the target NPU for compilation. Refer to thenpu
option in the native API documentation for more details on specifying the device identifier.
dynamic=False
:
- Description: Indicates whether the model should support dynamic input shapes.
- Purpose:
- Setting
dynamic
toFalse
is recommended for the RBLN backend because it currently does not support dynamic shapes. - Behavior: With this option set to
False
, the model assumes fixed input shapes, and any inputs with different shapes will trigger a recompilation. This ensures that the compilation is optimized for the specific shapes used in inference but means that you may need to recompile if the input shapes change.
- Setting
Summary¶
Below is a complete example that includes argument parsing to select between BERT-base and BERT-large models.