honeyhive.evaluation
HoneyHive Evaluation Module (Deprecated)
⚠️ DEPRECATION WARNING: This module is deprecated and will be removed
in a future version.
Please migrate to the new honeyhive.experiments module.
Migration Guide
OLD: from honeyhive.evaluation import evaluate, evaluator NEW: from honeyhive.experiments import evaluate, evaluator
The experiments module provides: - Same functionality with improved architecture - Better tracer integration - Backend aggregation support - Enhanced performance with multi-instance tracer pattern
For more details, see: https://docs.honeyhive.ai/sdk-reference/experiments
BaseEvaluator
Deprecated: Legacy evaluator base class. Use @evaluator decorator instead.
Source code in src/honeyhive/evaluation/_compat.py
105 106 107 108 109 110 111 112 113 114 | |
aevaluator
Deprecated: Use honeyhive.experiments.aevaluator instead.
Source code in src/honeyhive/evaluation/_compat.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 | |
compare_runs
Deprecated: Use honeyhive.experiments.compare_runs instead.
Source code in src/honeyhive/evaluation/_compat.py
98 99 100 101 | |
evaluate
Deprecated: Use honeyhive.experiments.evaluate instead.
Source code in src/honeyhive/evaluation/_compat.py
42 43 44 45 | |
evaluator
Deprecated: Use honeyhive.experiments.evaluator instead.
Source code in src/honeyhive/evaluation/_compat.py
48 49 50 51 52 53 54 55 56 57 58 59 60 61 | |
get_run_metrics
Deprecated: Use honeyhive.experiments.get_run_metrics instead.
Source code in src/honeyhive/evaluation/_compat.py
92 93 94 95 | |
get_run_result
Deprecated: Use honeyhive.experiments.get_run_result instead.
Source code in src/honeyhive/evaluation/_compat.py
86 87 88 89 | |
run_experiment
Deprecated: Use honeyhive.experiments.run_experiment instead.
Source code in src/honeyhive/evaluation/_compat.py
80 81 82 83 | |