File size: 1,175 Bytes
5974bbd
 
198d597
 
 
 
 
 
 
 
5974bbd
198d597
b1f17e8
198d597
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: apache-2.0
tags:
- int8
- Intel® Neural Compressor
- PostTrainingStatic
datasets: 
- imagenet-1k
metrics:
- accuracy
---

# The INT8 model based on vit-base-patch16-224 which finetuned on imagenet-1k

### Post-training static quantization

This is an INT8  PyTorch model quantized with [Intel® Neural Compressor](https://github.com/intel/neural-compressor). 

The original fp32 model comes from the fine-tuned model [google/vit-base-patch16-224](https://huggingface.co/google/vit-base-patch16-224).

The calibration dataloader is the train dataloader. The default calibration sampling size 1000 because of 1000 classes of imagenet-1k.

The linear modules **vit.encoder.layer.5.output.dense**, **vit.encoder.layer.9.attention.attention.query.module**, fall back to fp32 for less than 1% relative accuracy loss.

### Evaluation result

|   |INT8|FP32|
|---|:---:|:---:|
| **Accuracy (eval-acc)** |80.576|81.326|
| **Model size (MB)**  |94|331|

### Load with Intel® Neural Compressor:

```python
from neural_compressor.utils.load_huggingface import OptimizedModel
int8_model = OptimizedModel.from_pretrained(
    'Intel/vit-base-patch16-224-int8-static',
)
```