We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ ] I checked the documentation and related resources ,and i find little wrong in this page https://docs.ragas.io/en/stable/concepts/metrics/overview/#different-types-of-metrics?
Your Question The code example has a typo in the word。
Code Examples the page says:
from ragas.metrics import AgentGoalAccuracy from ragas import MultiTurnSample scorer = AgentGoalAccuracy() await metric.multi_turn_ascore(sample)
but, i think it should be like this:
from ragas.metrics import AgentGoalAccuracy from ragas import MultiTurnSample scorer = AgentGoalAccuracy() await scorer.multi_turn_ascore(sample)
metric.multi_turn_ascore should be replace of scorer.multi_turn_ascore.
metric.multi_turn_ascore
scorer.multi_turn_ascore
The text was updated successfully, but these errors were encountered:
Hey @earfanfan , nice catch. Would you like to raise a PR?
Sorry, something went wrong.
No branches or pull requests
[ ] I checked the documentation and related resources ,and i find little wrong in this page https://docs.ragas.io/en/stable/concepts/metrics/overview/#different-types-of-metrics?
Your Question
The code example has a typo in the word。
Code Examples
the page says:
but, i think it should be like this:
metric.multi_turn_ascore
should be replace ofscorer.multi_turn_ascore
.The text was updated successfully, but these errors were encountered: