Add description to card metadata (#1)
Browse files- Add description to card metadata (f25b32266d94472ac71efb334fcb1ef2bd411a58)
README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
---
|
| 2 |
title: Matthews Correlation Coefficient
|
| 3 |
-
emoji: 🤗
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: red
|
| 6 |
sdk: gradio
|
|
@@ -8,10 +8,20 @@ sdk_version: 3.0.2
|
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
tags:
|
| 11 |
-
- evaluate
|
| 12 |
-
- metric
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
---
|
| 14 |
-
|
| 15 |
# Metric Card for Matthews Correlation Coefficient
|
| 16 |
|
| 17 |
## Metric Description
|
|
|
|
| 1 |
---
|
| 2 |
title: Matthews Correlation Coefficient
|
| 3 |
+
emoji: 🤗
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: red
|
| 6 |
sdk: gradio
|
|
|
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
tags:
|
| 11 |
+
- evaluate
|
| 12 |
+
- metric
|
| 13 |
+
description: |-
|
| 14 |
+
Compute the Matthews correlation coefficient (MCC)
|
| 15 |
+
|
| 16 |
+
The Matthews correlation coefficient is used in machine learning as a
|
| 17 |
+
measure of the quality of binary and multiclass classifications. It takes
|
| 18 |
+
into account true and false positives and negatives and is generally
|
| 19 |
+
regarded as a balanced measure which can be used even if the classes are of
|
| 20 |
+
very different sizes. The MCC is in essence a correlation coefficient value
|
| 21 |
+
between -1 and +1. A coefficient of +1 represents a perfect prediction, 0
|
| 22 |
+
an average random prediction and -1 an inverse prediction. The statistic
|
| 23 |
+
is also known as the phi coefficient. [source: Wikipedia]
|
| 24 |
---
|
|
|
|
| 25 |
# Metric Card for Matthews Correlation Coefficient
|
| 26 |
|
| 27 |
## Metric Description
|