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
Template code: On running this cards seems to be created on the dashboard but no data gets rendered:
from uptrain import EvalLLM, Evals import polars as pl import os import nest_asyncio nest_asyncio.apply() openai_api_key = "OPEN-AI-KEY" dataset_path = "results_test.jsonl" dataset = pl.read_ndjson(dataset_path) dataset eval_llm = EvalLLM(openai_api_key=openai_api_key) results = eval_llm.evaluate_experiments( project_name="context_quality_comparison", data=dataset, checks=[Evals.CONTEXT_RELEVANCE], exp_columns=["retreiver_method"] )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Template code:
On running this cards seems to be created on the dashboard but no data gets rendered:
The text was updated successfully, but these errors were encountered: