Spaces:
Sleeping
Sleeping
Fix order of model names and display names
Browse files
app.py
CHANGED
@@ -8,9 +8,9 @@ import numpy as np
|
|
8 |
# Load models
|
9 |
|
10 |
MODELS = [
|
11 |
-
(BAYES := "bayes-enron1-spam"
|
12 |
-
(NN
|
13 |
-
(LLM := "gisty-enron1-spam"
|
14 |
]
|
15 |
|
16 |
model_probs_path = hf_hub_download(repo_id=f"tbitai/{BAYES}", filename="probs.json")
|
|
|
8 |
# Load models
|
9 |
|
10 |
MODELS = [
|
11 |
+
("Bayes Enron1 spam", BAYES := "bayes-enron1-spam"),
|
12 |
+
("NN Enron1 spam", NN := "nn-enron1-spam"),
|
13 |
+
("GISTy Enron1 spam", LLM := "gisty-enron1-spam"),
|
14 |
]
|
15 |
|
16 |
model_probs_path = hf_hub_download(repo_id=f"tbitai/{BAYES}", filename="probs.json")
|