|
--- |
|
language: |
|
- en |
|
tags: |
|
- table-to-text |
|
- tabular |
|
datasets: |
|
- totto |
|
--- |
|
|
|
# BLOOM (0.56B) fine-tuned on Totto for Table-to-text |
|
|
|
This model is a fine-tuned version of [bigscience/bloom-560m](https://huggingface.co/bigscience/bloom-560m) on the **Totto** [dataset](https://huggingface.co/datasets/totto). |
|
|
|
|
|
## Usage |
|
|
|
```py |
|
from transformers import pipeline |
|
|
|
model_ckpt = "mrm8488/electricidad-base-finetuned-sst2-es" |
|
|
|
classifier = pipeline("sentiment-analysis", model=model_ckpt) |
|
|
|
classifier("Here your text in Spanish!") |
|
``` |
|
|
|
### Evaluation results |
|
|
|
| Metric | Value | |
|
|:-------:|:-----:| |
|
| rouge1 | 0.56 | |
|
| rouge2 | 0.33 | |
|
| rougeL | 0.48 | |
|
| rougeLsum | 0.48 | |
|
|
|
|
|
|
|
|
|
### Framework versions |
|
|
|
- Transformers 4.21.2 |
|
- Pytorch 1.12.1+cu113 |
|
- Datasets 2.4.0 |
|
- Tokenizers 0.12.1 |
|
|