-
Notifications
You must be signed in to change notification settings - Fork 196
Open
Labels
bugSomething isn't workingSomething isn't working
Description
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"]
)
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working