Spaces:
Runtime error
Runtime error
Update README.md
Browse files
README.md
CHANGED
@@ -22,6 +22,8 @@ The beta parameter determines the weight of recall in the combined score. beta <
|
|
22 |
## How to Use
|
23 |
``` python
|
24 |
|
|
|
|
|
25 |
fbeta_score = evaluate.load("leslyarun/fbeta_score")
|
26 |
results = fbeta_score.compute(references=[0, 1], predictions=[0, 1], beta=0.5)
|
27 |
print(results)
|
|
|
22 |
## How to Use
|
23 |
``` python
|
24 |
|
25 |
+
import evaluate
|
26 |
+
|
27 |
fbeta_score = evaluate.load("leslyarun/fbeta_score")
|
28 |
results = fbeta_score.compute(references=[0, 1], predictions=[0, 1], beta=0.5)
|
29 |
print(results)
|