-
Notifications
You must be signed in to change notification settings - Fork 17
feat(site): surface latency and tokens as leaderboard metrics #243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
2a13ebc
feat(site): surface latency and tokens as leaderboard metrics
jessie1111101 7ccd5d1
fix(site): correct the efficiency projection and give its inputs a co…
jessie1111101 95c2aa2
fix(site): make the UI read correctly under an efficiency metric
jessie1111101 9c20919
fix(site): keep the metric toggle usable at eight metrics
jessie1111101 0ed985c
fix(site): name the selected metric in the leaderboard trend heading
jessie1111101 963c7bc
fix(site): snap the efficiency y-axis to round endpoints
jessie1111101 4b7f7af
fix(site): stop calling the efficiency metrics scores
jessie1111101 4394f7d
fix(site): stop the detail hero truncating the model name
jessie1111101 c2d3304
fix(site): default the emulator project to the one the app reads
jessie1111101 dbb2011
docs(site): purge the remaining devops-bench-demo references
jessie1111101 936ff25
fix(site): point .firebaserc at the project the app reads
jessie1111101 1bbc6c0
fix(site): explain a disabled metric by why it is actually missing
jessie1111101 e8446a2
fix(site): treat a zeroed token total as unmeasured, not as zero tokens
jessie1111101 eca3f18
feat(site): split Tokens into input, output and cached axes
jessie1111101 32f1a92
fix(site): drop the catastrophic badge from the efficiency columns
jessie1111101 780540d
feat(site): sortable leaderboard headers, so row order can hold acros…
jessie1111101 15b0d70
fix(site): stop the sort arrow flipping when the metric changes
jessie1111101 bd0fc26
refactor(site): name the arrow's direction label for what it is
jessie1111101 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| { | ||
| "projects": { | ||
| "default": "devops-bench-demo" | ||
| "default": "devops-bench-shared" | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"may count buckets the row does not break out" runs the other way for antigravity: parsing.py sets
total = input + outputand aggregatescachedseparately. So a cache heavy run reports a total that drops its cached tokens, and preferring it undercounts that setup into first place on Tokens.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Confirmed, and I cannot fix it in the site. antigravity's total is
input + outputwith cached tracked separately, so it is a subset; openclaw's total sits well above its buckets. Two incompatible meanings and nothing on the row saying which one you got. Preferring the total here would just be a second guess.Better as one canonical
totalinnormalize.py, which is your point. Same reasoning as thelatency_secnullability change: it touches the producer and every existing row, so I would rather do it as its own PR than widen this one. Happy to take that next.