T5
Collection
Originally from Google: Text-To-Text Transfer Transformer (T5)
•
4 items
•
Updated
This is an INT8 PyTorch model quantized with huggingface/optimum-intel through the usage of Intel® Neural Compressor.
The original fp32 model comes from the fine-tuned model sysresearch101/t5-large-finetuned-xsum-cnn.
INT8 | FP32 | |
---|---|---|
Accuracy (eval-rougeLsum) | 29.6346 | 29.7451 |
Model size | 879M | 3021M |
from optimum.intel import INCModelForSeq2SeqLM
model_id = "Intel/t5-large-finetuned-xsum-cnn-int8-dynamic"
int8_model = INCModelForSeq2SeqLM.from_pretrained(model_id)