From b9a2489e7a3b3132e0a26668616a40d3a2124d9f Mon Sep 17 00:00:00 2001 From: Ben Lower Date: Mon, 15 Apr 2024 15:24:04 -0700 Subject: [PATCH] more explanation of definitions --- website/src/components/HowToUse.astro | 6 ++++-- website/src/utils/DataGridDefinitions.ts | 8 ++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/website/src/components/HowToUse.astro b/website/src/components/HowToUse.astro index 7f76882..4cc8f0c 100644 --- a/website/src/components/HowToUse.astro +++ b/website/src/components/HowToUse.astro @@ -5,8 +5,10 @@ import Section from './Section.astro';

How to Use

-

The table below is interactive. You can sort on any column. Further, the hamburger menu (appears when you hover a column header) allows for custom filtering. Definitions, methodology, and links to source below.

+

The table below is interactive. You can sort on any column. Further, the hamburger menu (appears when you hover a column header) allows for custom filtering.


-

Have fun exploring!

+

Blue = best. Orange = worst.

+
+

Definitions, methodology, and links to source below. Have fun exploring!

\ No newline at end of file diff --git a/website/src/utils/DataGridDefinitions.ts b/website/src/utils/DataGridDefinitions.ts index 3d2e535..9d9c2cf 100644 --- a/website/src/utils/DataGridDefinitions.ts +++ b/website/src/utils/DataGridDefinitions.ts @@ -33,17 +33,17 @@ export const RegionDefinition = { export const TTRDefinition = { title: "TTR", - definition: "Time to (HTTP) Response. Indicates the overall speed of the serving infrastructure of the provider/model." + definition: "Time to (HTTP) Response. Indicates the overall speed of the serving infrastructure of the provider/model. Lower values = lower latency/faster performance." }; export const TTFTDefinition = { title: "TTFT", - definition: "Time to First Token. Time to get first text from the model. This translates directly into how quickly the UI starts to update when displaying the response and indicates the overall speed with which the model begins working on the request and processing the input tokens." + definition: "Time to First Token. Time to get first text from the model. This translates directly into how quickly the UI starts to update when displaying the response and indicates the overall speed with which the model begins working on the request and processing the input tokens. Lower values = lower latency/faster performance." }; export const TPSDefinition = { title: "TPS", - definition: "Tokens per Second. This is how quickly text is emitted from the model and translates directly into how quickly the UI finishes displaying the response. It also indicates how quickly the model can produce each output token." + definition: "Tokens per Second. This is how quickly text is emitted from the model and translates directly into how quickly the UI finishes displaying the response. It also indicates how quickly the model can produce each output token. Higher values = more throughput/faster performance." }; export const TokensDefinition = { @@ -53,7 +53,7 @@ export const TokensDefinition = { export const TotalTimeDefinition = { title: "Total Time", - definition: "The total time from the start of the request until the response is complete, i.e., the last token has been generated. Total time = TTFT + TPS * Tokens." + definition: "The total time from the start of the request until the response is complete, i.e., the last token has been generated. Total time = TTFT + TPS * Tokens. Lower values = lower latency/faster performance." }; // Set-up all of our column definitions that will be used in the Data Grid