File size: 11,182 Bytes
33e9527 af22a0d b305aa0 af22a0d b305aa0 33e9527 af22a0d b305aa0 922d401 b305aa0 f88c6c5 b305aa0 af22a0d b305aa0 33e9527 f88c6c5 af22a0d b305aa0 af22a0d b305aa0 af22a0d b305aa0 af22a0d b305aa0 af22a0d b305aa0 af22a0d f88c6c5 af22a0d b305aa0 f88c6c5 b305aa0 33e9527 b305aa0 922d401 b305aa0 af22a0d b305aa0 af22a0d f88c6c5 b305aa0 af22a0d b305aa0 33e9527 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 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 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
import json
from copy import deepcopy
from typing import Any, Dict, Generator, Iterable, List, Optional
from datasets import Features, Value
from numpy import nanmean
from .dataclass import Dataclass
from .dict_utils import dict_set
from .operator import (
MultiStreamOperator,
SequentialOperatorInitializer,
StreamInitializerOperator,
)
from .operators import (
ApplyMetric,
ApplyOperatorsField,
Copy,
FlattenInstances,
MergeStreams,
SplitByNestedGroup,
)
from .register import _reset_env_local_catalogs, register_all_artifacts
from .schema import UNITXT_DATASET_SCHEMA
from .settings_utils import get_settings
from .stream import DynamicStream, MultiStream
from .struct_data_operators import LoadJson
class MultiStreamScoreMean(MultiStreamOperator):
"""Given a multi-stream where each stream is already scored globally, generate a nested global score for the whole multi-stream.
The whole-ms-global-score is a nested structure, specifying (also) the individual global scores of the
individual streams participating in the input multi_stream.
The instances of all these individual streams are assumed to have the "group" field indicate the stream
they belong to.
Potentially, these individual streams were produced from a SplitByNestedGroup
operator that did not use the full length of the value in field "group" of the instances, but only the
first g components thereof, indicated by argument 'number_of_fusion_generations' of operator SplitByNestedGroup.
At any rate, a distinguishing prefix of the "group" value is recorded, by operator SplitByNestedGroup, in the stream_name.
The nested structure of the whole-ms-global-score is induced by these distinguishing prefixes,
by virtue of the global score of each individual stream sitting in the nested whole-ms-global-score,
deep in that dictionary, at the leaf lead to by a path being the distinguishing prefix indicated in the stream_name.
Thus, the global score of the stream becomes a leaf (though a dict by itself) of the whole-ms-global-score.
The ancestor nodes of the above leaves, in the whole-ms-global-score, contain each (in addition to dicts
leading down to leaves) a field named "score" whose value is set to be the mean of the values
sitting in field "score" of its immediate children nodes, and a field named "score_name" whose
value is set to be "group_mean".
When the input multistream consists of one single stream, it is returned as is, mainly for backward compatibility.
"""
def update_intermediate_level_scores(self, level: dict) -> float:
if "score" in level:
return level["score"]
# the global score of the stream participating in this MultiStream
sub_scores = []
for key in level:
if isinstance(level[key], dict):
sub_scores.append(self.update_intermediate_level_scores(level[key]))
level.update({"score": nanmean(sub_scores), "score_name": "groups_mean"})
return level["score"]
def process(self, multi_stream: MultiStream) -> MultiStream:
# each stream went through Metric which is a single-stream-operator , and ended up with all
# its instance["score"]["global"] linking to the same single dict object.
# Here we first generate a new, nested version, for the whole-ms-global_score, and then update
# each stream's global score with the new version
# but if only one stream in the multistream - we return it as is
if len(multi_stream) == 1:
return multi_stream
global_score = {}
first_instances = {}
iterators = {}
for stream_name, stream in multi_stream.items():
iterators[stream_name] = iter(stream)
try:
first_instances[stream_name] = next(iterators[stream_name])
except StopIteration:
continue # an empty stream, goto next stream
instance = first_instances[stream_name]
dict_set(
dic=global_score,
query=stream_name.split("~")[-1],
value=deepcopy(instance["score"]["global"]),
not_exist_ok=True,
)
self.update_intermediate_level_scores(global_score)
# update the global_score object for each stream. Recall that all instances
# in each stream link all to same python dict object
for stream_name in multi_stream.keys():
instance = first_instances[stream_name]
instance["score"]["global"].clear()
instance["score"]["global"].update(global_score)
def never_peek_twice_generator(
stream_name: str, first_instances: dict, iterators: dict
) -> Generator:
while True:
if stream_name in first_instances:
yield first_instances.pop(stream_name)
try:
yield next(iterators[stream_name])
except StopIteration:
return
return MultiStream(
{
stream_name: DynamicStream(
never_peek_twice_generator,
gen_kwargs={
"stream_name": stream_name,
"first_instances": first_instances,
"iterators": iterators,
},
)
for stream_name in multi_stream.keys()
}
)
class FromPredictionsAndOriginalData(StreamInitializerOperator):
def zip(self, predictions, references):
for prediction, original in zip(predictions, references):
yield {**original, "prediction": prediction}
def process(
self, predictions: List[str], references: Iterable, split_name: str = "all"
) -> MultiStream:
return MultiStream(
{
split_name: DynamicStream(
self.zip,
gen_kwargs={"predictions": predictions, "references": references},
)
}
)
# The task_data field in the schema is defined as
# Sequence({"key": Value(dtype="string"), "value": Value("string")})
# When receiving instances from this scheme, the keys and values are returned as two separate
# lists, and are converted to a dictionary.
class MetricRecipe(SequentialOperatorInitializer):
calc_confidence_intervals: bool = True
number_of_fusion_generations: int = 2
def prepare(self):
register_all_artifacts()
self.steps = [
FromPredictionsAndOriginalData(),
LoadJson(field="task_data"),
Copy(
field="source",
to_field="task_data/source",
),
ApplyOperatorsField(
operators_field="postprocessors",
),
SplitByNestedGroup(
field_name_of_group="group",
number_of_fusion_generations=self.number_of_fusion_generations,
),
ApplyMetric(
"metrics",
calc_confidence_intervals=self.calc_confidence_intervals,
),
MultiStreamScoreMean(),
MergeStreams(),
]
UNITXT_METRIC_SCHEMA = Features(
{"predictions": Value("string"), "references": dict(UNITXT_DATASET_SCHEMA)}
)
def _compute(
predictions: List[str],
references: Iterable,
flatten: bool = False,
split_name: str = "all",
calc_confidence_intervals: bool = True,
):
_reset_env_local_catalogs()
register_all_artifacts()
recipe = MetricRecipe(calc_confidence_intervals=calc_confidence_intervals)
multi_stream = recipe(
predictions=predictions, references=references, split_name=split_name
)
if flatten:
operator = FlattenInstances()
multi_stream = operator(multi_stream)
stream = multi_stream[split_name]
return list(stream)
"""
The API of a metric service:
- MetricRequest: A single input request to the metrics service.
- MetricResponse: A response returned from a metrics service.
"""
class InstanceInput(Dataclass):
"""A single instance inputted to a metric service."""
prediction: Any
references: List[Any]
additional_inputs: Optional[Dict] = None
class MetricRequest(Dataclass):
"""A request to a metrics service, includes a list of input instances."""
instance_inputs: List[InstanceInput]
class MetricResponse(Dataclass):
"""A response produced by a metrics service, includes the computed scores."""
# A list of instance score dictionaries. Each dictionary contains the
# score names and score values for a single instance.
instances_scores: List[Dict[str, Any]]
# The global scores dictionary, containing global score names and values.
# These are scores computed over the entire set of input instances, e.g.
# an average over a score computed per instance.
global_score: Dict[str, Any]
"""
Functionality for loading the remote metrics configuration from local environment variables.
"""
# A list of metrics to be executed remotely.
# For example: '["metrics.rag.context_relevance","metrics.rag.bert_k_precision"]'
# This value should be a valid json list
UNITXT_REMOTE_METRICS = "UNITXT_REMOTE_METRICS"
# The remote endpoint on which the remote metrics are available.
# For example, 'http://127.0.0.1:8000/compute'
UNITXT_REMOTE_METRICS_ENDPOINT = "UNITXT_REMOTE_METRICS_ENDPOINT"
def get_remote_metrics_names() -> List[str]:
"""Load the remote metrics names from an environment variable.
Returns:
List[str] - names of metrics to be executed remotely.
"""
settings = get_settings()
remote_metrics = settings.remote_metrics
if remote_metrics:
remote_metrics = json.loads(remote_metrics)
if not isinstance(remote_metrics, list):
raise RuntimeError(
f"Unexpected value {remote_metrics} for the '{UNITXT_REMOTE_METRICS}' environment variable. "
f"The value is expected to be a list of metric names in json format."
)
for remote_metric in remote_metrics:
if not isinstance(remote_metric, str):
raise RuntimeError(
f"Unexpected value {remote_metric} within the '{UNITXT_REMOTE_METRICS}' environment variable. "
f"The value is expected to be a string but its type is {type(remote_metric)}."
)
return remote_metrics
def get_remote_metrics_endpoint() -> str:
"""Load the remote metrics endpoint from an environment variable.
Returns:
str - The remote endpoint on which the remote metrics are available.
"""
settings = get_settings()
try:
remote_metrics_endpoint = settings.remote_metrics_endpoint
except AttributeError as e:
raise RuntimeError(
f"Unexpected None value for '{UNITXT_REMOTE_METRICS_ENDPOINT}'. "
f"Running remote metrics requires defining an "
f"endpoint in the environment variable '{UNITXT_REMOTE_METRICS_ENDPOINT}'."
) from e
return remote_metrics_endpoint
|