File size: 1,451 Bytes
760fef9 80d7df4 760fef9 80d7df4 760fef9 80d7df4 01b6db8 80d7df4 01b6db8 80d7df4 01b6db8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
---
language: en
license: mit
datasets:
- glue
- mrpc
metrics:
- f1
tags:
- text-classfication
- nlp
- neural-compressor
- PostTrainingsDynamic
- int8
- Intel® Neural Compressor
- albert
---
# Dynamically quantized Albert base finetuned MPRC
## Table of Contents
- [Model Details](#model-details)
- [How to Get Started With the Model](#how-to-get-started-with-the-model)
## Model Details
**Model Description:** This model is a [Albert](https://huggingface.co/textattack/albert-base-v2-MRPC) fine-tuned on MPRC dynamically quantized with [optimum-intel](https://github.com/huggingface/optimum-intel) through the usage of [huggingface/optimum-intel](https://github.com/huggingface/optimum-intel) through the usage of [Intel® Neural Compressor](https://github.com/intel/neural-compressor).
- **Model Type:** Text Classification
- **Language(s):** English
- **License:** Apache-2.0
- **Parent Model:** For more details on the original model, we encourage users to check out [this](https://huggingface.co/textattack/albert-base-v2-MRPC) model card.
## How to Get Started With the Model
### PyTorch
To load the quantized model, you can do as follows:
```python
from optimum.intel import INCModelForSequenceClassification
model = INCModelForSequenceClassification.from_pretrained("Intel/albert-base-v2-MRPC-int8")
```
#### Test result
| |INT8|FP32|
|---|:---:|:---:|
| **Accuracy (eval-f1)** |0.9193|0.9263|
| **Model size (MB)** |45.0|46.7|
|