View the runnable example on GitHub
Find Acceleration Method with the Minimum Inference Latency using InferenceOptimizer#
This example illustrates how to apply InferenceOptimizer to quickly find acceleration method with the minimum inference latency under specific restrictions or without restrictions for a trained model. In this example, we first train ResNet18 model on the cats and dogs dataset. Then, by calling optimize(), we can obtain all available accelaration combinations provided by BigDL-Nano for inference. By calling
get_best_model() , we could get the best model under specific restrictions or without restrictions.
To inference using Bigdl-nano InferenceOptimizer, the following packages need to be installed first. We recommend you to use Miniconda to prepare the environment and install the following packages in a conda environment.
You can create a conda environment by executing:
# "nano" is conda environment name, you can use any name you like.
conda create -n nano python=3.7 setuptools=58.0.4
conda activate nano
!pip install --pre --upgrade bigdl-nano[pytorch,inference] # install the nightly-built version
Then initialize environment variables with script bigdl-nano-init installed with bigdl-nano.
[ ]:
!source bigdl-nano-init
First, prepare model and dataset. We use a pretrained ResNet18 model and train the model on cats and dogs dataset in this example.
[ ]:
from torchvision.models import resnet18
model = resnet18(pretrained=True)
_, train_dataset, val_dataset = prepare_model_and_dataset(model, val_size=500)
The full definition of function prepare_model_and_dataset could be found in the runnable example.
To find acceleration method with the minimum inference latency, you could import InferenceOptimizer and call optimize method. The optimize method will run all possible acceleration combinations and output the result, it will take about 2 minutes.
[ ]:
from bigdl.nano.pytorch import InferenceOptimizer
from torch.utils.data import DataLoader
# Define metric for accuracy calculation
def accuracy(pred, target):
pred = torch.sigmoid(pred)
return multiclass_accuracy(pred, target, num_classes=2)
optimizer = InferenceOptimizer()
# To obtain the latency of single sample, set batch_size=1
train_dataloader = DataLoader(train_dataset, batch_size=1)
val_dataloader = DataLoader(val_dataset)
optimizer.optimize(model=model,
training_data=train_dataloader,
validation_data=val_dataloader,
metric=accuracy,
direction="max",
thread_num=1,
latency_sample_num=30)
The example output of optimizer.optimize is shown below.
==========================Optimization Results==========================
-------------------------------- ---------------------- -------------- ----------------------
| method | status | latency(ms) | accuracy |
-------------------------------- ---------------------- -------------- ----------------------
| original | successful | 41.304 | 0.86 |
| fp32_ipex | successful | 38.624 | not recomputed |
| bf16 | lack dependency | None | None |
| bf16_ipex | lack dependency | None | None |
| int8 | successful | 23.108 | 0.852 |
| jit_fp32 | early stopped | 75.324 | None |
| jit_fp32_ipex | successful | 65.829 | not recomputed |
| jit_fp32_ipex_channels_last | early stopped | 90.795 | None |
| openvino_fp32 | successful | 40.322 | not recomputed |
| openvino_int8 | successful | 3.871 | 0.834 |
| onnxruntime_fp32 | successful | 30.08 | not recomputed |
| onnxruntime_int8_qlinear | successful | 18.662 | 0.846 |
| onnxruntime_int8_integer | fail to convert | None | None |
-------------------------------- ---------------------- -------------- ----------------------
Optimization cost 74.2s in total.
📝 Note
When specifying
training_dataparameter, make sure to set batch size of the training data to the same batch size you may want to use in real deploy environment, as the batch size may impact on latency.For more information, please refer to the API Documentation.
You could call get_best_model method to obtain the best model under specific restrictions or without restrictions. Here we get the model with minimal latency when accuracy drop less than 5%.
[ ]:
acc_model, option = optimizer.get_best_model(accuracy_criterion=0.05)
print("When accuracy drop less than 5%, the model with minimal latency is: ", option)
Then you could use the best model for inference.
[ ]:
with InferenceOptimizer.get_context(acc_model):
x = next(iter(train_dataloader))[0]
output = acc_model(x)
To export the best model, you could simply call save method and pass the path to it.
[ ]:
save_dir = "./best_model"
InferenceOptimizer.save(acc_model, save_dir)
The model files will be saved at ./best_model directory. For each type in the option of best model, you only need to take the following files for further usage.
OpenVINO
ov_saved_model.bin: Contains the weights and biases binary data of modelov_saved_model.xml: Model checkpoint for general use, describes model structureonnxruntime
onnx_saved_model.onnx: Represents model checkpoint for general use, describes model structureint8
best_model.pt: Represents model optimized by Intel® Neural Compressoripex | channel_last | jit
ckpt.pt: Ifjitin option, it stores model optimized using just-in-time compilation, otherwise, it stores original model weight bytorch.save(model.state_dict()).Others
saved_weight.pt: Saved bytorch.save(model.state_dict()).If
bf16in option, the model weights obtained are bf16 dtype, otherwise, the model weights obtained are fp32 dtype
📚 Related Readings