Upload from GitHub Actions: Merge pull request #5 from datenlabor-bmz/jn-dev
Browse files
frontend/src/App.js
CHANGED
@@ -79,7 +79,7 @@ function App () {
|
|
79 |
}}
|
80 |
>
|
81 |
<strong>Work in Progress:</strong> This dashboard is currently under
|
82 |
-
active development. Evaluation results are not yet final. Note that the visualised results currently stem from sampling 10 instances per combination of model, task, and language. More extensive evaluation runs will be released later this year.
|
83 |
</div>
|
84 |
<div
|
85 |
style={{
|
|
|
79 |
}}
|
80 |
>
|
81 |
<strong>Work in Progress:</strong> This dashboard is currently under
|
82 |
+
active development. Evaluation results are not yet final. Note that the visualised results currently stem from sampling 10 instances per combination of model, task, and language. Only the top 100 languages by speaker count are included. More extensive evaluation runs will be released later this year.
|
83 |
</div>
|
84 |
<div
|
85 |
style={{
|
frontend/src/components/WorldMap.js
CHANGED
@@ -49,7 +49,7 @@ const WorldMap = ({ data, width = 750, height = 500 }) => {
|
|
49 |
return acc
|
50 |
}, {})
|
51 |
const plot = Plot.plot({
|
52 |
-
subtitle: 'Language Proficiency Score by Country',
|
53 |
width: width,
|
54 |
height: height,
|
55 |
projection: 'equal-earth',
|
@@ -61,11 +61,12 @@ const WorldMap = ({ data, width = 750, height = 500 }) => {
|
|
61 |
})
|
62 |
],
|
63 |
color: {
|
64 |
-
scheme: '
|
65 |
-
unknown: '
|
66 |
label: 'Score',
|
67 |
legend: true,
|
68 |
-
domain: [0, 1]
|
|
|
69 |
},
|
70 |
style: {
|
71 |
fontFamily: 'monospace'
|
|
|
49 |
return acc
|
50 |
}, {})
|
51 |
const plot = Plot.plot({
|
52 |
+
subtitle: 'Language Proficiency Score by Country (Coverage: ~65/194 benchmark languages)',
|
53 |
width: width,
|
54 |
height: height,
|
55 |
projection: 'equal-earth',
|
|
|
61 |
})
|
62 |
],
|
63 |
color: {
|
64 |
+
scheme: 'RdYlGn',
|
65 |
+
unknown: '#d0d0d0',
|
66 |
label: 'Score',
|
67 |
legend: true,
|
68 |
+
domain: [0, 1],
|
69 |
+
pivot: 0.5
|
70 |
},
|
71 |
style: {
|
72 |
fontFamily: 'monospace'
|