MCPcopy Create free account
hub / github.com/FlashSampling/FlashSampling / read_summary

Function read_summary

benchmarking/vllm/collect_results.py:32–36  ·  view source on GitHub ↗
(results_dir: Path, variant_key: str)

Source from the content-addressed store, hash-verified

30
31
32def read_summary(results_dir: Path, variant_key: str) -> tuple[pd.DataFrame, str]:
33 variant_dir = results_dir / variant_key
34 run_dir = latest_run(variant_dir)
35 df = pd.read_csv(run_dir / "summary.csv")
36 return df, run_dir.name
37
38
39def print_summary(results_dir: Path):

Callers 2

print_summaryFunction · 0.85
print_per_runFunction · 0.85

Calls 1

latest_runFunction · 0.85

Tested by

no test coverage detected