Spaces:
Runtime error
Runtime error
Commit
β’
8873713
1
Parent(s):
37d7ea6
Fix status mapping
Browse filesWe were keeping the flag in the metadata so it's not a big deal as we can use that to get the correct vs incorrect predictions, but this fixes the logic for assigning the validated status
app.py
CHANGED
@@ -23,7 +23,7 @@ def create_record(input_text, feedback):
|
|
23 |
# define the record status based on feedback
|
24 |
# default means it needs to be reviewed --> "Incorrect" or "Ambiguous"
|
25 |
# validated means it's correct and has been checked --> "Correct"
|
26 |
-
status = "Validated" if feedback == "
|
27 |
|
28 |
# Making the prediction
|
29 |
predictions = nlp(input_text, aggregation_strategy="first")
|
|
|
23 |
# define the record status based on feedback
|
24 |
# default means it needs to be reviewed --> "Incorrect" or "Ambiguous"
|
25 |
# validated means it's correct and has been checked --> "Correct"
|
26 |
+
status = "Validated" if feedback == "DoΔru" else "Default"
|
27 |
|
28 |
# Making the prediction
|
29 |
predictions = nlp(input_text, aggregation_strategy="first")
|