xinhe commited on
Commit
03cf0db
·
1 Parent(s): 1af1979

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -15,7 +15,7 @@ metrics:
15
 
16
  ### QuantizationAwareTraining
17
 
18
- This is an INT8 PyTorch model quantized by [intel/nlp-toolkit](https://github.com/intel/nlp-toolkit) using provider: [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,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 nlp_toolkit import OptimizedModel
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
  )