Update README.md
Browse files
README.md
CHANGED
@@ -15,7 +15,7 @@ metrics:
|
|
15 |
|
16 |
### QuantizationAwareTraining
|
17 |
|
18 |
-
This is an INT8 PyTorch model quantized
|
19 |
|
20 |
The original fp32 model comes from the fine-tuned model [Intel/bert-base-uncased-mrpc](https://huggingface.co/Intel/bert-base-uncased-mrpc).
|
21 |
|
@@ -33,7 +33,7 @@ The original fp32 model comes from the fine-tuned model [Intel/bert-base-uncased
|
|
33 |
### Load with nlp-toolkit:
|
34 |
|
35 |
```python
|
36 |
-
from
|
37 |
int8_model = OptimizedModel.from_pretrained(
|
38 |
'Intel/bert-base-uncased-mrpc-int8-qat',
|
39 |
)
|
|
|
15 |
|
16 |
### QuantizationAwareTraining
|
17 |
|
18 |
+
This is an INT8 PyTorch model quantized with [Intel® Neural Compressor](https://github.com/intel/neural-compressor).
|
19 |
|
20 |
The original fp32 model comes from the fine-tuned model [Intel/bert-base-uncased-mrpc](https://huggingface.co/Intel/bert-base-uncased-mrpc).
|
21 |
|
|
|
33 |
### Load with nlp-toolkit:
|
34 |
|
35 |
```python
|
36 |
+
from neural_compressor.utils.load_huggingface import OptimizedModel
|
37 |
int8_model = OptimizedModel.from_pretrained(
|
38 |
'Intel/bert-base-uncased-mrpc-int8-qat',
|
39 |
)
|