chore: import upstream snapshot with attribution
tools_continuous_delivery / Private PyPI non-main branch release (push) Has been skipped
tools_continuous_delivery / Private PyPI main branch release (push) Failing after 2m42s
Publish Promptflow Doc / Build (push) Has been cancelled
Publish Promptflow Doc / Deploy (push) Has been cancelled
Flake8 Lint / flake8 (push) Has been cancelled
Spell check CI / Spell_Check (push) Has been cancelled
tools_continuous_delivery / Private PyPI non-main branch release (push) Has been skipped
tools_continuous_delivery / Private PyPI main branch release (push) Failing after 2m42s
Publish Promptflow Doc / Build (push) Has been cancelled
Publish Promptflow Doc / Deploy (push) Has been cancelled
Flake8 Lint / flake8 (push) Has been cancelled
Spell check CI / Spell_Check (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
from typing import Dict, List
|
||||
|
||||
|
||||
def aggregate(processed_results: List[int]) -> Dict[str, float]:
|
||||
num_exception = 0
|
||||
num_correct = 0
|
||||
|
||||
for i in range(len(processed_results)):
|
||||
if processed_results[i] == -1:
|
||||
num_exception += 1
|
||||
elif processed_results[i] == 1:
|
||||
num_correct += 1
|
||||
|
||||
num_total = len(processed_results)
|
||||
accuracy = round(1.0 * num_correct / num_total, 2) if num_total else 0.0
|
||||
error_rate = round(1.0 * num_exception / num_total, 2) if num_total else 0.0
|
||||
|
||||
return {
|
||||
"num_total": num_total,
|
||||
"num_correct": num_correct,
|
||||
"num_exception": num_exception,
|
||||
"accuracy": accuracy,
|
||||
"error_rate": error_rate,
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{"groundtruth": "10","prediction": "10"}
|
||||
{"groundtruth": "253","prediction": "506"}
|
||||
{"groundtruth": "1/3","prediction": "2/6"}
|
||||
@@ -0,0 +1,70 @@
|
||||
import asyncio
|
||||
from dataclasses import dataclass, field
|
||||
from typing import Any, Callable, Dict, List, Optional
|
||||
|
||||
|
||||
@dataclass
|
||||
class EvalResult:
|
||||
"""Result of a batch evaluation run."""
|
||||
per_row_outputs: List[Any]
|
||||
metrics: Dict[str, Any]
|
||||
errors: List[tuple] = field(default_factory=list)
|
||||
|
||||
|
||||
class EvalRunner:
|
||||
"""Runs a MAF workflow per row, collects outputs, then calls an aggregation function."""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
workflow_factory: Callable[[], Any],
|
||||
aggregate_fn: Callable[..., dict],
|
||||
concurrency: int = 5,
|
||||
input_mapping: Optional[Dict[str, str]] = None,
|
||||
):
|
||||
self._workflow_factory = workflow_factory
|
||||
self._aggregate_fn = aggregate_fn
|
||||
self._concurrency = concurrency
|
||||
self._input_mapping = input_mapping
|
||||
|
||||
async def run(self, dataset: List[Any]) -> EvalResult:
|
||||
semaphore = asyncio.Semaphore(self._concurrency)
|
||||
per_row_outputs: List[Any] = [None] * len(dataset)
|
||||
errors: List[tuple] = []
|
||||
|
||||
async def _run_row(index: int, row: Any) -> None:
|
||||
async with semaphore:
|
||||
wf = self._workflow_factory()
|
||||
result = await wf.run(row)
|
||||
per_row_outputs[index] = result.get_outputs()[0]
|
||||
|
||||
tasks = [_run_row(i, row) for i, row in enumerate(dataset)]
|
||||
results = await asyncio.gather(*tasks, return_exceptions=True)
|
||||
|
||||
succeeded_outputs: List[Any] = []
|
||||
for i, r in enumerate(results):
|
||||
if isinstance(r, Exception):
|
||||
errors.append((i, r))
|
||||
else:
|
||||
succeeded_outputs.append(per_row_outputs[i])
|
||||
|
||||
aggregation_inputs = self._transpose(succeeded_outputs)
|
||||
if self._input_mapping:
|
||||
aggregation_inputs = {
|
||||
self._input_mapping.get(k, k): v for k, v in aggregation_inputs.items()
|
||||
}
|
||||
|
||||
metrics = self._aggregate_fn(**aggregation_inputs)
|
||||
return EvalResult(
|
||||
per_row_outputs=succeeded_outputs,
|
||||
metrics=metrics,
|
||||
errors=errors,
|
||||
)
|
||||
|
||||
@staticmethod
|
||||
def _transpose(outputs: List[Any]) -> Dict[str, Any]:
|
||||
if not outputs:
|
||||
return {"values": []}
|
||||
if not isinstance(outputs[0], dict):
|
||||
return {"values": outputs}
|
||||
keys = outputs[0].keys()
|
||||
return {k: [o[k] for o in outputs] for k in keys}
|
||||
@@ -0,0 +1 @@
|
||||
agent-framework>=1.0.1
|
||||
@@ -0,0 +1,45 @@
|
||||
import argparse
|
||||
import asyncio
|
||||
import json
|
||||
from pathlib import Path
|
||||
from aggregation import aggregate
|
||||
from eval_runner import EvalRunner
|
||||
from workflow import EvalInput, create_workflow
|
||||
|
||||
DEFAULT_DATA = Path(__file__).parent / "data.jsonl"
|
||||
|
||||
|
||||
def load_dataset(path: Path) -> list[EvalInput]:
|
||||
rows = []
|
||||
with open(path, encoding="utf-8") as f:
|
||||
for line in f:
|
||||
line = line.strip()
|
||||
if line:
|
||||
obj = json.loads(line)
|
||||
rows.append(EvalInput(groundtruth=str(obj["groundtruth"]), prediction=str(obj["prediction"])))
|
||||
return rows
|
||||
|
||||
|
||||
async def main(data_path: Path, concurrency: int):
|
||||
dataset = load_dataset(data_path)
|
||||
print(f"Loaded {len(dataset)} rows from {data_path}")
|
||||
|
||||
runner = EvalRunner(
|
||||
workflow_factory=create_workflow,
|
||||
aggregate_fn=aggregate,
|
||||
concurrency=concurrency,
|
||||
input_mapping={"values": "processed_results"},
|
||||
)
|
||||
result = await runner.run(dataset)
|
||||
|
||||
print("\n--- Metrics ---")
|
||||
for key, value in result.metrics.items():
|
||||
print(f" {key}: {value}")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("--data", type=Path, default=DEFAULT_DATA)
|
||||
parser.add_argument("--concurrency", type=int, default=5)
|
||||
args = parser.parse_args()
|
||||
asyncio.run(main(args.data, args.concurrency))
|
||||
@@ -0,0 +1,74 @@
|
||||
import asyncio
|
||||
import json
|
||||
from pathlib import Path
|
||||
from aggregation import aggregate
|
||||
from eval_runner import EvalRunner
|
||||
from workflow import EvalInput, create_workflow
|
||||
|
||||
|
||||
async def test_fraction_match():
|
||||
wf = create_workflow()
|
||||
result = await wf.run(EvalInput(groundtruth="3/5", prediction="6/10"))
|
||||
assert result.get_outputs()[0] == 1
|
||||
print("PASS: test_fraction_match")
|
||||
|
||||
|
||||
async def test_float_fraction():
|
||||
wf = create_workflow()
|
||||
result = await wf.run(EvalInput(groundtruth="1/2", prediction="0.5"))
|
||||
assert result.get_outputs()[0] == 1
|
||||
print("PASS: test_float_fraction")
|
||||
|
||||
|
||||
async def test_mismatch():
|
||||
wf = create_workflow()
|
||||
result = await wf.run(EvalInput(groundtruth="3", prediction="5"))
|
||||
assert result.get_outputs()[0] == -1
|
||||
print("PASS: test_mismatch")
|
||||
|
||||
|
||||
async def test_batch():
|
||||
dataset = [
|
||||
EvalInput(groundtruth="3/5", prediction="6/10"),
|
||||
EvalInput(groundtruth="1/2", prediction="0.5"),
|
||||
EvalInput(groundtruth="3", prediction="5"),
|
||||
]
|
||||
runner = EvalRunner(
|
||||
workflow_factory=create_workflow,
|
||||
aggregate_fn=aggregate,
|
||||
concurrency=5,
|
||||
input_mapping={"values": "processed_results"},
|
||||
)
|
||||
result = await runner.run(dataset)
|
||||
assert result.metrics["num_correct"] == 2
|
||||
assert result.metrics["num_exception"] == 1
|
||||
print("PASS: test_batch")
|
||||
|
||||
|
||||
async def test_data_jsonl():
|
||||
"""Run eval on every row in data.jsonl"""
|
||||
data_path = Path(__file__).parent / "data.jsonl"
|
||||
rows = [json.loads(line) for line in data_path.read_text(encoding="utf-8").splitlines() if line.strip()]
|
||||
wf = create_workflow()
|
||||
for i, row in enumerate(rows):
|
||||
result = await wf.run(EvalInput(
|
||||
groundtruth=row["groundtruth"],
|
||||
prediction=row["prediction"],
|
||||
))
|
||||
score = result.get_outputs()[0]
|
||||
assert isinstance(score, int), f"Row {i}: expected int, got {type(score)}"
|
||||
print(f" Row {i}: score={score}")
|
||||
print(f"PASS: test_data_jsonl ({len(rows)} rows)")
|
||||
|
||||
|
||||
async def main():
|
||||
await test_fraction_match()
|
||||
await test_float_fraction()
|
||||
await test_mismatch()
|
||||
await test_batch()
|
||||
await test_data_jsonl()
|
||||
print("\nAll tests passed!")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
asyncio.run(main())
|
||||
@@ -0,0 +1,51 @@
|
||||
from dataclasses import dataclass
|
||||
from typing_extensions import Never
|
||||
from agent_framework import Executor, WorkflowBuilder, WorkflowContext, handler
|
||||
|
||||
|
||||
def string_to_number(raw_string: str) -> float:
|
||||
float_number = 0.0
|
||||
try:
|
||||
float_number = float(raw_string)
|
||||
except Exception:
|
||||
if '/' in raw_string:
|
||||
split_list = raw_string.split('/')
|
||||
if len(split_list) == 2:
|
||||
numerator, denominator = split_list
|
||||
try:
|
||||
float_number = float(numerator) / float(denominator)
|
||||
except Exception:
|
||||
return None
|
||||
else:
|
||||
return None
|
||||
else:
|
||||
return None
|
||||
return float_number
|
||||
|
||||
|
||||
@dataclass
|
||||
class EvalInput:
|
||||
groundtruth: str
|
||||
prediction: str
|
||||
|
||||
|
||||
class LineProcessExecutor(Executor):
|
||||
@handler
|
||||
async def process(self, input: EvalInput, ctx: WorkflowContext[Never, int]) -> None:
|
||||
pred_float = string_to_number(input.prediction)
|
||||
if pred_float is None:
|
||||
await ctx.yield_output(-1)
|
||||
return
|
||||
gt_float = string_to_number(input.groundtruth)
|
||||
if gt_float is None:
|
||||
await ctx.yield_output(-1)
|
||||
return
|
||||
if round(pred_float, 10) == round(gt_float, 10):
|
||||
await ctx.yield_output(1)
|
||||
else:
|
||||
await ctx.yield_output(-1)
|
||||
|
||||
|
||||
def create_workflow():
|
||||
_line_process = LineProcessExecutor(id="line_process")
|
||||
return WorkflowBuilder(name="EvalChatMathRow", start_executor=_line_process).build()
|
||||
Reference in New Issue
Block a user