Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -92,15 +92,14 @@ with gr.Blocks() as demo:
|
|
| 92 |
Accuracy: is the model's ability to make correct predicitons.
|
| 93 |
It is the fraction of correct prediction out of the total predictions.
|
| 94 |
|
| 95 |
-
|
| 96 |
\text{Accuracy} = \frac{\text{Correct predictions}}{\text{All predictions}} * 100
|
| 97 |
-
|
| 98 |
|
| 99 |
Model Confidence: is the mean probabilty of each case
|
| 100 |
belonging to their assigned classes. A value of 1 is best.
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
""", latex_delimiters=[{ "left": "$", "right": "$", "display": True }])
|
| 104 |
model_confidence = gr.Number(label="Model Confidence")
|
| 105 |
with gr.Column(scale=5):
|
| 106 |
correct = gr.Number(label="Number of correct classifications", value=0)
|
|
|
|
| 92 |
Accuracy: is the model's ability to make correct predicitons.
|
| 93 |
It is the fraction of correct prediction out of the total predictions.
|
| 94 |
|
| 95 |
+
$$
|
| 96 |
\text{Accuracy} = \frac{\text{Correct predictions}}{\text{All predictions}} * 100
|
| 97 |
+
$$
|
| 98 |
|
| 99 |
Model Confidence: is the mean probabilty of each case
|
| 100 |
belonging to their assigned classes. A value of 1 is best.
|
| 101 |
+
""", latex_delimiters=[{ "left": "$$", "right": "$$", "display": True }])
|
| 102 |
+
gr.Markdown("\n\n\n")
|
|
|
|
| 103 |
model_confidence = gr.Number(label="Model Confidence")
|
| 104 |
with gr.Column(scale=5):
|
| 105 |
correct = gr.Number(label="Number of correct classifications", value=0)
|