.buildkite/performance-benchmarks/performance-benchmarks-descriptions.md
{latency_tests_markdown_table}
{throughput_tests_markdown_table}
{serving_tests_markdown_table}
{platform_markdown_table}
This section contains the data of the markdown tables above in JSON format. You can load the benchmarking tables into pandas dataframes as follows:
import json
import pandas as pd
benchmarking_results_json = """The json string"""
benchmarking_results = json.loads(benchmarking_results_json)
latency_results = pd.DataFrame.from_dict(benchmarking_results["latency"])
throughput_results = pd.DataFrame.from_dict(benchmarking_results["throughput"])
serving_results = pd.DataFrame.from_dict(benchmarking_results["serving"])
The json string for all benchmarking tables:
{benchmarking_results_in_json_string}
You can also check the raw experiment data in the Artifact tab of the Buildkite page.