File size: 784 Bytes
e216422 |
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 |
---
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
|