Fix status mapping
#2
by
dvilasuero
HF Staff
- opened
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")
|