generated from astariul/pytere
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔀 Merge pull request #37 from FleksySDK/leaderboard_improvement
Leaderboard improvements
- Loading branch information
Showing
8 changed files
with
217 additions
and
76 deletions.
There are no files selected for viewing
This file contains 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 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 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
hide: | ||
- toc | ||
--- | ||
|
||
# Leaderboard | ||
|
||
[//]: # (A bit of explanation is required for this page) | ||
[//]: # (There is a Mkdocs hook (defined in `docs/hooks.py`) that will read the content of this page. Any line starting with `>>>` will be extracted and replaced with the scores found in the corresponding result file.) | ||
[//]: # (The format to follow is : `>>>{name}|{result_file_name}|{optional_additional_fields}`) | ||
|
||
| Keyboard | Overall score | Typo detection rate | Auto-correction frustration rate | Auto-completion success rate | Next-word prediction success rate | SDK available | | ||
|---------:|:-------------:|:-------------------:|:--------------------------------:|:---------------:|:-------------------:|:-------------:| | ||
>>>Fleksy|results/fleksy.json|:fontawesome-solid-circle-check:{ .v_icon } | ||
>>>iOS keyboard|results/ios.json|:fontawesome-regular-circle-xmark:{ .x_icon } | ||
>>>KeyboardKit Open-source|results/keyboardkit_oss.json|:fontawesome-solid-circle-check:{ .v_icon } | ||
>>>KeyboardKit Pro|results/keyboardkit_pro.json|:fontawesome-solid-circle-check:{ .v_icon } | ||
>>>Gboard|results/gboard.json|:fontawesome-regular-circle-xmark:{ .x_icon } | ||
>>>Swiftkey|results/swiftkey.json|:fontawesome-regular-circle-xmark:{ .x_icon } | ||
>>>Tappa|results/tappa.json|:fontawesome-solid-circle-check:{ .v_icon } | ||
>>>Yandex|results/yandex.json|:fontawesome-regular-circle-xmark:{ .x_icon } | ||
### Metrics | ||
|
||
=== "Overall score" | ||
|
||
A single, general score representing the performances of the keyboard across all tasks. | ||
|
||
:material-trending-up: _Higher is better._ | ||
|
||
=== "Typo detection rate" | ||
|
||
Percentage of typos detected and corrected by the keyboard. | ||
|
||
:material-trending-up: _Higher is better._ | ||
|
||
=== "Auto-correction frustration rate" | ||
|
||
Percentage of words correctly typed, but corrected to something else by the keyboard. | ||
|
||
:material-trending-down: _Lower is better._ | ||
|
||
=== "Auto-completion success rate" | ||
|
||
Percentage of words correctly auto-completed. | ||
|
||
:material-trending-up: _Higher is better._ | ||
|
||
=== "Next-word prediction success rate" | ||
|
||
Percentage of words correctly predicted from the context. | ||
|
||
:material-trending-up: _Higher is better._ |
This file contains 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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Leaderboard | ||
|
||
[//]: # (A bit of explanation is required for this page) | ||
[//]: # (There is a Mkdocs hook (defined in `docs/hooks.py`) that will read the content of this page. Any line starting with `>>>` will be extracted and replaced with the scores found in the corresponding result file.) | ||
[//]: # (The format to follow is : `>>>{name}|{result_file_name}|{optional_additional_fields}`) | ||
|
||
| Keyboard | Overall<br>score | Auto-correction | Auto-completion | Next-word prediction | | ||
|---------:|:----------------:|:---------------:|:---------------:|:--------------------:| | ||
>>>Fleksy|results/fleksy.json | ||
>>>iOS keyboard|results/ios.json | ||
>>>KeyboardKit Open-source|results/keyboardkit_oss.json | ||
>>>KeyboardKit Pro|results/keyboardkit_pro.json | ||
>>>Gboard|results/gboard.json | ||
>>>Swiftkey|results/swiftkey.json | ||
>>>Tappa|results/tappa.json | ||
>>>Yandex|results/yandex.json | ||
--- | ||
|
||
The metrics used in this leaderboard are : | ||
|
||
* Auto-correction : _**F-score**_ | ||
* Auto-completion : _**top-3 accuracy**_ | ||
* Next-word prediction : _**top-3 accuracy**_ | ||
|
||
!!! tip | ||
See [Understanding the metrics](../how_testing_is_done.md#understanding-the-metrics) for more details. | ||
|
||
The overall score is a _**weighted sum**_ of all tasks. |
This file contains 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 |
---|---|---|
|
@@ -34,6 +34,12 @@ markdown_extensions: | |
- attr_list | ||
- pymdownx.highlight | ||
- pymdownx.superfences | ||
- pymdownx.emoji: | ||
emoji_index: !!python/name:material.extensions.emoji.twemoji | ||
emoji_generator: !!python/name:material.extensions.emoji.to_svg | ||
- pymdownx.superfences | ||
- pymdownx.tabbed: | ||
alternate_style: true | ||
|
||
nav: | ||
- Welcome: "index.md" | ||
|
@@ -42,7 +48,7 @@ nav: | |
- "emu_setup.md" | ||
- "how_testing_is_done.md" | ||
- "architecture.md" | ||
- "leaderboard.md" | ||
- "leaderboards/main.md" | ||
- Code reference: | ||
- "public_api.md" | ||
- "internals.md" | ||
|
@@ -68,7 +74,3 @@ extra: | |
|
||
extra_css: | ||
- css/mkdocstrings.css | ||
|
||
extra_javascript: | ||
- https://unpkg.com/[email protected]/dist/tablesort.min.js | ||
- javascripts/tablesort.js |