in experiments/google/cloud/ml/applied/model/domain_model.py [0:0]
def attribute_values_to_dict(values: list[AttributeValue]) -> dict[str, str]:
out: dict[str, str] = {}
for a in values:
out[a.attribute_name] = a.attribute_value
return out