Spaces:
Runtime error
Runtime error
fix formatting to make more readable
Browse filesthe code snippet before Inputs wasn't properly closed causing the rest of the card to be formatted in code
README.md
CHANGED
@@ -59,7 +59,8 @@ It can also deal with lists of references for each predictions:
|
|
59 |
>>> results = rouge.compute(predictions=predictions,
|
60 |
... references=references)
|
61 |
>>> print(results)
|
62 |
-
{'rouge1': 0.8333, 'rouge2': 0.5, 'rougeL': 0.8333, 'rougeLsum': 0.8333}
|
|
|
63 |
|
64 |
### Inputs
|
65 |
- **predictions** (`list`): list of predictions to score. Each prediction
|
|
|
59 |
>>> results = rouge.compute(predictions=predictions,
|
60 |
... references=references)
|
61 |
>>> print(results)
|
62 |
+
{'rouge1': 0.8333, 'rouge2': 0.5, 'rougeL': 0.8333, 'rougeLsum': 0.8333}
|
63 |
+
```
|
64 |
|
65 |
### Inputs
|
66 |
- **predictions** (`list`): list of predictions to score. Each prediction
|