Skip to content

Commit

Permalink
update notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
semio committed Jun 12, 2024
1 parent 6e62b18 commit e0df9bd
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions automation-api/yival_experiments/notebooks/result_data_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -774,6 +774,24 @@



# ## Questions where AI scores best

# + magic_args="ai_best_questions <<" language="sql"
# select
# question_id,
# mean(correct_rate) as avg_correct_rate,
# mean(indecisive_rate) as avg_inde_rate,
# mean(variance) as avg_variance,
# from model_topic_stat
# group by question_id
# order by avg_correct_rate desc, avg_inde_rate
# ;
# -

ai_best_questions_df = ai_best_questions.DataFrame()

ai_best_questions_df.head(15)



# ## Question vs Prompt Family
Expand Down

0 comments on commit e0df9bd

Please sign in to comment.