Spaces:
Sleeping
Sleeping
Create nlp/init.py
Browse files- nlp/init.py +8 -0
nlp/init.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# NLP modules for individual HealthEval metrics (optional for heuristics)
|
| 2 |
+
# Community note: Main evaluation via judges in evaluators.py; these for fallback or hybrid if needed.
|
| 3 |
+
from .evidence_transparency import evaluate
|
| 4 |
+
from .clinical_safety import evaluate
|
| 5 |
+
from .empathy_quality import evaluate
|
| 6 |
+
from .clarity_comprehension import evaluate
|
| 7 |
+
from .plan_quality import evaluate
|
| 8 |
+
from .trust_agency import evaluate
|