Spaces:
Running
Running
first commit
Browse files- .gitignore +3 -0
- Dockerfile +1 -1
- README.md +1 -1
- requirements.txt +70 -4
- src/.streamlit/config.toml +14 -0
- src/data/bleu_scores.csv +109 -0
- src/data/chrf_scores.csv +119 -0
- src/data/comet_scores.csv +119 -0
- src/data/translations.tsv +0 -0
- src/logo.png +0 -0
- src/streamlit_app.py +0 -0
.gitignore
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
*.DS_Store
|
2 |
+
secrets.toml
|
3 |
+
create_sample_data.py
|
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
FROM python:3.
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
|
|
1 |
+
FROM python:3.12-slim
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
emoji: π
|
4 |
colorFrom: red
|
5 |
colorTo: red
|
|
|
1 |
---
|
2 |
+
title: UP Translate
|
3 |
emoji: π
|
4 |
colorFrom: red
|
5 |
colorTo: red
|
requirements.txt
CHANGED
@@ -1,4 +1,70 @@
|
|
1 |
-
altair
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
altair==5.5.0
|
2 |
+
annotated-types==0.7.0
|
3 |
+
anyio==4.10.0
|
4 |
+
attrs==25.3.0
|
5 |
+
blinker==1.9.0
|
6 |
+
cachetools==5.5.2
|
7 |
+
certifi==2025.8.3
|
8 |
+
charset-normalizer==3.4.3
|
9 |
+
click==8.2.1
|
10 |
+
contourpy==1.3.3
|
11 |
+
cycler==0.12.1
|
12 |
+
distro==1.9.0
|
13 |
+
filelock==3.18.0
|
14 |
+
fonttools==4.59.0
|
15 |
+
fsspec==2025.7.0
|
16 |
+
gitdb==4.0.12
|
17 |
+
GitPython==3.1.45
|
18 |
+
google-auth==2.40.3
|
19 |
+
google-genai==1.29.0
|
20 |
+
h11==0.16.0
|
21 |
+
hf-xet==1.1.7
|
22 |
+
httpcore==1.0.9
|
23 |
+
httpx==0.28.1
|
24 |
+
huggingface-hub==0.34.4
|
25 |
+
idna==3.10
|
26 |
+
Jinja2==3.1.6
|
27 |
+
jiter==0.10.0
|
28 |
+
jsonschema==4.25.0
|
29 |
+
jsonschema-specifications==2025.4.1
|
30 |
+
kiwisolver==1.4.9
|
31 |
+
MarkupSafe==3.0.2
|
32 |
+
matplotlib==3.10.5
|
33 |
+
narwhals==2.1.0
|
34 |
+
numpy==2.3.2
|
35 |
+
openai==1.99.8
|
36 |
+
packaging==25.0
|
37 |
+
pandas==2.3.1
|
38 |
+
pillow==11.3.0
|
39 |
+
plotly==6.2.0
|
40 |
+
protobuf==6.31.1
|
41 |
+
pyarrow==21.0.0
|
42 |
+
pyasn1==0.6.1
|
43 |
+
pyasn1_modules==0.4.2
|
44 |
+
pydantic==2.11.7
|
45 |
+
pydantic_core==2.33.2
|
46 |
+
pydeck==0.9.1
|
47 |
+
pyparsing==3.2.3
|
48 |
+
python-dateutil==2.9.0.post0
|
49 |
+
pytz==2025.2
|
50 |
+
PyYAML==6.0.2
|
51 |
+
referencing==0.36.2
|
52 |
+
requests==2.32.4
|
53 |
+
rpds-py==0.27.0
|
54 |
+
rsa==4.9.1
|
55 |
+
setuptools==78.1.1
|
56 |
+
six==1.17.0
|
57 |
+
smmap==5.0.2
|
58 |
+
sniffio==1.3.1
|
59 |
+
streamlit==1.48.0
|
60 |
+
tenacity==9.1.2
|
61 |
+
toml==0.10.2
|
62 |
+
tornado==6.5.2
|
63 |
+
tqdm==4.67.1
|
64 |
+
typing-inspection==0.4.1
|
65 |
+
typing_extensions==4.14.1
|
66 |
+
tzdata==2025.2
|
67 |
+
urllib3==2.5.0
|
68 |
+
websockets==15.0.1
|
69 |
+
wheel==0.45.1
|
70 |
+
wordcloud==1.9.4
|
src/.streamlit/config.toml
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[server]
|
2 |
+
headless = true
|
3 |
+
port = 8501
|
4 |
+
enableCORS = false
|
5 |
+
enableXsrfProtection = false
|
6 |
+
|
7 |
+
[browser]
|
8 |
+
gatherUsageStats = false
|
9 |
+
|
10 |
+
[theme]
|
11 |
+
primaryColor = "#3b82f6"
|
12 |
+
backgroundColor = "#ffffff"
|
13 |
+
secondaryBackgroundColor = "#f9fafb"
|
14 |
+
textColor = "#1f2937"
|
src/data/bleu_scores.csv
ADDED
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
comparison_pair,bleu_score,language,domain,num_sentences
|
2 |
+
afr_human_vs_afr_revised,0.8011,Afrikaans,Overall,96
|
3 |
+
afr_human_vs_afr_revised,0.8176,Afrikaans,Economics,52
|
4 |
+
afr_human_vs_afr_revised,0.7445,Afrikaans,Computer Science,26
|
5 |
+
afr_human_vs_afr_revised,0.8353,Afrikaans,Electrical Electronic and Computer Engineering,6
|
6 |
+
afr_human_vs_afr_gemini,0.6156,Afrikaans,Overall,306
|
7 |
+
afr_human_vs_afr_gemini,0.7456,Afrikaans,Historical and Heritage Studies,19
|
8 |
+
afr_human_vs_afr_gemini,0.6069,Afrikaans,Economics,132
|
9 |
+
afr_human_vs_afr_gemini,0.7174,Afrikaans,Information Science,13
|
10 |
+
afr_human_vs_afr_gemini,0.664,Afrikaans,Informatics,12
|
11 |
+
afr_human_vs_afr_gemini,0.6741,Afrikaans,Nursing Science,11
|
12 |
+
afr_human_vs_afr_gemini,0.5194,Afrikaans,Computer Science,46
|
13 |
+
afr_human_vs_afr_gemini,0.5548,Afrikaans,"Geography, Geoinformatics and Meteorology",11
|
14 |
+
afr_human_vs_afr_gemini,0.6021,Afrikaans,Electrical Electronic and Computer Engineering,41
|
15 |
+
afr_human_vs_afr_gemini,0.8021,Afrikaans,Microbiology and Plant Pathology,13
|
16 |
+
afr_human_vs_afr_gemini,0.5323,Afrikaans,Statistics,8
|
17 |
+
afr_human_vs_afr_gpt,0.6174,Afrikaans,Overall,306
|
18 |
+
afr_human_vs_afr_gpt,0.7584,Afrikaans,Historical and Heritage Studies,19
|
19 |
+
afr_human_vs_afr_gpt,0.5969,Afrikaans,Economics,132
|
20 |
+
afr_human_vs_afr_gpt,0.804,Afrikaans,Information Science,13
|
21 |
+
afr_human_vs_afr_gpt,0.674,Afrikaans,Informatics,12
|
22 |
+
afr_human_vs_afr_gpt,0.7185,Afrikaans,Nursing Science,11
|
23 |
+
afr_human_vs_afr_gpt,0.5063,Afrikaans,Computer Science,46
|
24 |
+
afr_human_vs_afr_gpt,0.6468,Afrikaans,"Geography, Geoinformatics and Meteorology",11
|
25 |
+
afr_human_vs_afr_gpt,0.5949,Afrikaans,Electrical Electronic and Computer Engineering,41
|
26 |
+
afr_human_vs_afr_gpt,0.7844,Afrikaans,Microbiology and Plant Pathology,13
|
27 |
+
afr_human_vs_afr_gpt,0.5348,Afrikaans,Statistics,8
|
28 |
+
nso_human_vs_nso_revised,0.3825,Northern Sotho,Overall,55
|
29 |
+
nso_human_vs_nso_revised,0.4432,Northern Sotho,Historical and Heritage Studies,18
|
30 |
+
nso_human_vs_nso_revised,0.461,Northern Sotho,Economics,10
|
31 |
+
nso_human_vs_nso_revised,0.1491,Northern Sotho,Computer Science,8
|
32 |
+
nso_human_vs_nso_revised,0.5369,Northern Sotho,Statistics,6
|
33 |
+
nso_human_vs_nso_gemini,0.3031,Northern Sotho,Overall,307
|
34 |
+
nso_human_vs_nso_gemini,0.2998,Northern Sotho,Historical and Heritage Studies,19
|
35 |
+
nso_human_vs_nso_gemini,0.3178,Northern Sotho,Economics,133
|
36 |
+
nso_human_vs_nso_gemini,0.2806,Northern Sotho,Information Science,13
|
37 |
+
nso_human_vs_nso_gemini,0.4086,Northern Sotho,Informatics,12
|
38 |
+
nso_human_vs_nso_gemini,0.2898,Northern Sotho,Nursing Science,11
|
39 |
+
nso_human_vs_nso_gemini,0.2825,Northern Sotho,Computer Science,46
|
40 |
+
nso_human_vs_nso_gemini,0.2595,Northern Sotho,"Geography, Geoinformatics and Meteorology",11
|
41 |
+
nso_human_vs_nso_gemini,0.2148,Northern Sotho,Electrical Electronic and Computer Engineering,41
|
42 |
+
nso_human_vs_nso_gemini,0.4771,Northern Sotho,Microbiology and Plant Pathology,13
|
43 |
+
nso_human_vs_nso_gemini,0.314,Northern Sotho,Statistics,8
|
44 |
+
nso_human_vs_nso_gpt,0.2526,Northern Sotho,Overall,307
|
45 |
+
nso_human_vs_nso_gpt,0.3058,Northern Sotho,Historical and Heritage Studies,19
|
46 |
+
nso_human_vs_nso_gpt,0.2753,Northern Sotho,Economics,133
|
47 |
+
nso_human_vs_nso_gpt,0.2502,Northern Sotho,Information Science,13
|
48 |
+
nso_human_vs_nso_gpt,0.2465,Northern Sotho,Informatics,12
|
49 |
+
nso_human_vs_nso_gpt,0.2596,Northern Sotho,Nursing Science,11
|
50 |
+
nso_human_vs_nso_gpt,0.1992,Northern Sotho,Computer Science,46
|
51 |
+
nso_human_vs_nso_gpt,0.2172,Northern Sotho,"Geography, Geoinformatics and Meteorology",11
|
52 |
+
nso_human_vs_nso_gpt,0.2038,Northern Sotho,Electrical Electronic and Computer Engineering,41
|
53 |
+
nso_human_vs_nso_gpt,0.3609,Northern Sotho,Microbiology and Plant Pathology,13
|
54 |
+
nso_human_vs_nso_gpt,0.1826,Northern Sotho,Statistics,8
|
55 |
+
nso_human_vs_nso_nllb,0.266,Northern Sotho,Overall,307
|
56 |
+
nso_human_vs_nso_nllb,0.2611,Northern Sotho,Historical and Heritage Studies,19
|
57 |
+
nso_human_vs_nso_nllb,0.2938,Northern Sotho,Economics,133
|
58 |
+
nso_human_vs_nso_nllb,0.2718,Northern Sotho,Information Science,13
|
59 |
+
nso_human_vs_nso_nllb,0.2987,Northern Sotho,Informatics,12
|
60 |
+
nso_human_vs_nso_nllb,0.2908,Northern Sotho,Nursing Science,11
|
61 |
+
nso_human_vs_nso_nllb,0.2119,Northern Sotho,Computer Science,46
|
62 |
+
nso_human_vs_nso_nllb,0.221,Northern Sotho,"Geography, Geoinformatics and Meteorology",11
|
63 |
+
nso_human_vs_nso_nllb,0.2069,Northern Sotho,Electrical Electronic and Computer Engineering,41
|
64 |
+
nso_human_vs_nso_nllb,0.3858,Northern Sotho,Microbiology and Plant Pathology,13
|
65 |
+
nso_human_vs_nso_nllb,0.202,Northern Sotho,Statistics,8
|
66 |
+
zul_human_vs_zul_revised,0.3816,isiZulu,Overall,285
|
67 |
+
zul_human_vs_zul_revised,0.4277,isiZulu,Historical and Heritage Studies,18
|
68 |
+
zul_human_vs_zul_revised,0.3973,isiZulu,Economics,128
|
69 |
+
zul_human_vs_zul_revised,0.5029,isiZulu,Information Science,11
|
70 |
+
zul_human_vs_zul_revised,0.4266,isiZulu,Informatics,10
|
71 |
+
zul_human_vs_zul_revised,0.5591,isiZulu,Nursing Science,7
|
72 |
+
zul_human_vs_zul_revised,0.1769,isiZulu,Computer Science,45
|
73 |
+
zul_human_vs_zul_revised,0.3338,isiZulu,"Geography, Geoinformatics and Meteorology",10
|
74 |
+
zul_human_vs_zul_revised,0.4241,isiZulu,Electrical Electronic and Computer Engineering,36
|
75 |
+
zul_human_vs_zul_revised,0.5684,isiZulu,Microbiology and Plant Pathology,12
|
76 |
+
zul_human_vs_zul_revised,0.3879,isiZulu,Statistics,8
|
77 |
+
zul_human_vs_zul_gemini,0.0907,isiZulu,Overall,307
|
78 |
+
zul_human_vs_zul_gemini,0.0972,isiZulu,Historical and Heritage Studies,19
|
79 |
+
zul_human_vs_zul_gemini,0.0832,isiZulu,Economics,133
|
80 |
+
zul_human_vs_zul_gemini,0.1764,isiZulu,Information Science,13
|
81 |
+
zul_human_vs_zul_gemini,0.0821,isiZulu,Informatics,12
|
82 |
+
zul_human_vs_zul_gemini,0.1561,isiZulu,Nursing Science,11
|
83 |
+
zul_human_vs_zul_gemini,0.0692,isiZulu,Computer Science,46
|
84 |
+
zul_human_vs_zul_gemini,0.0819,isiZulu,"Geography, Geoinformatics and Meteorology",11
|
85 |
+
zul_human_vs_zul_gemini,0.0809,isiZulu,Electrical Electronic and Computer Engineering,41
|
86 |
+
zul_human_vs_zul_gemini,0.177,isiZulu,Microbiology and Plant Pathology,13
|
87 |
+
zul_human_vs_zul_gemini,0.0313,isiZulu,Statistics,8
|
88 |
+
zul_human_vs_zul_gpt,0.0856,isiZulu,Overall,307
|
89 |
+
zul_human_vs_zul_gpt,0.1059,isiZulu,Historical and Heritage Studies,19
|
90 |
+
zul_human_vs_zul_gpt,0.078,isiZulu,Economics,133
|
91 |
+
zul_human_vs_zul_gpt,0.1177,isiZulu,Information Science,13
|
92 |
+
zul_human_vs_zul_gpt,0.112,isiZulu,Informatics,12
|
93 |
+
zul_human_vs_zul_gpt,0.1178,isiZulu,Nursing Science,11
|
94 |
+
zul_human_vs_zul_gpt,0.0752,isiZulu,Computer Science,46
|
95 |
+
zul_human_vs_zul_gpt,0.1032,isiZulu,"Geography, Geoinformatics and Meteorology",11
|
96 |
+
zul_human_vs_zul_gpt,0.0877,isiZulu,Electrical Electronic and Computer Engineering,41
|
97 |
+
zul_human_vs_zul_gpt,0.096,isiZulu,Microbiology and Plant Pathology,13
|
98 |
+
zul_human_vs_zul_gpt,0.0355,isiZulu,Statistics,8
|
99 |
+
zul_human_vs_zul_nllb,0.0909,isiZulu,Overall,307
|
100 |
+
zul_human_vs_zul_nllb,0.0877,isiZulu,Historical and Heritage Studies,19
|
101 |
+
zul_human_vs_zul_nllb,0.0855,isiZulu,Economics,133
|
102 |
+
zul_human_vs_zul_nllb,0.1456,isiZulu,Information Science,13
|
103 |
+
zul_human_vs_zul_nllb,0.1207,isiZulu,Informatics,12
|
104 |
+
zul_human_vs_zul_nllb,0.1548,isiZulu,Nursing Science,11
|
105 |
+
zul_human_vs_zul_nllb,0.0678,isiZulu,Computer Science,46
|
106 |
+
zul_human_vs_zul_nllb,0.1022,isiZulu,"Geography, Geoinformatics and Meteorology",11
|
107 |
+
zul_human_vs_zul_nllb,0.0873,isiZulu,Electrical Electronic and Computer Engineering,41
|
108 |
+
zul_human_vs_zul_nllb,0.1337,isiZulu,Microbiology and Plant Pathology,13
|
109 |
+
zul_human_vs_zul_nllb,0.0333,isiZulu,Statistics,8
|
src/data/chrf_scores.csv
ADDED
@@ -0,0 +1,119 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
comparison_pair,chrf_score,language,domain,num_sentences
|
2 |
+
afr_human_vs_afr_revised,0.9262,Afrikaans,Overall,96
|
3 |
+
afr_human_vs_afr_revised,0.9393,Afrikaans,Historical and Heritage Studies,3
|
4 |
+
afr_human_vs_afr_revised,0.9285,Afrikaans,Economics,52
|
5 |
+
afr_human_vs_afr_revised,0.9008,Afrikaans,Information Science,2
|
6 |
+
afr_human_vs_afr_revised,0.9509,Afrikaans,Informatics,2
|
7 |
+
afr_human_vs_afr_revised,0.9188,Afrikaans,Computer Science,26
|
8 |
+
afr_human_vs_afr_revised,0.9327,Afrikaans,"Geography, Geoinformatics and Meteorology",2
|
9 |
+
afr_human_vs_afr_revised,0.9283,Afrikaans,Electrical Electronic and Computer Engineering,6
|
10 |
+
afr_human_vs_afr_revised,0.9311,Afrikaans,Microbiology and Plant Pathology,3
|
11 |
+
afr_human_vs_afr_gemini,0.8473,Afrikaans,Overall,306
|
12 |
+
afr_human_vs_afr_gemini,0.8963,Afrikaans,Historical and Heritage Studies,19
|
13 |
+
afr_human_vs_afr_gemini,0.8402,Afrikaans,Economics,132
|
14 |
+
afr_human_vs_afr_gemini,0.9234,Afrikaans,Information Science,13
|
15 |
+
afr_human_vs_afr_gemini,0.8674,Afrikaans,Informatics,12
|
16 |
+
afr_human_vs_afr_gemini,0.861,Afrikaans,Nursing Science,11
|
17 |
+
afr_human_vs_afr_gemini,0.8062,Afrikaans,Computer Science,46
|
18 |
+
afr_human_vs_afr_gemini,0.8123,Afrikaans,"Geography, Geoinformatics and Meteorology",11
|
19 |
+
afr_human_vs_afr_gemini,0.8644,Afrikaans,Electrical Electronic and Computer Engineering,41
|
20 |
+
afr_human_vs_afr_gemini,0.8904,Afrikaans,Microbiology and Plant Pathology,13
|
21 |
+
afr_human_vs_afr_gemini,0.803,Afrikaans,Statistics,8
|
22 |
+
afr_human_vs_afr_gpt,0.8415,Afrikaans,Overall,306
|
23 |
+
afr_human_vs_afr_gpt,0.907,Afrikaans,Historical and Heritage Studies,19
|
24 |
+
afr_human_vs_afr_gpt,0.8258,Afrikaans,Economics,132
|
25 |
+
afr_human_vs_afr_gpt,0.9429,Afrikaans,Information Science,13
|
26 |
+
afr_human_vs_afr_gpt,0.8827,Afrikaans,Informatics,12
|
27 |
+
afr_human_vs_afr_gpt,0.8912,Afrikaans,Nursing Science,11
|
28 |
+
afr_human_vs_afr_gpt,0.7763,Afrikaans,Computer Science,46
|
29 |
+
afr_human_vs_afr_gpt,0.8542,Afrikaans,"Geography, Geoinformatics and Meteorology",11
|
30 |
+
afr_human_vs_afr_gpt,0.8601,Afrikaans,Electrical Electronic and Computer Engineering,41
|
31 |
+
afr_human_vs_afr_gpt,0.9066,Afrikaans,Microbiology and Plant Pathology,13
|
32 |
+
afr_human_vs_afr_gpt,0.8076,Afrikaans,Statistics,8
|
33 |
+
nso_human_vs_nso_revised,0.5745,Northern Sotho,Overall,55
|
34 |
+
nso_human_vs_nso_revised,0.6954,Northern Sotho,Historical and Heritage Studies,18
|
35 |
+
nso_human_vs_nso_revised,0.6416,Northern Sotho,Economics,10
|
36 |
+
nso_human_vs_nso_revised,0.2633,Northern Sotho,Information Science,4
|
37 |
+
nso_human_vs_nso_revised,0.7982,Northern Sotho,Informatics,2
|
38 |
+
nso_human_vs_nso_revised,0.5552,Northern Sotho,Nursing Science,3
|
39 |
+
nso_human_vs_nso_revised,0.344,Northern Sotho,Computer Science,8
|
40 |
+
nso_human_vs_nso_revised,0.3796,Northern Sotho,"Geography, Geoinformatics and Meteorology",2
|
41 |
+
nso_human_vs_nso_revised,0.3478,Northern Sotho,Microbiology and Plant Pathology,2
|
42 |
+
nso_human_vs_nso_revised,0.69,Northern Sotho,Statistics,6
|
43 |
+
nso_human_vs_nso_gemini,0.5896,Northern Sotho,Overall,307
|
44 |
+
nso_human_vs_nso_gemini,0.5832,Northern Sotho,Historical and Heritage Studies,19
|
45 |
+
nso_human_vs_nso_gemini,0.6014,Northern Sotho,Economics,133
|
46 |
+
nso_human_vs_nso_gemini,0.5658,Northern Sotho,Information Science,13
|
47 |
+
nso_human_vs_nso_gemini,0.676,Northern Sotho,Informatics,12
|
48 |
+
nso_human_vs_nso_gemini,0.5761,Northern Sotho,Nursing Science,11
|
49 |
+
nso_human_vs_nso_gemini,0.5671,Northern Sotho,Computer Science,46
|
50 |
+
nso_human_vs_nso_gemini,0.5634,Northern Sotho,"Geography, Geoinformatics and Meteorology",11
|
51 |
+
nso_human_vs_nso_gemini,0.5327,Northern Sotho,Electrical Electronic and Computer Engineering,41
|
52 |
+
nso_human_vs_nso_gemini,0.6915,Northern Sotho,Microbiology and Plant Pathology,13
|
53 |
+
nso_human_vs_nso_gemini,0.6283,Northern Sotho,Statistics,8
|
54 |
+
nso_human_vs_nso_gpt,0.5434,Northern Sotho,Overall,307
|
55 |
+
nso_human_vs_nso_gpt,0.5656,Northern Sotho,Historical and Heritage Studies,19
|
56 |
+
nso_human_vs_nso_gpt,0.5761,Northern Sotho,Economics,133
|
57 |
+
nso_human_vs_nso_gpt,0.5459,Northern Sotho,Information Science,13
|
58 |
+
nso_human_vs_nso_gpt,0.5263,Northern Sotho,Informatics,12
|
59 |
+
nso_human_vs_nso_gpt,0.5661,Northern Sotho,Nursing Science,11
|
60 |
+
nso_human_vs_nso_gpt,0.4661,Northern Sotho,Computer Science,46
|
61 |
+
nso_human_vs_nso_gpt,0.526,Northern Sotho,"Geography, Geoinformatics and Meteorology",11
|
62 |
+
nso_human_vs_nso_gpt,0.499,Northern Sotho,Electrical Electronic and Computer Engineering,41
|
63 |
+
nso_human_vs_nso_gpt,0.6324,Northern Sotho,Microbiology and Plant Pathology,13
|
64 |
+
nso_human_vs_nso_gpt,0.4877,Northern Sotho,Statistics,8
|
65 |
+
nso_human_vs_nso_nllb,0.5688,Northern Sotho,Overall,307
|
66 |
+
nso_human_vs_nso_nllb,0.5786,Northern Sotho,Historical and Heritage Studies,19
|
67 |
+
nso_human_vs_nso_nllb,0.588,Northern Sotho,Economics,133
|
68 |
+
nso_human_vs_nso_nllb,0.5736,Northern Sotho,Information Science,13
|
69 |
+
nso_human_vs_nso_nllb,0.6325,Northern Sotho,Informatics,12
|
70 |
+
nso_human_vs_nso_nllb,0.6527,Northern Sotho,Nursing Science,11
|
71 |
+
nso_human_vs_nso_nllb,0.5006,Northern Sotho,Computer Science,46
|
72 |
+
nso_human_vs_nso_nllb,0.5273,Northern Sotho,"Geography, Geoinformatics and Meteorology",11
|
73 |
+
nso_human_vs_nso_nllb,0.5211,Northern Sotho,Electrical Electronic and Computer Engineering,41
|
74 |
+
nso_human_vs_nso_nllb,0.6732,Northern Sotho,Microbiology and Plant Pathology,13
|
75 |
+
nso_human_vs_nso_nllb,0.5323,Northern Sotho,Statistics,8
|
76 |
+
zul_human_vs_zul_revised,0.7141,isiZulu,Overall,285
|
77 |
+
zul_human_vs_zul_revised,0.7486,isiZulu,Historical and Heritage Studies,18
|
78 |
+
zul_human_vs_zul_revised,0.7612,isiZulu,Economics,128
|
79 |
+
zul_human_vs_zul_revised,0.7933,isiZulu,Information Science,11
|
80 |
+
zul_human_vs_zul_revised,0.7246,isiZulu,Informatics,10
|
81 |
+
zul_human_vs_zul_revised,0.8462,isiZulu,Nursing Science,7
|
82 |
+
zul_human_vs_zul_revised,0.5057,isiZulu,Computer Science,45
|
83 |
+
zul_human_vs_zul_revised,0.6284,isiZulu,"Geography, Geoinformatics and Meteorology",10
|
84 |
+
zul_human_vs_zul_revised,0.7279,isiZulu,Electrical Electronic and Computer Engineering,36
|
85 |
+
zul_human_vs_zul_revised,0.7971,isiZulu,Microbiology and Plant Pathology,12
|
86 |
+
zul_human_vs_zul_revised,0.7401,isiZulu,Statistics,8
|
87 |
+
zul_human_vs_zul_gemini,0.4992,isiZulu,Overall,307
|
88 |
+
zul_human_vs_zul_gemini,0.529,isiZulu,Historical and Heritage Studies,19
|
89 |
+
zul_human_vs_zul_gemini,0.5243,isiZulu,Economics,133
|
90 |
+
zul_human_vs_zul_gemini,0.5735,isiZulu,Information Science,13
|
91 |
+
zul_human_vs_zul_gemini,0.5031,isiZulu,Informatics,12
|
92 |
+
zul_human_vs_zul_gemini,0.6054,isiZulu,Nursing Science,11
|
93 |
+
zul_human_vs_zul_gemini,0.4244,isiZulu,Computer Science,46
|
94 |
+
zul_human_vs_zul_gemini,0.3796,isiZulu,"Geography, Geoinformatics and Meteorology",11
|
95 |
+
zul_human_vs_zul_gemini,0.4656,isiZulu,Electrical Electronic and Computer Engineering,41
|
96 |
+
zul_human_vs_zul_gemini,0.5445,isiZulu,Microbiology and Plant Pathology,13
|
97 |
+
zul_human_vs_zul_gemini,0.4321,isiZulu,Statistics,8
|
98 |
+
zul_human_vs_zul_gpt,0.4835,isiZulu,Overall,307
|
99 |
+
zul_human_vs_zul_gpt,0.5149,isiZulu,Historical and Heritage Studies,19
|
100 |
+
zul_human_vs_zul_gpt,0.5069,isiZulu,Economics,133
|
101 |
+
zul_human_vs_zul_gpt,0.5513,isiZulu,Information Science,13
|
102 |
+
zul_human_vs_zul_gpt,0.5362,isiZulu,Informatics,12
|
103 |
+
zul_human_vs_zul_gpt,0.5969,isiZulu,Nursing Science,11
|
104 |
+
zul_human_vs_zul_gpt,0.4024,isiZulu,Computer Science,46
|
105 |
+
zul_human_vs_zul_gpt,0.3585,isiZulu,"Geography, Geoinformatics and Meteorology",11
|
106 |
+
zul_human_vs_zul_gpt,0.4605,isiZulu,Electrical Electronic and Computer Engineering,41
|
107 |
+
zul_human_vs_zul_gpt,0.4868,isiZulu,Microbiology and Plant Pathology,13
|
108 |
+
zul_human_vs_zul_gpt,0.4248,isiZulu,Statistics,8
|
109 |
+
zul_human_vs_zul_nllb,0.4881,isiZulu,Overall,307
|
110 |
+
zul_human_vs_zul_nllb,0.514,isiZulu,Historical and Heritage Studies,19
|
111 |
+
zul_human_vs_zul_nllb,0.515,isiZulu,Economics,133
|
112 |
+
zul_human_vs_zul_nllb,0.5514,isiZulu,Information Science,13
|
113 |
+
zul_human_vs_zul_nllb,0.5189,isiZulu,Informatics,12
|
114 |
+
zul_human_vs_zul_nllb,0.6127,isiZulu,Nursing Science,11
|
115 |
+
zul_human_vs_zul_nllb,0.4027,isiZulu,Computer Science,46
|
116 |
+
zul_human_vs_zul_nllb,0.3622,isiZulu,"Geography, Geoinformatics and Meteorology",11
|
117 |
+
zul_human_vs_zul_nllb,0.4655,isiZulu,Electrical Electronic and Computer Engineering,41
|
118 |
+
zul_human_vs_zul_nllb,0.4983,isiZulu,Microbiology and Plant Pathology,13
|
119 |
+
zul_human_vs_zul_nllb,0.4202,isiZulu,Statistics,8
|
src/data/comet_scores.csv
ADDED
@@ -0,0 +1,119 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
comparison_pair,comet_score,language,domain,num_sentences
|
2 |
+
afr_human_vs_afr_revised,0.7352,Afrikaans,Overall,96
|
3 |
+
afr_human_vs_afr_revised,0.7537,Afrikaans,Historical and Heritage Studies,3
|
4 |
+
afr_human_vs_afr_revised,0.7432,Afrikaans,Economics,52
|
5 |
+
afr_human_vs_afr_revised,0.8113,Afrikaans,Information Science,2
|
6 |
+
afr_human_vs_afr_revised,0.7563,Afrikaans,Informatics,2
|
7 |
+
afr_human_vs_afr_revised,0.714,Afrikaans,Computer Science,26
|
8 |
+
afr_human_vs_afr_revised,0.6041,Afrikaans,"Geography, Geoinformatics and Meteorology",2
|
9 |
+
afr_human_vs_afr_revised,0.761,Afrikaans,Electrical Electronic and Computer Engineering,6
|
10 |
+
afr_human_vs_afr_revised,0.7336,Afrikaans,Microbiology and Plant Pathology,3
|
11 |
+
afr_human_vs_afr_gemini,0.7557,Afrikaans,Overall,306
|
12 |
+
afr_human_vs_afr_gemini,0.7848,Afrikaans,Historical and Heritage Studies,19
|
13 |
+
afr_human_vs_afr_gemini,0.7579,Afrikaans,Economics,132
|
14 |
+
afr_human_vs_afr_gemini,0.7995,Afrikaans,Information Science,13
|
15 |
+
afr_human_vs_afr_gemini,0.8137,Afrikaans,Informatics,12
|
16 |
+
afr_human_vs_afr_gemini,0.7744,Afrikaans,Nursing Science,11
|
17 |
+
afr_human_vs_afr_gemini,0.7334,Afrikaans,Computer Science,46
|
18 |
+
afr_human_vs_afr_gemini,0.6529,Afrikaans,"Geography, Geoinformatics and Meteorology",11
|
19 |
+
afr_human_vs_afr_gemini,0.7551,Afrikaans,Electrical Electronic and Computer Engineering,41
|
20 |
+
afr_human_vs_afr_gemini,0.8092,Afrikaans,Microbiology and Plant Pathology,13
|
21 |
+
afr_human_vs_afr_gemini,0.6535,Afrikaans,Statistics,8
|
22 |
+
afr_human_vs_afr_gpt,0.7536,Afrikaans,Overall,306
|
23 |
+
afr_human_vs_afr_gpt,0.7778,Afrikaans,Historical and Heritage Studies,19
|
24 |
+
afr_human_vs_afr_gpt,0.76,Afrikaans,Economics,132
|
25 |
+
afr_human_vs_afr_gpt,0.8068,Afrikaans,Information Science,13
|
26 |
+
afr_human_vs_afr_gpt,0.8077,Afrikaans,Informatics,12
|
27 |
+
afr_human_vs_afr_gpt,0.7733,Afrikaans,Nursing Science,11
|
28 |
+
afr_human_vs_afr_gpt,0.7259,Afrikaans,Computer Science,46
|
29 |
+
afr_human_vs_afr_gpt,0.6414,Afrikaans,"Geography, Geoinformatics and Meteorology",11
|
30 |
+
afr_human_vs_afr_gpt,0.7513,Afrikaans,Electrical Electronic and Computer Engineering,41
|
31 |
+
afr_human_vs_afr_gpt,0.8053,Afrikaans,Microbiology and Plant Pathology,13
|
32 |
+
afr_human_vs_afr_gpt,0.6374,Afrikaans,Statistics,8
|
33 |
+
nso_human_vs_nso_revised,0.5325,Northern Sotho,Overall,55
|
34 |
+
nso_human_vs_nso_revised,0.6267,Northern Sotho,Historical and Heritage Studies,18
|
35 |
+
nso_human_vs_nso_revised,0.6125,Northern Sotho,Economics,10
|
36 |
+
nso_human_vs_nso_revised,0.322,Northern Sotho,Information Science,4
|
37 |
+
nso_human_vs_nso_revised,0.6908,Northern Sotho,Informatics,2
|
38 |
+
nso_human_vs_nso_revised,0.4732,Northern Sotho,Nursing Science,3
|
39 |
+
nso_human_vs_nso_revised,0.457,Northern Sotho,Computer Science,8
|
40 |
+
nso_human_vs_nso_revised,0.4298,Northern Sotho,"Geography, Geoinformatics and Meteorology",2
|
41 |
+
nso_human_vs_nso_revised,0.3199,Northern Sotho,Microbiology and Plant Pathology,2
|
42 |
+
nso_human_vs_nso_revised,0.4392,Northern Sotho,Statistics,6
|
43 |
+
nso_human_vs_nso_gemini,0.6576,Northern Sotho,Overall,307
|
44 |
+
nso_human_vs_nso_gemini,0.6815,Northern Sotho,Historical and Heritage Studies,19
|
45 |
+
nso_human_vs_nso_gemini,0.6678,Northern Sotho,Economics,133
|
46 |
+
nso_human_vs_nso_gemini,0.7196,Northern Sotho,Information Science,13
|
47 |
+
nso_human_vs_nso_gemini,0.7279,Northern Sotho,Informatics,12
|
48 |
+
nso_human_vs_nso_gemini,0.6901,Northern Sotho,Nursing Science,11
|
49 |
+
nso_human_vs_nso_gemini,0.6354,Northern Sotho,Computer Science,46
|
50 |
+
nso_human_vs_nso_gemini,0.5456,Northern Sotho,"Geography, Geoinformatics and Meteorology",11
|
51 |
+
nso_human_vs_nso_gemini,0.6331,Northern Sotho,Electrical Electronic and Computer Engineering,41
|
52 |
+
nso_human_vs_nso_gemini,0.7121,Northern Sotho,Microbiology and Plant Pathology,13
|
53 |
+
nso_human_vs_nso_gemini,0.4975,Northern Sotho,Statistics,8
|
54 |
+
nso_human_vs_nso_gpt,0.6461,Northern Sotho,Overall,307
|
55 |
+
nso_human_vs_nso_gpt,0.6941,Northern Sotho,Historical and Heritage Studies,19
|
56 |
+
nso_human_vs_nso_gpt,0.6593,Northern Sotho,Economics,133
|
57 |
+
nso_human_vs_nso_gpt,0.6923,Northern Sotho,Information Science,13
|
58 |
+
nso_human_vs_nso_gpt,0.7227,Northern Sotho,Informatics,12
|
59 |
+
nso_human_vs_nso_gpt,0.6724,Northern Sotho,Nursing Science,11
|
60 |
+
nso_human_vs_nso_gpt,0.6159,Northern Sotho,Computer Science,46
|
61 |
+
nso_human_vs_nso_gpt,0.5706,Northern Sotho,"Geography, Geoinformatics and Meteorology",11
|
62 |
+
nso_human_vs_nso_gpt,0.6115,Northern Sotho,Electrical Electronic and Computer Engineering,41
|
63 |
+
nso_human_vs_nso_gpt,0.6755,Northern Sotho,Microbiology and Plant Pathology,13
|
64 |
+
nso_human_vs_nso_gpt,0.494,Northern Sotho,Statistics,8
|
65 |
+
nso_human_vs_nso_nllb,0.6234,Northern Sotho,Overall,307
|
66 |
+
nso_human_vs_nso_nllb,0.6435,Northern Sotho,Historical and Heritage Studies,19
|
67 |
+
nso_human_vs_nso_nllb,0.6413,Northern Sotho,Economics,133
|
68 |
+
nso_human_vs_nso_nllb,0.6693,Northern Sotho,Information Science,13
|
69 |
+
nso_human_vs_nso_nllb,0.7008,Northern Sotho,Informatics,12
|
70 |
+
nso_human_vs_nso_nllb,0.6154,Northern Sotho,Nursing Science,11
|
71 |
+
nso_human_vs_nso_nllb,0.5793,Northern Sotho,Computer Science,46
|
72 |
+
nso_human_vs_nso_nllb,0.5199,Northern Sotho,"Geography, Geoinformatics and Meteorology",11
|
73 |
+
nso_human_vs_nso_nllb,0.5986,Northern Sotho,Electrical Electronic and Computer Engineering,41
|
74 |
+
nso_human_vs_nso_nllb,0.6945,Northern Sotho,Microbiology and Plant Pathology,13
|
75 |
+
nso_human_vs_nso_nllb,0.5055,Northern Sotho,Statistics,8
|
76 |
+
zul_human_vs_zul_revised,0.5969,isiZulu,Overall,285
|
77 |
+
zul_human_vs_zul_revised,0.6104,isiZulu,Historical and Heritage Studies,18
|
78 |
+
zul_human_vs_zul_revised,0.6098,isiZulu,Economics,128
|
79 |
+
zul_human_vs_zul_revised,0.6708,isiZulu,Information Science,11
|
80 |
+
zul_human_vs_zul_revised,0.6003,isiZulu,Informatics,10
|
81 |
+
zul_human_vs_zul_revised,0.6473,isiZulu,Nursing Science,7
|
82 |
+
zul_human_vs_zul_revised,0.5703,isiZulu,Computer Science,45
|
83 |
+
zul_human_vs_zul_revised,0.5336,isiZulu,"Geography, Geoinformatics and Meteorology",10
|
84 |
+
zul_human_vs_zul_revised,0.5658,isiZulu,Electrical Electronic and Computer Engineering,36
|
85 |
+
zul_human_vs_zul_revised,0.6909,isiZulu,Microbiology and Plant Pathology,12
|
86 |
+
zul_human_vs_zul_revised,0.4388,isiZulu,Statistics,8
|
87 |
+
zul_human_vs_zul_gemini,0.6711,isiZulu,Overall,307
|
88 |
+
zul_human_vs_zul_gemini,0.6935,isiZulu,Historical and Heritage Studies,19
|
89 |
+
zul_human_vs_zul_gemini,0.6927,isiZulu,Economics,133
|
90 |
+
zul_human_vs_zul_gemini,0.6992,isiZulu,Information Science,13
|
91 |
+
zul_human_vs_zul_gemini,0.7448,isiZulu,Informatics,12
|
92 |
+
zul_human_vs_zul_gemini,0.73,isiZulu,Nursing Science,11
|
93 |
+
zul_human_vs_zul_gemini,0.628,isiZulu,Computer Science,46
|
94 |
+
zul_human_vs_zul_gemini,0.5512,isiZulu,"Geography, Geoinformatics and Meteorology",11
|
95 |
+
zul_human_vs_zul_gemini,0.6392,isiZulu,Electrical Electronic and Computer Engineering,41
|
96 |
+
zul_human_vs_zul_gemini,0.7165,isiZulu,Microbiology and Plant Pathology,13
|
97 |
+
zul_human_vs_zul_gemini,0.522,isiZulu,Statistics,8
|
98 |
+
zul_human_vs_zul_gpt,0.6573,isiZulu,Overall,307
|
99 |
+
zul_human_vs_zul_gpt,0.6887,isiZulu,Historical and Heritage Studies,19
|
100 |
+
zul_human_vs_zul_gpt,0.672,isiZulu,Economics,133
|
101 |
+
zul_human_vs_zul_gpt,0.7049,isiZulu,Information Science,13
|
102 |
+
zul_human_vs_zul_gpt,0.7064,isiZulu,Informatics,12
|
103 |
+
zul_human_vs_zul_gpt,0.7019,isiZulu,Nursing Science,11
|
104 |
+
zul_human_vs_zul_gpt,0.6348,isiZulu,Computer Science,46
|
105 |
+
zul_human_vs_zul_gpt,0.5503,isiZulu,"Geography, Geoinformatics and Meteorology",11
|
106 |
+
zul_human_vs_zul_gpt,0.6167,isiZulu,Electrical Electronic and Computer Engineering,41
|
107 |
+
zul_human_vs_zul_gpt,0.702,isiZulu,Microbiology and Plant Pathology,13
|
108 |
+
zul_human_vs_zul_gpt,0.5381,isiZulu,Statistics,8
|
109 |
+
zul_human_vs_zul_nllb,0.6326,isiZulu,Overall,307
|
110 |
+
zul_human_vs_zul_nllb,0.6477,isiZulu,Historical and Heritage Studies,19
|
111 |
+
zul_human_vs_zul_nllb,0.6441,isiZulu,Economics,133
|
112 |
+
zul_human_vs_zul_nllb,0.7024,isiZulu,Information Science,13
|
113 |
+
zul_human_vs_zul_nllb,0.6976,isiZulu,Informatics,12
|
114 |
+
zul_human_vs_zul_nllb,0.7014,isiZulu,Nursing Science,11
|
115 |
+
zul_human_vs_zul_nllb,0.6036,isiZulu,Computer Science,46
|
116 |
+
zul_human_vs_zul_nllb,0.5395,isiZulu,"Geography, Geoinformatics and Meteorology",11
|
117 |
+
zul_human_vs_zul_nllb,0.5939,isiZulu,Electrical Electronic and Computer Engineering,41
|
118 |
+
zul_human_vs_zul_nllb,0.6935,isiZulu,Microbiology and Plant Pathology,13
|
119 |
+
zul_human_vs_zul_nllb,0.4938,isiZulu,Statistics,8
|
src/data/translations.tsv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
src/logo.png
ADDED
![]() |
src/streamlit_app.py
CHANGED
The diff for this file is too large to render.
See raw diff
|
|