You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems there might be an inconsistency in the value of the dictionary EVALMODE_TO_COLUMNS[EvaluationMode.ca] within src/ragas/validation.py. Currently, the value is set to ["context", "summary"]
Is this the expected behavior? If not, could you please take look into it?
Thanks!
Best regards,
Juan
The text was updated successfully, but these errors were encountered:
jucgonzalezes
changed the title
Inconsistency in EVALMODE_TO_COLUMNS[EvaluationMode.ca] Value
Inconsistency in the Value of EVALMODE_TO_COLUMNS[EvaluationMode.ca]
Aug 23, 2024
I'm here to help you out with any bugs, questions, or contributions you have in mind. Let's tackle this together!
The value of EVALMODE_TO_COLUMNS[EvaluationMode.ca] in src/ragas/validation.py should indeed be ["contexts", "answer"] as indicated in the get_required_columns() function from src/ragas/metrics/base.py[1][2]. The current value ["contexts", "summary"] appears to be incorrect and should be updated to maintain consistency across the codebase.
Hi,
It seems there might be an inconsistency in the value of the dictionary
EVALMODE_TO_COLUMNS[EvaluationMode.ca]
withinsrc/ragas/validation.py
. Currently, the value is set to["context", "summary"]
ragas/src/ragas/validation.py
Lines 62 to 71 in d5b60bb
but I believe it should be
["context", "answer"]
as insrc/ragas/metrics/base.py:get_required_columns()
:ragas/src/ragas/metrics/base.py
Lines 38 to 59 in d5b60bb
Is this the expected behavior? If not, could you please take look into it?
Thanks!
Best regards,
Juan
The text was updated successfully, but these errors were encountered: