runner
genlm.eval.core.runner
run_evaluation(dataset, model, evaluator, output_dir=None, n_replicates=1, overwrite_results=False, overwrite_outputs=False, max_instances=float('inf'), verbosity=0)
async
Run evaluation on a dataset using the provided model and evaluator.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dataset
|
Dataset
|
The dataset to evaluate on. |
required |
model
|
ModelAdaptor
|
The model adaptor to use for generation. |
required |
evaluator
|
Evaluator
|
The evaluator to use for prompt generation and evaluation. |
required |
output_dir
|
str
|
The directory to save the results. Defaults to None, in which case results are not saved. |
None
|
n_replicates
|
int
|
Number of times to replicate the evaluation. Defaults to 1. |
1
|
overwrite_results
|
bool
|
Whether to overwrite existing evaluation results. Defaults to False. |
False
|
overwrite_outputs
|
bool
|
Whether to overwrite existing output. Defaults to False. |
False
|
max_instances
|
int
|
The maximum number of instances to evaluate. Defaults to float("inf"). |
float('inf')
|
verbosity
|
int
|
The verbosity of the evaluation. Defaults to 0, which is silent. |
0
|
Returns:
Type | Description |
---|---|
Dict[str, Any]
|
Aggregated evaluation results. |
Source code in genlm/eval/core/runner.py
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
|