From 08cdd5b1d96557474b0aec6983d245a6b41bc8e2 Mon Sep 17 00:00:00 2001 From: jiqing-feng Date: Thu, 12 Dec 2024 17:14:59 +0000 Subject: [PATCH] update readme Signed-off-by: jiqing-feng --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 79e1d83e3..d0caea672 100644 --- a/README.md +++ b/README.md @@ -159,7 +159,7 @@ optimized_model = OVModelForSequenceClassification.from_pretrained(save_dir) ## IPEX -To load your IPEX model, you can just replace your `AutoModelForXxx` class with the corresponding `IPEXModelForXxx` class. It loads a PyTorch checkpoint, and apply IPEX optimizations : both operators optimization (replaced with customized IPEX operators) and graph-level optimization (like operators fusion) will be applied on your model. +To load your IPEX model, you can just replace your `AutoModelForXxx` class with the corresponding `IPEXModelForXxx` class. It will load a PyTorch checkpoint, and apply IPEX optimizations : both operators optimization (replaced with customized IPEX operators) and graph-level optimization (like operators fusion) will be applied on your model. ```diff from transformers import AutoTokenizer, pipeline - from transformers import AutoModelForCausalLM