Skip to content
New issue

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

Experiments page not getting rendered #739

Open
rahulkrprajapati opened this issue Aug 19, 2024 · 0 comments
Open

Experiments page not getting rendered #739

rahulkrprajapati opened this issue Aug 19, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@rahulkrprajapati
Copy link

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"]
)

image
image

@rahulkrprajapati rahulkrprajapati added the bug Something isn't working label Aug 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant