adrienbrdne commited on
Commit
6948ec2
·
verified ·
1 Parent(s): 45f7e41

Update scoring/specificity.py

Browse files
Files changed (1) hide show
  1. 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", "votre-compte/votre-modele")
24
- LABEL_0 = os.getenv("LABEL_0", "Classe A")
25
- LABEL_1 = os.getenv("LABEL_1", "Classe B")
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