Spaces:
Sleeping
Sleeping
Update scoring/specificity.py
Browse files- scoring/specificity.py +3 -3
scoring/specificity.py
CHANGED
@@ -20,9 +20,9 @@ class PredictionsResponse(BaseModel):
|
|
20 |
results: List[Dict[str, Union[str, float]]]
|
21 |
|
22 |
# Model environment variables
|
23 |
-
MODEL_NAME = os.getenv("MODEL_NAME"
|
24 |
-
LABEL_0 = os.getenv("LABEL_0"
|
25 |
-
LABEL_1 = os.getenv("LABEL_1"
|
26 |
|
27 |
# Loading the model and tokenizer
|
28 |
tokenizer = None
|
|
|
20 |
results: List[Dict[str, Union[str, float]]]
|
21 |
|
22 |
# Model environment variables
|
23 |
+
MODEL_NAME = os.getenv("MODEL_NAME")
|
24 |
+
LABEL_0 = os.getenv("LABEL_0")
|
25 |
+
LABEL_1 = os.getenv("LABEL_1")
|
26 |
|
27 |
# Loading the model and tokenizer
|
28 |
tokenizer = None
|