fix
Browse files
README.md
CHANGED
@@ -46,8 +46,8 @@ The linear modules **bert.encoder.layer.2.output.dense, bert.encoder.layer.5.int
|
|
46 |
### Load with optimum:
|
47 |
|
48 |
```python
|
49 |
-
from optimum.intel
|
50 |
-
|
51 |
-
|
52 |
-
)
|
53 |
```
|
|
|
46 |
### Load with optimum:
|
47 |
|
48 |
```python
|
49 |
+
from optimum.intel import INCModelForMultipleChoice
|
50 |
+
|
51 |
+
model_id = "Intel/bert-base-uncased-finetuned-swag-int8-static"
|
52 |
+
int8_model = INCModelForMultipleChoice.from_pretrained(model_id)
|
53 |
```
|