Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
tags:
|
5 |
+
- table-to-text
|
6 |
+
- tabular
|
7 |
+
datasets:
|
8 |
+
- totto
|
9 |
+
---
|
10 |
+
|
11 |
+
# BLOOM (0.56B) fine-tuned on Totto for Table-to-text
|
12 |
+
|
13 |
+
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).
|
14 |
+
|
15 |
+
|
16 |
+
## Usage
|
17 |
+
|
18 |
+
```py
|
19 |
+
from transformers import pipeline
|
20 |
+
|
21 |
+
model_ckpt = "mrm8488/electricidad-base-finetuned-sst2-es"
|
22 |
+
|
23 |
+
classifier = pipeline("sentiment-analysis", model=model_ckpt)
|
24 |
+
|
25 |
+
classifier("Here your text in Spanish!")
|
26 |
+
```
|
27 |
+
|
28 |
+
### Evaluation results
|
29 |
+
|
30 |
+
| Metric | Value |
|
31 |
+
|:-------:|:-----:|
|
32 |
+
| rouge1 | 0.56 |
|
33 |
+
| rouge2 | 0.33 |
|
34 |
+
| rougeL | 0.48 |
|
35 |
+
| rougeLsum | 0.48 |
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
### Framework versions
|
41 |
+
|
42 |
+
- Transformers 4.21.2
|
43 |
+
- Pytorch 1.12.1+cu113
|
44 |
+
- Datasets 2.4.0
|
45 |
+
- Tokenizers 0.12.1
|