diff --git a/app.py b/app.py
index e2c444c710bf07de971f46ad6b7eddd649e817f1..542848906bc1e70082eb464d30568be368387988 100644
--- a/app.py
+++ b/app.py
@@ -2,6 +2,7 @@ import gradio
import inseq
from inseq.data.aggregator import AggregatorPipeline, SubwordAggregator, SequenceAttributionAggregator, PairAggregator
import torch
+from os.path import exists
if torch.cuda.is_available():
DEVICE = "cuda"
@@ -9,7 +10,7 @@ else:
DEVICE = "cpu"
# Start downloading the Hu-En model
-model_hu_en = inseq.load_model("Helsinki-NLP/opus-mt-hu-en", "integrated_gradients")
+# model_hu_en = inseq.load_model("Helsinki-NLP/opus-mt-hu-en", "integrated_gradients")
def swap_pronoun(sentence):
if "He" in sentence:
@@ -19,14 +20,18 @@ def swap_pronoun(sentence):
else:
return sentence
-def run_counterfactual(occupation):
+def run_counterfactual(occupation):
occupation = occupation.split(" (")[0]
+ result_fp = f"results/counterfactual_{occupation}.html"
+ if exists(result_fp):
+ with open(result_fp, 'r') as f:
+ return f.read()
# "egy" means something like "a", but is used less frequently than in English.
#source = f"Ő egy {occupation}."
source = f"Ő {occupation}."
- model = model_hu_en
+ model = inseq.load_model("Helsinki-NLP/opus-mt-hu-en", "integrated_gradients")
model.device = DEVICE
target = model.generate(source)[0]
#target_modified = swap_pronoun(target)
@@ -56,12 +61,24 @@ def run_counterfactual(occupation):
masculine = out.sequence_attributions[0].aggregate(aggregator=squeezesum)
feminine = out.sequence_attributions[1].aggregate(aggregator=squeezesum)
- return masculine.show(aggregator=PairAggregator, paired_attr=feminine, return_html=True, display=True)
+ html = masculine.show(aggregator=PairAggregator, paired_attr=feminine, return_html=True, display=True)
+
+ # Save html
+ with open(result_fp, 'w') as f:
+ f.write(html)
+
+ return html
#return out.show(return_html=True, display=True)
def run_simple(occupation, lang, aggregate):
+ aggregate = True if aggregate == "yes" else False
occupation = occupation.split(" (")[0]
+ result_fp = f"results/simple_{occupation}_{lang}{'_aggregate' if aggregate else ''}.html"
+ if exists(result_fp):
+ with open(result_fp, 'r') as f:
+ return f.read()
+
model_name = f"Helsinki-NLP/opus-mt-hu-{lang}"
# "egy" means something like "a", but is used less frequently than in English.
@@ -73,9 +90,16 @@ def run_simple(occupation, lang, aggregate):
if aggregate:
squeezesum = AggregatorPipeline([SubwordAggregator, SequenceAttributionAggregator])
- return out.show(return_html=True, display=True, aggregator=squeezesum)
+ html = out.show(return_html=True, display=True, aggregator=squeezesum)
else:
- return out.show(return_html=True, display=True)
+ html = out.show(return_html=True, display=True)
+
+ # Save html
+ with open(result_fp, 'w') as f:
+ f.write(html)
+ return html
+
+
with open("description.md") as fh:
desc = fh.read()
@@ -146,4 +170,4 @@ with gradio.Blocks(title="Gender Bias in MT: Hungarian to English") as iface:
gradio.Markdown(notice)
-iface.launch()
\ No newline at end of file
+iface.launch(share=True)
\ No newline at end of file
diff --git "a/results/counterfactual_esk\303\274v\305\221szervez\305\221.html" "b/results/counterfactual_esk\303\274v\305\221szervez\305\221.html"
new file mode 100644
index 0000000000000000000000000000000000000000..fe055fd916ecabc22a9d3b5bed40d17ab2e463b5
--- /dev/null
+++ "b/results/counterfactual_esk\303\274v\305\221szervez\305\221.html"
@@ -0,0 +1,23 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's → ▁She's | ▁a | ▁wedding | ▁planner. | </s> |
---|
▁Ő | 0.002 | -0.005 | -0.048 | 0.007 | 0.121 |
---|
▁esküvőszervező. | -0.001 | 0.003 | 0.014 | 0.001 | 0.124 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
probability | 0.102 | -0.003 | 0.003 | 0.009 | -0.0 |
---|
+
+
+
+
+
+
diff --git "a/results/counterfactual_f\303\251rfi.html" "b/results/counterfactual_f\303\251rfi.html"
new file mode 100644
index 0000000000000000000000000000000000000000..426bd047b6dedd16e2e42f4e9afff3d6b571493e
--- /dev/null
+++ "b/results/counterfactual_f\303\251rfi.html"
@@ -0,0 +1,23 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's → ▁She's | ▁a | ▁man. | </s> |
---|
▁Ő | -0.012 | 0.016 | 0.062 | 0.24 |
---|
▁férfi. | 0.007 | -0.008 | -0.014 | -0.146 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
probability | -0.39 | -0.003 | -0.037 | 0.001 |
---|
+
+
+
+
+
+
diff --git "a/results/counterfactual_m\303\251rn\303\266k.html" "b/results/counterfactual_m\303\251rn\303\266k.html"
new file mode 100644
index 0000000000000000000000000000000000000000..9819c57bd1a7475934e66c8ddb536261b59417e7
--- /dev/null
+++ "b/results/counterfactual_m\303\251rn\303\266k.html"
@@ -0,0 +1,23 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's → ▁She's | ▁an | ▁engineer. | </s> |
---|
▁Ő | -0.015 | 0.008 | -0.01 | 0.808 |
---|
▁mérnök. | 0.005 | -0.004 | -0.0 | -1.699 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
probability | -0.356 | 0.0 | -0.001 | 0.001 |
---|
+
+
+
+
+
+
diff --git "a/results/counterfactual_n\305\221.html" "b/results/counterfactual_n\305\221.html"
new file mode 100644
index 0000000000000000000000000000000000000000..5a139cc712d042deb599d191c6a36de2c78bc582
--- /dev/null
+++ "b/results/counterfactual_n\305\221.html"
@@ -0,0 +1,23 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's → ▁She's | ▁a | ▁woman. | </s> |
---|
▁Ő | 0.069 | 0.095 | 0.046 | -0.452 |
---|
▁nő. | -0.081 | -0.068 | -0.013 | 0.062 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
probability | 0.501 | 0.009 | -0.007 | -0.002 |
---|
+
+
+
+
+
+
diff --git "a/results/counterfactual_n\305\221v\303\251r.html" "b/results/counterfactual_n\305\221v\303\251r.html"
new file mode 100644
index 0000000000000000000000000000000000000000..2ce9cb5daf0cb1b44bf9d34af0c91b9e3ba2d9d4
--- /dev/null
+++ "b/results/counterfactual_n\305\221v\303\251r.html"
@@ -0,0 +1,23 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's → ▁She's | ▁a | ▁nurse. | </s> |
---|
▁Ő | -0.087 | -0.039 | -0.059 | -0.139 |
---|
▁nővér. | 0.055 | 0.033 | 0.011 | -0.009 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
probability | 0.56 | 0.005 | -0.0 | -0.001 |
---|
+
+
+
+
+
+
diff --git "a/results/counterfactual_p\303\251k.html" "b/results/counterfactual_p\303\251k.html"
new file mode 100644
index 0000000000000000000000000000000000000000..b00dcc8a7f6a759569f8dd94d06b2f83fb722311
--- /dev/null
+++ "b/results/counterfactual_p\303\251k.html"
@@ -0,0 +1,23 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's → ▁She's | ▁a | ▁baker. | </s> |
---|
▁Ő | 0.166 | 0.021 | 0.019 | 0.026 |
---|
▁pék. | -0.146 | -0.003 | 0.001 | 0.004 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
probability | -0.299 | 0.0 | 0.003 | 0.002 |
---|
+
+
+
+
+
+
diff --git "a/results/counterfactual_tan\303\241r.html" "b/results/counterfactual_tan\303\241r.html"
new file mode 100644
index 0000000000000000000000000000000000000000..e2d124f0da2ca33d66c5efdf82ec04660487f258
--- /dev/null
+++ "b/results/counterfactual_tan\303\241r.html"
@@ -0,0 +1,23 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's → ▁She's | ▁a | ▁teacher. | </s> |
---|
▁Ő | -0.13 | 0.008 | -0.013 | 0.018 |
---|
▁tanár. | 0.024 | -0.004 | -0.0 | 0.003 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
probability | -0.107 | -0.001 | 0.01 | 0.001 |
---|
+
+
+
+
+
+
diff --git "a/results/counterfactual_tud\303\263s.html" "b/results/counterfactual_tud\303\263s.html"
new file mode 100644
index 0000000000000000000000000000000000000000..2e9c42044d31599f8003fe0efe8def078da087ac
--- /dev/null
+++ "b/results/counterfactual_tud\303\263s.html"
@@ -0,0 +1,23 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's → ▁She's | ▁a | ▁scientist. | </s> |
---|
▁Ő | -0.111 | 0.025 | 0.01 | 0.129 |
---|
▁tudós. | 0.026 | -0.006 | -0.001 | -0.056 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
probability | -0.3 | -0.001 | 0.005 | 0.001 |
---|
+
+
+
+
+
+
diff --git "a/results/counterfactual_vez\303\251rigazgat\303\263.html" "b/results/counterfactual_vez\303\251rigazgat\303\263.html"
new file mode 100644
index 0000000000000000000000000000000000000000..8e6252bf3688f0993b1f80b6c94b28cbbd247e9d
--- /dev/null
+++ "b/results/counterfactual_vez\303\251rigazgat\303\263.html"
@@ -0,0 +1,23 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's → ▁She's | ▁the | ▁CEO. | </s> |
---|
▁Ő | -0.286 | 0.067 | 0.002 | 0.011 |
---|
▁vezérigazgató. | 0.037 | -0.001 | -0.0 | 0.001 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
probability | -0.339 | 0.001 | -0.002 | 0.002 |
---|
+
+
+
+
+
+
diff --git "a/results/simple_esk\303\274v\305\221szervez\305\221_de.html" "b/results/simple_esk\303\274v\305\221szervez\305\221_de.html"
new file mode 100644
index 0000000000000000000000000000000000000000..267bb5907c87232e370287a2087f42b3b7962f2e
--- /dev/null
+++ "b/results/simple_esk\303\274v\305\221szervez\305\221_de.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Hochzeit | splan | er | . | </s> |
---|
▁Ő | 0.841 | 0.296 | 0.242 | 0.083 | 0.007 | 0.02 | 0.08 |
---|
▁esküvő | 0.405 | 0.245 | 0.663 | 0.631 | 0.002 | 0.036 | 0.11 |
---|
szerv | 0.232 | 0.236 | 0.575 | 0.626 | 0.484 | 0.187 | 0.192 |
---|
ező | 0.14 | 0.576 | 0.401 | 0.375 | 0.591 | 0.358 | 0.67 |
---|
. | 0.234 | 0.107 | -0.022 | 0.089 | 0.141 | 0.912 | 0.234 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Hochzeit | splan | er | . | </s> |
---|
▁Er | | 0.673 | 0.017 | 0.01 | 0.047 | 0.026 | -0.25 |
---|
▁ist | | | -0.101 | 0.021 | 0.05 | 0.034 | 0.134 |
---|
▁Hochzeit | | | | 0.231 | 0.123 | -0.007 | 0.47 |
---|
splan | | | | | 0.614 | -0.011 | -0.182 |
---|
er | | | | | | 0.033 | -0.321 |
---|
. | | | | | | | 0.056 |
---|
</s> | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_esk\303\274v\305\221szervez\305\221_de_aggregate.html" "b/results/simple_esk\303\274v\305\221szervez\305\221_de_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..ee508bcf2e7e7c1579dbb788d13bcc4b5e3512cc
--- /dev/null
+++ "b/results/simple_esk\303\274v\305\221szervez\305\221_de_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Hochzeitsplaner. | </s> |
---|
▁Ő | 0.724 | 0.227 | 0.082 | 0.083 |
---|
▁esküvőszervező. | 0.69 | 0.825 | 0.996 | 0.948 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Hochzeitsplaner. | </s> |
---|
▁Er | | 0.518 | 0.023 | -0.262 |
---|
▁ist | | | -0.018 | 0.141 |
---|
▁Hochzeitsplaner. | | | | -0.072 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_esk\303\274v\305\221szervez\305\221_en.html" "b/results/simple_esk\303\274v\305\221szervez\305\221_en.html"
new file mode 100644
index 0000000000000000000000000000000000000000..98698f685157a7096bdf424e68725792eaab6b68
--- /dev/null
+++ "b/results/simple_esk\303\274v\305\221szervez\305\221_en.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁She | ' | s | ▁a | ▁wedding | ▁plan | ner | . | </s> |
---|
▁Ő | 0.719 | 0.114 | 0.072 | 0.072 | 0.24 | 0.102 | -0.035 | 0.03 | -0.557 |
---|
▁esküvő | 0.351 | 0.151 | 0.02 | 0.055 | 0.515 | 0.159 | 0.019 | 0.047 | -0.492 |
---|
szervez | 0.503 | 0.461 | 0.178 | 0.385 | 0.747 | 0.578 | -0.018 | 0.342 | 0.031 |
---|
ő | 0.135 | 0.15 | 0.02 | 0.103 | 0.012 | 0.106 | -0.014 | 0.289 | 0.371 |
---|
. | 0.298 | 0.815 | 0.049 | 0.437 | -0.118 | 0.297 | 0.15 | 0.86 | 0.088 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁She | ' | s | ▁a | ▁wedding | ▁plan | ner | . | </s> |
---|
▁She | | 0.254 | 0.493 | 0.462 | 0.251 | -0.002 | 0.013 | 0.072 | 0.189 |
---|
' | | | 0.847 | 0.215 | 0.168 | 0.027 | 0.015 | 0.066 | 0.223 |
---|
s | | | | 0.618 | -0.115 | 0.156 | 0.098 | 0.188 | -0.041 |
---|
▁a | | | | | -0.038 | 0.058 | 0.029 | 0.019 | 0.292 |
---|
▁wedding | | | | | | 0.709 | 0.071 | 0.017 | 0.255 |
---|
▁plan | | | | | | | 0.98 | 0.017 | 0.226 |
---|
ner | | | | | | | | 0.104 | 0.037 |
---|
. | | | | | | | | | 0.109 |
---|
</s> | | | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_esk\303\274v\305\221szervez\305\221_en_aggregate.html" "b/results/simple_esk\303\274v\305\221szervez\305\221_en_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..1acce0b3faead1a88fbfd5a4afcf9003c8ffc9dd
--- /dev/null
+++ "b/results/simple_esk\303\274v\305\221szervez\305\221_en_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁She's | ▁a | ▁wedding | ▁planner. | </s> |
---|
▁Ő | 0.265 | 0.057 | 0.227 | 0.01 | -0.684 |
---|
▁esküvőszervező. | 0.964 | 0.548 | 0.963 | 0.905 | -0.166 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁She's | ▁a | ▁wedding | ▁planner. | </s> |
---|
▁She's | | 0.835 | 0.142 | 0.21 | 0.475 |
---|
▁a | | | -0.036 | 0.055 | 0.358 |
---|
▁wedding | | | | 0.366 | 0.313 |
---|
▁planner. | | | | | 0.23 |
---|
</s> | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_esk\303\274v\305\221szervez\305\221_fr.html" "b/results/simple_esk\303\274v\305\221szervez\305\221_fr.html"
new file mode 100644
index 0000000000000000000000000000000000000000..07a5340b16e74219a98ccff28c8c3bd0b8c0ab47
--- /dev/null
+++ "b/results/simple_esk\303\274v\305\221szervez\305\221_fr.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁un | ▁ | organisateur | ▁de | ▁mariage | . | </s> |
---|
▁Ő | 0.957 | 0.155 | 0.094 | 0.114 | 0.287 | 0.017 | 0.047 | 0.109 | 0.278 | -0.465 |
---|
▁esküvő | 0.067 | 0.168 | 0.062 | -0.005 | -0.024 | 0.066 | 0.116 | 0.739 | -0.161 | 0.094 |
---|
szerv | -0.078 | 0.023 | -0.072 | 0.019 | 0.247 | 0.411 | -0.11 | 0.054 | 0.076 | 0.162 |
---|
ező | 0.19 | -0.056 | 0.017 | 0.283 | -0.536 | 0.568 | 0.367 | 0.124 | -0.075 | 0.111 |
---|
. | 0.194 | 0.453 | 0.182 | 0.268 | 0.078 | 0.327 | 0.3 | 0.188 | 0.837 | 0.499 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁un | ▁ | organisateur | ▁de | ▁mariage | . | </s> |
---|
▁C | | 0.859 | 0.765 | 0.416 | 0.175 | 0.126 | 0.083 | 0.139 | 0.118 | 0.243 |
---|
' | | | 0.603 | 0.424 | 0.081 | 0.153 | -0.001 | 0.079 | 0.128 | 0.156 |
---|
est | | | | 0.694 | 0.697 | 0.184 | 0.052 | 0.062 | 0.27 | -0.011 |
---|
▁un | | | | | 0.199 | 0.236 | 0.416 | 0.524 | 0.065 | 0.121 |
---|
▁ | | | | | | 0.517 | 0.068 | 0.018 | 0.036 | 0.048 |
---|
organisateur | | | | | | | 0.749 | -0.021 | -0.119 | 0.033 |
---|
▁de | | | | | | | | 0.289 | 0.199 | 0.457 |
---|
▁mariage | | | | | | | | | 0.146 | 0.128 |
---|
. | | | | | | | | | | 0.402 |
---|
</s> | | | | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_esk\303\274v\305\221szervez\305\221_fr_aggregate.html" "b/results/simple_esk\303\274v\305\221szervez\305\221_fr_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..52c8e3a5b21787eb17cdc44b536e27ea2abf6da3
--- /dev/null
+++ "b/results/simple_esk\303\274v\305\221szervez\305\221_fr_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁un | ▁organisateur | ▁de | ▁mariage. | </s> |
---|
▁Ő | 0.624 | 0.086 | 0.276 | 0.046 | 0.212 | -0.415 |
---|
▁esküvőszervező. | 0.781 | 0.381 | 0.182 | 0.52 | 0.821 | 0.567 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁un | ▁organisateur | ▁de | ▁mariage. | </s> |
---|
▁C'est | | 0.921 | 0.878 | 0.105 | 0.316 | 0.329 |
---|
▁un | | | 0.346 | 0.408 | 0.311 | 0.108 |
---|
▁organisateur | | | | 0.742 | -0.06 | 0.067 |
---|
▁de | | | | | 0.283 | 0.407 |
---|
▁mariage. | | | | | | 0.465 |
---|
</s> | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_f\303\251rfi_de.html" "b/results/simple_f\303\251rfi_de.html"
new file mode 100644
index 0000000000000000000000000000000000000000..c1c8216e15e7169a57cd783514440e2b87497bae
--- /dev/null
+++ "b/results/simple_f\303\251rfi_de.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁ein | ▁Mann | . | </s> |
---|
▁Ő | 0.729 | 0.472 | 0.218 | 0.194 | 0.299 | 0.361 |
---|
▁férfi | 0.554 | 0.636 | 0.532 | 0.786 | 0.402 | -0.3 |
---|
. | 0.402 | 0.19 | 0.21 | 0.201 | 0.863 | -0.078 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁ein | ▁Mann | . | </s> |
---|
▁Er | | 0.58 | 0.224 | 0.065 | -0.018 | 0.28 |
---|
▁ist | | | 0.758 | 0.117 | -0.057 | 0.114 |
---|
▁ein | | | | 0.535 | -0.017 | 0.397 |
---|
▁Mann | | | | | -0.009 | -0.595 |
---|
. | | | | | | 0.414 |
---|
</s> | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_f\303\251rfi_de_aggregate.html" "b/results/simple_f\303\251rfi_de_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..7a230e15a117cff9603de978dbcaa7e80dc8a24c
--- /dev/null
+++ "b/results/simple_f\303\251rfi_de_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁ein | ▁Mann. | </s> |
---|
▁Ő | 0.66 | 0.45 | 0.203 | 0.219 | 0.552 |
---|
▁férfi. | 0.751 | 0.701 | 0.645 | 0.945 | -0.078 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁ein | ▁Mann. | </s> |
---|
▁Er | | 0.553 | 0.208 | 0.003 | 0.428 |
---|
▁ist | | | 0.706 | -0.003 | 0.174 |
---|
▁ein | | | | 0.244 | 0.607 |
---|
▁Mann. | | | | | -0.327 |
---|
</s> | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_f\303\251rfi_en.html" "b/results/simple_f\303\251rfi_en.html"
new file mode 100644
index 0000000000000000000000000000000000000000..a4e5364fcf34c22cdc1e9172b084de74ba972a3c
--- /dev/null
+++ "b/results/simple_f\303\251rfi_en.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He | ' | s | ▁a | ▁man | . | </s> |
---|
▁Ő | 0.483 | 0.425 | 0.372 | 0.228 | 0.262 | 0.236 | -0.501 |
---|
▁férfi | 0.866 | 0.508 | 0.46 | 0.487 | 0.762 | 0.498 | 0.704 |
---|
. | 0.128 | 0.433 | 0.059 | 0.115 | -0.048 | 0.807 | 0.108 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He | ' | s | ▁a | ▁man | . | </s> |
---|
▁He | | 0.611 | 0.446 | 0.244 | 0.26 | 0.078 | 0.172 |
---|
' | | | 0.668 | 0.189 | 0.144 | 0.053 | 0.242 |
---|
s | | | | 0.776 | 0.207 | 0.189 | -0.098 |
---|
▁a | | | | | 0.467 | -0.001 | 0.275 |
---|
▁man | | | | | | 0.035 | 0.235 |
---|
. | | | | | | | -0.113 |
---|
</s> | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_f\303\251rfi_en_aggregate.html" "b/results/simple_f\303\251rfi_en_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..d4734ae3081f956df77741baf5a2e3fa682771c0
--- /dev/null
+++ "b/results/simple_f\303\251rfi_en_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's | ▁a | ▁man. | </s> |
---|
▁Ő | 0.486 | 0.187 | 0.181 | -0.496 |
---|
▁férfi. | 0.874 | 0.435 | 0.909 | 0.789 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's | ▁a | ▁man. | </s> |
---|
▁He's | | 0.881 | 0.285 | 0.239 |
---|
▁a | | | 0.243 | 0.273 |
---|
▁man. | | | | 0.012 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_f\303\251rfi_fr.html" "b/results/simple_f\303\251rfi_fr.html"
new file mode 100644
index 0000000000000000000000000000000000000000..3b86e71c0ae6aa7473f7ba6ddd78b5a2fa0d71f2
--- /dev/null
+++ "b/results/simple_f\303\251rfi_fr.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁un | ▁homme | . | </s> |
---|
▁Ő | 0.804 | 0.268 | 0.053 | -0.035 | 0.121 | 0.015 | -0.261 |
---|
▁férfi | 0.388 | 0.194 | 0.304 | 0.207 | 0.935 | 0.138 | 0.175 |
---|
. | 0.451 | 0.34 | 0.202 | 0.201 | -0.009 | 0.958 | 0.327 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁un | ▁homme | . | </s> |
---|
▁C | | 0.88 | 0.789 | 0.541 | 0.083 | 0.016 | 0.274 |
---|
' | | | 0.491 | 0.318 | 0.01 | 0.112 | 0.244 |
---|
est | | | | 0.722 | -0.057 | 0.139 | -0.096 |
---|
▁un | | | | | 0.317 | 0.167 | 0.163 |
---|
▁homme | | | | | | 0.059 | 0.075 |
---|
. | | | | | | | 0.786 |
---|
</s> | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_f\303\251rfi_fr_aggregate.html" "b/results/simple_f\303\251rfi_fr_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..980bf0ca75e20ddf1873cc64f55dbf3fdca3cb01
--- /dev/null
+++ "b/results/simple_f\303\251rfi_fr_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁un | ▁homme. | </s> |
---|
▁Ő | 0.705 | -0.026 | 0.071 | -0.255 |
---|
▁férfi. | 0.709 | 0.249 | 0.97 | 0.3 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁un | ▁homme. | </s> |
---|
▁C'est | | 0.968 | 0.055 | 0.439 |
---|
▁un | | | 0.226 | 0.16 |
---|
▁homme. | | | | 0.791 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_m\303\251rn\303\266k_de.html" "b/results/simple_m\303\251rn\303\266k_de.html"
new file mode 100644
index 0000000000000000000000000000000000000000..28e89e31a936ca5848979a966add84ff3759e006
--- /dev/null
+++ "b/results/simple_m\303\251rn\303\266k_de.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Ingenieur | . | </s> |
---|
▁Ő | 0.73 | 0.46 | 0.231 | 0.012 | 0.554 |
---|
▁ | 0.56 | 0.695 | 0.165 | -0.013 | 0.233 |
---|
mérnök | 0.346 | 0.436 | 0.738 | 0.559 | 0.43 |
---|
. | 0.182 | 0.228 | 0.226 | 0.817 | 0.451 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Ingenieur | . | </s> |
---|
▁Er | | 0.253 | 0.243 | 0.064 | -0.006 |
---|
▁ist | | | 0.515 | 0.119 | -0.006 |
---|
▁Ingenieur | | | | -0.027 | 0.474 |
---|
. | | | | | 0.16 |
---|
</s> | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_m\303\251rn\303\266k_de_aggregate.html" "b/results/simple_m\303\251rn\303\266k_de_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..20015c89611d5a0b4c0d363788603937bddf1717
--- /dev/null
+++ "b/results/simple_m\303\251rn\303\266k_de_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Ingenieur. | </s> |
---|
▁Ő | 0.656 | 0.409 | 0.093 | 0.534 |
---|
▁mérnök. | 0.754 | 0.884 | 0.955 | 0.57 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Ingenieur. | </s> |
---|
▁Er | | 0.225 | 0.12 | -0.005 |
---|
▁ist | | | 0.257 | -0.006 |
---|
▁Ingenieur. | | | | 0.624 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_m\303\251rn\303\266k_en.html" "b/results/simple_m\303\251rn\303\266k_en.html"
new file mode 100644
index 0000000000000000000000000000000000000000..7a66249a25cec1d40665fb39c7382bdc25f51a62
--- /dev/null
+++ "b/results/simple_m\303\251rn\303\266k_en.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He | ' | s | ▁an | ▁engineer | . | </s> |
---|
▁Ő | 0.422 | 0.323 | 0.159 | 0.082 | 0.134 | 0.096 | -0.427 |
---|
▁mérnök | 0.906 | 0.687 | 0.438 | -0.006 | 0.974 | 0.664 | 0.719 |
---|
. | 0.024 | 0.476 | 0.026 | 0.069 | -0.061 | 0.648 | 0.178 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He | ' | s | ▁an | ▁engineer | . | </s> |
---|
▁He | | 0.444 | 0.548 | 0.431 | 0.049 | 0.105 | 0.131 |
---|
' | | | 0.695 | 0.304 | 0.061 | 0.094 | 0.282 |
---|
s | | | | 0.843 | 0.038 | 0.315 | -0.149 |
---|
▁an | | | | | 0.148 | 0.045 | 0.384 |
---|
▁engineer | | | | | | 0.095 | 0.006 |
---|
. | | | | | | | -0.046 |
---|
</s> | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_m\303\251rn\303\266k_en_aggregate.html" "b/results/simple_m\303\251rn\303\266k_en_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..493e2c144700b64f744e51794288f51a48849398
--- /dev/null
+++ "b/results/simple_m\303\251rn\303\266k_en_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's | ▁an | ▁engineer. | </s> |
---|
▁Ő | 0.323 | 0.061 | 0.101 | -0.436 |
---|
▁mérnök. | 0.946 | 0.042 | 0.963 | 0.778 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's | ▁an | ▁engineer. | </s> |
---|
▁He's | | 0.997 | 0.219 | 0.19 |
---|
▁an | | | 0.118 | 0.392 |
---|
▁engineer. | | | | -0.123 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_m\303\251rn\303\266k_fr.html" "b/results/simple_m\303\251rn\303\266k_fr.html"
new file mode 100644
index 0000000000000000000000000000000000000000..1e2276c1f3992868eb19043eddd41733a600fb3b
--- /dev/null
+++ "b/results/simple_m\303\251rn\303\266k_fr.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁un | ▁ | ingénieur | . | </s> |
---|
▁Ő | 0.822 | 0.233 | 0.107 | 0.137 | 0.484 | 0.201 | 0.134 | -0.046 |
---|
▁mérnök | -0.085 | -0.018 | 0.124 | 0.696 | 0.488 | 0.619 | -0.054 | 0.003 |
---|
. | 0.564 | 0.209 | 0.032 | 0.495 | 0.576 | 0.247 | 0.92 | 0.464 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁un | ▁ | ingénieur | . | </s> |
---|
▁C | | 0.95 | 0.832 | 0.369 | 0.13 | 0.122 | -0.015 | 0.25 |
---|
' | | | 0.529 | 0.179 | -0.017 | 0.092 | 0.059 | 0.285 |
---|
est | | | | 0.288 | 0.397 | 0.061 | 0.102 | -0.011 |
---|
▁un | | | | | 0.143 | 0.18 | 0.343 | 0.339 |
---|
▁ | | | | | | 0.675 | -0.024 | -0.032 |
---|
ingénieur | | | | | | | -0.018 | 0.097 |
---|
. | | | | | | | | 0.716 |
---|
</s> | | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_m\303\251rn\303\266k_fr_aggregate.html" "b/results/simple_m\303\251rn\303\266k_fr_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..904a95446db0d1dd92568d363011ff0cf158732b
--- /dev/null
+++ "b/results/simple_m\303\251rn\303\266k_fr_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁un | ▁ingénieur. | </s> |
---|
▁Ő | 0.892 | 0.11 | 0.213 | -0.045 |
---|
▁mérnök. | 0.453 | 0.836 | 0.927 | 0.476 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁un | ▁ingénieur. | </s> |
---|
▁C'est | | 0.537 | 0.211 | 0.497 |
---|
▁un | | | 0.225 | 0.329 |
---|
▁ingénieur. | | | | 0.646 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_n\305\221_de.html" "b/results/simple_n\305\221_de.html"
new file mode 100644
index 0000000000000000000000000000000000000000..0ec2e406ead7861866eead49ed65a4883e413ee4
--- /dev/null
+++ "b/results/simple_n\305\221_de.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Sie | ▁ist | ▁eine | ▁Frau | . | </s> |
---|
▁Ő | 0.749 | 0.372 | 0.459 | 0.271 | 0.12 | -0.046 |
---|
▁nő | 0.541 | 0.375 | 0.479 | 0.543 | 0.409 | 0.379 |
---|
. | 0.382 | 0.317 | 0.402 | 0.337 | 0.896 | 0.256 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Sie | ▁ist | ▁eine | ▁Frau | . | </s> |
---|
▁Sie | | 0.788 | 0.316 | 0.052 | 0.028 | 0.247 |
---|
▁ist | | | 0.547 | 0.273 | -0.007 | -0.086 |
---|
▁eine | | | | 0.664 | 0.11 | -0.188 |
---|
▁Frau | | | | | 0.05 | -0.416 |
---|
. | | | | | | 0.715 |
---|
</s> | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_n\305\221_de_aggregate.html" "b/results/simple_n\305\221_de_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..2826af883596d5226a7961a0bafe7a138144350c
--- /dev/null
+++ "b/results/simple_n\305\221_de_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Sie | ▁ist | ▁eine | ▁Frau. | </s> |
---|
▁Ő | 0.657 | 0.35 | 0.424 | 0.161 | -0.057 |
---|
▁nő. | 0.754 | 0.572 | 0.692 | 0.906 | 0.886 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Sie | ▁ist | ▁eine | ▁Frau. | </s> |
---|
▁Sie | | 0.742 | 0.292 | 0.035 | 0.308 |
---|
▁ist | | | 0.506 | 0.157 | -0.107 |
---|
▁eine | | | | 0.358 | -0.234 |
---|
▁Frau. | | | | | 0.227 |
---|
</s> | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_n\305\221_en.html" "b/results/simple_n\305\221_en.html"
new file mode 100644
index 0000000000000000000000000000000000000000..9c1fe3c800bddefa7656c0bbb5656e94d488fdff
--- /dev/null
+++ "b/results/simple_n\305\221_en.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁She | ' | s | ▁a | ▁woman | . | </s> |
---|
▁Ő | 0.813 | 0.637 | 0.318 | 0.254 | 0.372 | 0.236 | -0.55 |
---|
▁nő | 0.577 | 0.37 | 0.157 | 0.259 | 0.495 | 0.63 | 0.396 |
---|
. | 0.077 | 0.206 | 0.063 | 0.107 | 0.011 | 0.73 | 0.241 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁She | ' | s | ▁a | ▁woman | . | </s> |
---|
▁She | | 0.644 | 0.37 | 0.267 | 0.413 | 0.052 | 0.256 |
---|
' | | | 0.857 | 0.185 | 0.179 | 0.04 | 0.414 |
---|
s | | | | 0.866 | 0.305 | 0.073 | -0.089 |
---|
▁a | | | | | 0.567 | -0.003 | 0.371 |
---|
▁woman | | | | | | 0.069 | 0.315 |
---|
. | | | | | | | 0.021 |
---|
</s> | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_n\305\221_en_aggregate.html" "b/results/simple_n\305\221_en_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..5d56dcbd9dfc51d649c855e5530b54cf856014ac
--- /dev/null
+++ "b/results/simple_n\305\221_en_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁She's | ▁a | ▁woman. | </s> |
---|
▁Ő | 0.788 | 0.206 | 0.246 | -0.55 |
---|
▁nő. | 0.616 | 0.248 | 0.847 | 0.51 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁She's | ▁a | ▁woman. | </s> |
---|
▁She's | | 0.946 | 0.381 | 0.469 |
---|
▁a | | | 0.276 | 0.372 |
---|
▁woman. | | | | 0.281 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_n\305\221_fr.html" "b/results/simple_n\305\221_fr.html"
new file mode 100644
index 0000000000000000000000000000000000000000..f3648a7acafa3604c1713285b4e3fe606f6e431b
--- /dev/null
+++ "b/results/simple_n\305\221_fr.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁une | ▁femme | . | </s> |
---|
▁Ő | 0.782 | 0.186 | 0.508 | 0.324 | -0.009 | -0.051 | -0.17 |
---|
▁nő | 0.277 | 0.39 | 0.394 | 0.119 | -0.049 | 0.194 | 0.617 |
---|
. | 0.558 | 0.175 | 0.15 | 0.288 | 0.025 | 0.861 | 0.257 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁une | ▁femme | . | </s> |
---|
▁C | | 0.885 | 0.607 | 0.547 | 0.102 | 0.054 | 0.233 |
---|
' | | | 0.442 | 0.392 | 0.049 | 0.16 | 0.169 |
---|
est | | | | 0.588 | -0.024 | 0.122 | -0.124 |
---|
▁une | | | | | 0.992 | 0.404 | 0.163 |
---|
▁femme | | | | | | 0.114 | 0.053 |
---|
. | | | | | | | 0.631 |
---|
</s> | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_n\305\221_fr_aggregate.html" "b/results/simple_n\305\221_fr_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..7c7879e23e107d373893dac6c4ab8a495225e0bf
--- /dev/null
+++ "b/results/simple_n\305\221_fr_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁une | ▁femme. | </s> |
---|
▁Ő | 0.723 | 0.248 | -0.012 | -0.153 |
---|
▁nő. | 0.691 | 0.268 | 0.422 | 0.723 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁une | ▁femme. | </s> |
---|
▁C'est | | 0.931 | 0.075 | 0.29 |
---|
▁une | | | 0.904 | 0.147 |
---|
▁femme. | | | | 0.591 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_n\305\221v\303\251r_de.html" "b/results/simple_n\305\221v\303\251r_de.html"
new file mode 100644
index 0000000000000000000000000000000000000000..4064ab267d8c317370589be026eeac700a31a572
--- /dev/null
+++ "b/results/simple_n\305\221v\303\251r_de.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Sie | ▁ist | ▁ | Krankenschwester | . | </s> |
---|
▁Ő | 0.7 | 0.689 | 0.033 | 0.156 | 0.187 | 0.179 |
---|
▁nővér | 0.417 | 0.603 | 0.553 | 0.248 | 0.476 | -0.21 |
---|
. | 0.579 | 0.214 | 0.131 | 0.194 | 0.809 | 0.135 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Sie | ▁ist | ▁ | Krankenschwester | . | </s> |
---|
▁Sie | | 0.34 | 0.375 | 0.11 | 0.083 | 0.195 |
---|
▁ist | | | 0.732 | 0.163 | 0.119 | -0.102 |
---|
▁ | | | | 0.915 | 0.15 | -0.095 |
---|
Krankenschwester | | | | | 0.202 | -0.27 |
---|
. | | | | | | 0.88 |
---|
</s> | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_n\305\221v\303\251r_de_aggregate.html" "b/results/simple_n\305\221v\303\251r_de_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..00e6a6660916f1dc34e3263560fdeee564ac8863
--- /dev/null
+++ "b/results/simple_n\305\221v\303\251r_de_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Sie | ▁ist | ▁Krankenschwester. | </s> |
---|
▁Ő | 0.649 | 0.644 | 0.08 | 0.323 |
---|
▁nővér. | 0.761 | 0.696 | 0.878 | 0.326 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Sie | ▁ist | ▁Krankenschwester. | </s> |
---|
▁Sie | | 0.318 | 0.226 | 0.352 |
---|
▁ist | | | 0.414 | -0.184 |
---|
▁Krankenschwester. | | | | 0.795 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_n\305\221v\303\251r_en.html" "b/results/simple_n\305\221v\303\251r_en.html"
new file mode 100644
index 0000000000000000000000000000000000000000..fe5ca77d900553e58785bf1a867254e058809973
--- /dev/null
+++ "b/results/simple_n\305\221v\303\251r_en.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁She | ' | s | ▁a | ▁nurse | . | </s> |
---|
▁Ő | 0.651 | 0.491 | 0.336 | 0.469 | 0.644 | 0.183 | -0.35 |
---|
▁nővér | 0.732 | 0.497 | 0.283 | 0.538 | 0.126 | 0.551 | 0.742 |
---|
. | 0.201 | 0.416 | 0.054 | 0.141 | -0.068 | 0.802 | 0.409 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁She | ' | s | ▁a | ▁nurse | . | </s> |
---|
▁She | | 0.582 | 0.446 | 0.52 | 0.484 | 0.055 | 0.069 |
---|
' | | | 0.778 | 0.2 | 0.249 | 0.048 | 0.284 |
---|
s | | | | 0.401 | 0.148 | 0.113 | -0.108 |
---|
▁a | | | | | 0.496 | 0.013 | 0.21 |
---|
▁nurse | | | | | | 0.045 | 0.107 |
---|
. | | | | | | | -0.087 |
---|
</s> | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_n\305\221v\303\251r_en_aggregate.html" "b/results/simple_n\305\221v\303\251r_en_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..dc67c4e238f29c21b1126d6766d4f2dff0ae64f8
--- /dev/null
+++ "b/results/simple_n\305\221v\303\251r_en_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁She's | ▁a | ▁nurse. | </s> |
---|
▁Ő | 0.497 | 0.382 | 0.479 | -0.327 |
---|
▁nővér. | 0.868 | 0.589 | 0.594 | 0.888 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁She's | ▁a | ▁nurse. | </s> |
---|
▁She's | | 0.712 | 0.545 | 0.248 |
---|
▁a | | | 0.347 | 0.197 |
---|
▁nurse. | | | | 0.072 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_n\305\221v\303\251r_fr.html" "b/results/simple_n\305\221v\303\251r_fr.html"
new file mode 100644
index 0000000000000000000000000000000000000000..d2bdbfb291757dcc3261cb7f10baf26857169ad8
--- /dev/null
+++ "b/results/simple_n\305\221v\303\251r_fr.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁une | ▁infirmière | . | </s> |
---|
▁Ő | 0.897 | 0.08 | 0.039 | 0.176 | 0.266 | 0.034 | -0.162 |
---|
▁nővér | 0.297 | -0.082 | 0.058 | 0.014 | 0.4 | -0.093 | 0.433 |
---|
. | 0.327 | 0.195 | 0.408 | 0.17 | -0.036 | 0.977 | 0.345 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁une | ▁infirmière | . | </s> |
---|
▁C | | 0.974 | 0.743 | 0.664 | 0.312 | 0.051 | 0.211 |
---|
' | | | 0.526 | 0.386 | 0.011 | 0.105 | 0.202 |
---|
est | | | | 0.592 | -0.203 | 0.047 | -0.092 |
---|
▁une | | | | | 0.793 | 0.121 | 0.244 |
---|
▁infirmière | | | | | | 0.069 | 0.057 |
---|
. | | | | | | | 0.715 |
---|
</s> | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_n\305\221v\303\251r_fr_aggregate.html" "b/results/simple_n\305\221v\303\251r_fr_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..c767d80a1567d89acf230ba869b0b5db8af3bc6c
--- /dev/null
+++ "b/results/simple_n\305\221v\303\251r_fr_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁une | ▁infirmière. | </s> |
---|
▁Ő | 0.812 | 0.134 | 0.168 | -0.128 |
---|
▁nővér. | 0.583 | 0.05 | 0.837 | 0.556 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁une | ▁infirmière. | </s> |
---|
▁C'est | | 0.99 | 0.016 | 0.345 |
---|
▁une | | | 0.52 | 0.193 |
---|
▁infirmière. | | | | 0.72 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_p\303\251k_de.html" "b/results/simple_p\303\251k_de.html"
new file mode 100644
index 0000000000000000000000000000000000000000..19d102b63e4b267dd12709a8a1dee95641e9cf3e
--- /dev/null
+++ "b/results/simple_p\303\251k_de.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Bäcker | . | </s> |
---|
▁Ő | 0.668 | 0.42 | 0.113 | 0.096 | 0.461 |
---|
▁p | 0.576 | 0.308 | 0.964 | 0.196 | -0.218 |
---|
ék | 0.282 | 0.668 | 0.196 | 0.442 | -0.338 |
---|
. | 0.378 | 0.48 | 0.139 | 0.798 | 0.115 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Bäcker | . | </s> |
---|
▁Er | | 0.228 | 0.004 | 0.171 | 0.115 |
---|
▁ist | | | 0.022 | 0.299 | 0.095 |
---|
▁Bäcker | | | | 0.041 | 0.378 |
---|
. | | | | | 0.669 |
---|
</s> | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_p\303\251k_de_aggregate.html" "b/results/simple_p\303\251k_de_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..0e1a3d112b4539b94315503540dda1f79e7fe3eb
--- /dev/null
+++ "b/results/simple_p\303\251k_de_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Bäcker. | </s> |
---|
▁Ő | 0.596 | 0.355 | 0.098 | 0.388 |
---|
▁pék. | 0.803 | 0.915 | 0.985 | -0.451 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Bäcker. | </s> |
---|
▁Er | | 0.193 | 0.064 | 0.097 |
---|
▁ist | | | 0.126 | 0.08 |
---|
▁Bäcker. | | | | 0.794 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_p\303\251k_en.html" "b/results/simple_p\303\251k_en.html"
new file mode 100644
index 0000000000000000000000000000000000000000..f6c2eb993d1f317cbb17460d9412212da8fed4f8
--- /dev/null
+++ "b/results/simple_p\303\251k_en.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He | ' | s | ▁a | ▁baker | . | </s> |
---|
▁Ő | 0.398 | 0.491 | 0.219 | 0.006 | 0.002 | 0.11 | -0.685 |
---|
▁p | 0.36 | 0.523 | 0.192 | 0.08 | 0.375 | 0.213 | 0.347 |
---|
ék | 0.759 | 0.347 | 0.217 | 0.151 | 0.85 | 0.86 | 0.326 |
---|
. | 0.368 | 0.245 | 0.071 | 0.515 | 0.052 | 0.393 | 0.228 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He | ' | s | ▁a | ▁baker | . | </s> |
---|
▁He | | 0.552 | 0.662 | 0.206 | 0.059 | 0.068 | 0.276 |
---|
' | | | 0.651 | 0.2 | 0.14 | 0.079 | 0.246 |
---|
s | | | | 0.79 | 0.304 | 0.12 | -0.155 |
---|
▁a | | | | | 0.135 | 0.151 | 0.284 |
---|
▁baker | | | | | | 0.037 | 0.014 |
---|
. | | | | | | | -0.104 |
---|
</s> | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_p\303\251k_en_aggregate.html" "b/results/simple_p\303\251k_en_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..bc2d49e0538a6349975a82b774c920a32f728035
--- /dev/null
+++ "b/results/simple_p\303\251k_en_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's | ▁a | ▁baker. | </s> |
---|
▁Ő | 0.461 | 0.005 | 0.025 | -0.633 |
---|
▁pék. | 0.887 | 0.463 | 0.959 | 0.67 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's | ▁a | ▁baker. | </s> |
---|
▁He's | | 0.886 | 0.268 | 0.204 |
---|
▁a | | | 0.088 | 0.262 |
---|
▁baker. | | | | -0.199 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_p\303\251k_fr.html" "b/results/simple_p\303\251k_fr.html"
new file mode 100644
index 0000000000000000000000000000000000000000..7d631401d797d4fd7a2a85bcb56dbaff787a3d78
--- /dev/null
+++ "b/results/simple_p\303\251k_fr.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁un | ▁bo | ula | nger | . | </s> |
---|
▁Ő | 0.856 | 0.298 | 0.018 | 0.304 | -0.082 | -0.006 | 0.019 | 0.118 | 0.248 |
---|
▁p | 0.333 | 0.03 | 0.274 | 0.701 | 0.895 | 0.954 | 0.414 | 0.032 | 0.168 |
---|
ék | 0.164 | -0.028 | -0.113 | -0.297 | 0.435 | 0.26 | 0.018 | -0.01 | -0.299 |
---|
. | 0.359 | 0.141 | -0.019 | 0.231 | -0.04 | -0.129 | 0.007 | 0.965 | 0.053 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁un | ▁bo | ula | nger | . | </s> |
---|
▁C | | 0.943 | 0.771 | 0.366 | -0.032 | -0.01 | 0.003 | 0.06 | 0.081 |
---|
' | | | 0.563 | 0.209 | -0.016 | 0.011 | 0.017 | 0.122 | 0.14 |
---|
est | | | | 0.31 | -0.014 | -0.001 | 0.019 | 0.135 | 0.075 |
---|
▁un | | | | | 0.014 | 0.014 | 0.022 | 0.091 | 0.435 |
---|
▁bo | | | | | | 0.072 | 0.378 | 0.071 | 0.002 |
---|
ula | | | | | | | 0.827 | 0.008 | -0.032 |
---|
nger | | | | | | | | 0.065 | 0.078 |
---|
. | | | | | | | | | 0.768 |
---|
</s> | | | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_p\303\251k_fr_aggregate.html" "b/results/simple_p\303\251k_fr_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..d5110b59f022560830b0eec0478e7c1267af5f1c
--- /dev/null
+++ "b/results/simple_p\303\251k_fr_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁un | ▁boulanger. | </s> |
---|
▁Ő | 0.793 | 0.351 | 0.003 | 0.25 |
---|
▁pék. | 0.609 | 0.457 | 0.995 | -0.137 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁un | ▁boulanger. | </s> |
---|
▁C'est | | 0.817 | 0.09 | 0.302 |
---|
▁un | | | 0.039 | 0.439 |
---|
▁boulanger. | | | | 0.797 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_tan\303\241r_de.html" "b/results/simple_tan\303\241r_de.html"
new file mode 100644
index 0000000000000000000000000000000000000000..835aee1a5c592b288e2ab25b8e07c76a233b5bc2
--- /dev/null
+++ "b/results/simple_tan\303\241r_de.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Lehrer | . | </s> |
---|
▁Ő | 0.806 | 0.025 | 0.111 | 0.158 | 0.229 |
---|
▁tanár | 0.545 | 0.373 | 0.673 | 0.551 | 0.516 |
---|
. | 0.231 | 0.101 | -0.018 | 0.814 | 0.507 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Lehrer | . | </s> |
---|
▁Er | | 0.922 | 0.704 | 0.048 | -0.534 |
---|
▁ist | | | 0.196 | 0.041 | -0.037 |
---|
▁Lehrer | | | | -0.072 | 0.343 |
---|
. | | | | | -0.138 |
---|
</s> | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_tan\303\241r_de_aggregate.html" "b/results/simple_tan\303\241r_de_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..d17c3bf8d2b9b3b98ac809225df233ccc29826bd
--- /dev/null
+++ "b/results/simple_tan\303\241r_de_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Lehrer. | </s> |
---|
▁Ő | 0.774 | 0.025 | 0.139 | 0.226 |
---|
▁tanár. | 0.633 | 0.431 | 0.903 | 0.819 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Lehrer. | </s> |
---|
▁Er | | 0.902 | 0.382 | -0.525 |
---|
▁ist | | | 0.141 | -0.036 |
---|
▁Lehrer. | | | | -0.027 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_tan\303\241r_en.html" "b/results/simple_tan\303\241r_en.html"
new file mode 100644
index 0000000000000000000000000000000000000000..5c4589cbf9c6b376121572bc0da02a8b5c69da7e
--- /dev/null
+++ "b/results/simple_tan\303\241r_en.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He | ' | s | ▁a | ▁teacher | . | </s> |
---|
▁Ő | 0.492 | 0.22 | 0.162 | 0.109 | 0.412 | 0.131 | -0.576 |
---|
▁tanár | 0.866 | 0.763 | 0.266 | 0.433 | 0.769 | 0.709 | 0.472 |
---|
. | 0.086 | 0.59 | 0.025 | 0.102 | -0.104 | 0.648 | 0.427 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He | ' | s | ▁a | ▁teacher | . | </s> |
---|
▁He | | 0.147 | 0.404 | 0.307 | 0.331 | 0.063 | 0.045 |
---|
' | | | 0.86 | 0.273 | 0.233 | 0.079 | 0.411 |
---|
s | | | | 0.788 | 0.198 | 0.21 | -0.025 |
---|
▁a | | | | | -0.161 | 0.035 | 0.226 |
---|
▁teacher | | | | | | 0.074 | 0.2 |
---|
. | | | | | | | 0.019 |
---|
</s> | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_tan\303\241r_en_aggregate.html" "b/results/simple_tan\303\241r_en_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..0f79d82ee46a1a44b951b6c5f137edfe7c927138
--- /dev/null
+++ "b/results/simple_tan\303\241r_en_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's | ▁a | ▁teacher. | </s> |
---|
▁Ő | 0.263 | 0.084 | 0.272 | -0.566 |
---|
▁tanár. | 0.965 | 0.365 | 0.863 | 0.707 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's | ▁a | ▁teacher. | </s> |
---|
▁He's | | 0.927 | 0.414 | 0.291 |
---|
▁a | | | -0.098 | 0.222 |
---|
▁teacher. | | | | 0.217 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_tan\303\241r_fr.html" "b/results/simple_tan\303\241r_fr.html"
new file mode 100644
index 0000000000000000000000000000000000000000..ce36f313bb74caed51f285e172d0bb863ee63773
--- /dev/null
+++ "b/results/simple_tan\303\241r_fr.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁un | ▁professeur | . | </s> |
---|
▁Ő | 0.773 | 0.363 | 0.108 | 0.08 | 0.195 | 0.004 | -0.559 |
---|
▁tanár | -0.278 | -0.052 | 0.037 | 0.002 | 0.307 | 0.013 | 0.233 |
---|
. | 0.57 | 0.18 | 0.085 | 0.286 | 0.126 | 0.988 | 0.249 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁un | ▁professeur | . | </s> |
---|
▁C | | 0.913 | 0.819 | 0.43 | 0.22 | -0.015 | 0.288 |
---|
' | | | 0.556 | 0.301 | -0.029 | 0.029 | 0.202 |
---|
est | | | | 0.798 | -0.006 | 0.068 | -0.03 |
---|
▁un | | | | | 0.896 | 0.122 | 0.126 |
---|
▁professeur | | | | | | 0.061 | 0.167 |
---|
. | | | | | | | 0.635 |
---|
</s> | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_tan\303\241r_fr_aggregate.html" "b/results/simple_tan\303\241r_fr_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..3a003c2246cd1cff9e806abb1329c9a69bf9377a
--- /dev/null
+++ "b/results/simple_tan\303\241r_fr_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁un | ▁professeur. | </s> |
---|
▁Ő | 0.994 | 0.062 | 0.044 | -0.482 |
---|
▁tanár. | 0.109 | 0.182 | 0.93 | 0.411 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁un | ▁professeur. | </s> |
---|
▁C'est | | 0.981 | 0.067 | 0.403 |
---|
▁un | | | 0.359 | 0.109 |
---|
▁professeur. | | | | 0.652 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_tud\303\263s_de.html" "b/results/simple_tud\303\263s_de.html"
new file mode 100644
index 0000000000000000000000000000000000000000..ff573f2448ae2c84e30921126a88988ec8b967c6
--- /dev/null
+++ "b/results/simple_tud\303\263s_de.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Wissenschaftler | . | </s> |
---|
▁Ő | 0.825 | 0.285 | 0.337 | 0.118 | 0.398 |
---|
▁tudós | 0.511 | 0.873 | 0.873 | 0.56 | -0.458 |
---|
. | 0.241 | 0.185 | 0.323 | 0.817 | 0.564 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Wissenschaftler | . | </s> |
---|
▁Er | | 0.349 | 0.057 | 0.035 | 0.351 |
---|
▁ist | | | 0.128 | 0.018 | 0.191 |
---|
▁Wissenschaftler | | | | -0.057 | -0.393 |
---|
. | | | | | 0.017 |
---|
</s> | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_tud\303\263s_de_aggregate.html" "b/results/simple_tud\303\263s_de_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..078ddd792f8cef5e8c36225273615a112c3fb369
--- /dev/null
+++ "b/results/simple_tud\303\263s_de_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Wissenschaftler. | </s> |
---|
▁Ő | 0.796 | 0.25 | 0.197 | 0.543 |
---|
▁tudós. | 0.605 | 0.918 | 0.978 | 0.572 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Wissenschaftler. | </s> |
---|
▁Er | | 0.306 | 0.04 | 0.478 |
---|
▁ist | | | 0.056 | 0.261 |
---|
▁Wissenschaftler. | | | | -0.285 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_tud\303\263s_en.html" "b/results/simple_tud\303\263s_en.html"
new file mode 100644
index 0000000000000000000000000000000000000000..2a6452755bb43166b08d9ef570000b03d9cc8aaf
--- /dev/null
+++ "b/results/simple_tud\303\263s_en.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He | ' | s | ▁a | ▁scientist | . | </s> |
---|
▁Ő | 0.399 | 0.234 | 0.206 | 0.041 | 0.111 | 0.145 | -0.526 |
---|
▁tudós | 0.915 | 0.703 | 0.549 | 0.162 | 0.849 | 0.642 | 0.486 |
---|
. | 0.057 | 0.441 | 0.097 | 0.017 | -0.105 | 0.608 | 0.049 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He | ' | s | ▁a | ▁scientist | . | </s> |
---|
▁He | | 0.507 | 0.618 | 0.24 | 0.127 | 0.099 | 0.327 |
---|
' | | | 0.515 | 0.232 | 0.231 | 0.099 | 0.523 |
---|
s | | | | 0.928 | 0.405 | 0.401 | -0.048 |
---|
▁a | | | | | 0.147 | 0.048 | 0.312 |
---|
▁scientist | | | | | | 0.119 | 0.054 |
---|
. | | | | | | | 0.044 |
---|
</s> | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_tud\303\263s_en_aggregate.html" "b/results/simple_tud\303\263s_en_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..413ff74facaf5b9a6a18684426305eac8988aafb
--- /dev/null
+++ "b/results/simple_tud\303\263s_en_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's | ▁a | ▁scientist. | </s> |
---|
▁Ő | 0.313 | 0.031 | 0.084 | -0.552 |
---|
▁tudós. | 0.95 | 0.118 | 0.868 | 0.479 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's | ▁a | ▁scientist. | </s> |
---|
▁He's | | 0.993 | 0.48 | 0.58 |
---|
▁a | | | 0.098 | 0.328 |
---|
▁scientist. | | | | 0.149 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_tud\303\263s_fr.html" "b/results/simple_tud\303\263s_fr.html"
new file mode 100644
index 0000000000000000000000000000000000000000..c8360ed5fa58590d19b93b4404ac90ba52edb1e3
--- /dev/null
+++ "b/results/simple_tud\303\263s_fr.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁un | ▁scientifique | . | </s> |
---|
▁Ő | 0.719 | 0.176 | 0.373 | 0.13 | 0.212 | 0.269 | -0.085 |
---|
▁tudós | 0.029 | 0.025 | 0.169 | 0.104 | 0.382 | -0.0 | 0.49 |
---|
. | 0.695 | 0.104 | 0.074 | 0.207 | -0.078 | 0.933 | 0.227 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁un | ▁scientifique | . | </s> |
---|
▁C | | 0.979 | 0.744 | 0.561 | 0.195 | -0.005 | 0.409 |
---|
' | | | 0.522 | 0.358 | -0.023 | 0.107 | 0.305 |
---|
est | | | | 0.698 | -0.195 | 0.073 | -0.122 |
---|
▁un | | | | | 0.852 | 0.194 | 0.274 |
---|
▁scientifique | | | | | | 0.05 | 0.084 |
---|
. | | | | | | | 0.587 |
---|
</s> | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_tud\303\263s_fr_aggregate.html" "b/results/simple_tud\303\263s_fr_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..ee5b4452ff71c6b1e3a2f9ac6fc01b9b8640eec0
--- /dev/null
+++ "b/results/simple_tud\303\263s_fr_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁un | ▁scientifique. | </s> |
---|
▁Ő | 0.851 | 0.103 | 0.225 | -0.074 |
---|
▁tudós. | 0.525 | 0.191 | 0.751 | 0.576 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁un | ▁scientifique. | </s> |
---|
▁C'est | | 0.976 | -0.066 | 0.522 |
---|
▁un | | | 0.618 | 0.237 |
---|
▁scientifique. | | | | 0.578 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_vez\303\251rigazgat\303\263_de.html" "b/results/simple_vez\303\251rigazgat\303\263_de.html"
new file mode 100644
index 0000000000000000000000000000000000000000..71302aee6871b00867fe828862f83b89b520afb4
--- /dev/null
+++ "b/results/simple_vez\303\251rigazgat\303\263_de.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Geschäftsführer | . | </s> |
---|
▁Ő | 0.345 | 0.336 | 0.19 | 0.062 | 0.116 |
---|
▁vezérigazgató | 0.763 | 0.909 | 0.922 | 0.578 | -0.46 |
---|
. | 0.547 | 0.155 | 0.298 | 0.81 | 0.234 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Geschäftsführer | . | </s> |
---|
▁Er | | 0.194 | 0.06 | 0.06 | 0.655 |
---|
▁ist | | | 0.148 | 0.046 | 0.136 |
---|
▁Geschäftsführer | | | | 0.01 | -0.427 |
---|
. | | | | | 0.301 |
---|
</s> | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_vez\303\251rigazgat\303\263_de_aggregate.html" "b/results/simple_vez\303\251rigazgat\303\263_de_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..ecaa63401ee8c62b6bb6607056825f4e5acc1308
--- /dev/null
+++ "b/results/simple_vez\303\251rigazgat\303\263_de_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Geschäftsführer. | </s> |
---|
▁Ő | 0.274 | 0.305 | 0.076 | 0.154 |
---|
▁vezérigazgató. | 0.962 | 0.936 | 0.994 | 0.106 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁Er | ▁ist | ▁Geschäftsführer. | </s> |
---|
▁Er | | 0.176 | 0.049 | 0.869 |
---|
▁ist | | | 0.06 | 0.181 |
---|
▁Geschäftsführer. | | | | -0.42 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_vez\303\251rigazgat\303\263_en.html" "b/results/simple_vez\303\251rigazgat\303\263_en.html"
new file mode 100644
index 0000000000000000000000000000000000000000..d66f1cc48cef97d190a4735ca73283cccadea8d6
--- /dev/null
+++ "b/results/simple_vez\303\251rigazgat\303\263_en.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He | ' | s | ▁the | ▁CEO | . | </s> |
---|
▁Ő | 0.559 | 0.177 | 0.282 | -0.021 | 0.477 | 0.125 | -0.473 |
---|
▁vezérigazgató | 0.772 | 0.651 | 0.157 | 0.466 | 0.641 | 0.629 | 0.666 |
---|
. | 0.302 | 0.737 | 0.017 | 0.867 | 0.156 | 0.724 | 0.312 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He | ' | s | ▁the | ▁CEO | . | </s> |
---|
▁He | | 0.036 | 0.454 | 0.084 | 0.324 | 0.103 | 0.046 |
---|
' | | | 0.83 | 0.09 | 0.367 | 0.087 | 0.308 |
---|
s | | | | 0.124 | 0.204 | 0.217 | -0.015 |
---|
▁the | | | | | 0.238 | 0.014 | 0.371 |
---|
▁CEO | | | | | | 0.004 | -0.018 |
---|
. | | | | | | | -0.004 |
---|
</s> | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_vez\303\251rigazgat\303\263_en_aggregate.html" "b/results/simple_vez\303\251rigazgat\303\263_en_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..de316ddffd9a5378fb5f5a6b9917249cbfebb0a6
--- /dev/null
+++ "b/results/simple_vez\303\251rigazgat\303\263_en_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's | ▁the | ▁CEO. | </s> |
---|
▁Ő | 0.334 | -0.016 | 0.208 | -0.461 |
---|
▁vezérigazgató. | 0.942 | 0.979 | 0.913 | 0.79 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁He's | ▁the | ▁CEO. | </s> |
---|
▁He's | | 0.203 | 0.337 | 0.171 |
---|
▁the | | | 0.095 | 0.362 |
---|
▁CEO. | | | | -0.064 |
---|
</s> | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_vez\303\251rigazgat\303\263_fr.html" "b/results/simple_vez\303\251rigazgat\303\263_fr.html"
new file mode 100644
index 0000000000000000000000000000000000000000..83ca862dd652a237b2d42037d6e8186002369e35
--- /dev/null
+++ "b/results/simple_vez\303\251rigazgat\303\263_fr.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁le | ▁P | DG | . | </s> |
---|
▁Ő | 0.933 | 0.811 | -0.167 | 0.0 | 0.855 | 0.107 | 0.055 | -0.017 |
---|
▁vezérigazgató | 0.158 | -0.14 | -0.124 | 0.257 | 0.132 | 0.913 | -0.068 | 0.161 |
---|
. | 0.324 | 0.358 | 0.03 | 0.042 | 0.399 | 0.113 | 0.98 | -0.274 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C | ' | est | ▁le | ▁P | DG | . | </s> |
---|
▁C | | 0.441 | 0.745 | 0.391 | 0.058 | 0.008 | 0.028 | 0.2 |
---|
' | | | 0.633 | 0.377 | 0.144 | 0.039 | 0.08 | 0.192 |
---|
est | | | | 0.798 | 0.233 | 0.12 | 0.143 | -0.08 |
---|
▁le | | | | | 0.118 | 0.064 | 0.064 | 0.249 |
---|
▁P | | | | | | 0.349 | 0.017 | -0.012 |
---|
DG | | | | | | | -0.005 | 0.035 |
---|
. | | | | | | | | 0.867 |
---|
</s> | | | | | | | | |
---|
+
+
+
+
+
+
diff --git "a/results/simple_vez\303\251rigazgat\303\263_fr_aggregate.html" "b/results/simple_vez\303\251rigazgat\303\263_fr_aggregate.html"
new file mode 100644
index 0000000000000000000000000000000000000000..1a2a08bccba5d5b403eb1ab05c42edf72a4e6a5d
--- /dev/null
+++ "b/results/simple_vez\303\251rigazgat\303\263_fr_aggregate.html"
@@ -0,0 +1,46 @@
+
0th instance:
+
+
+
+
+
+
+
+ Source Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁le | ▁PDG. | </s> |
---|
▁Ő | 0.991 | 0.0 | 0.276 | -0.019 |
---|
▁vezérigazgató. | 0.134 | 0.205 | 0.933 | -0.065 |
---|
</s> | 0.0 | 0.0 | 0.0 | 0.0 |
---|
+
+
+
+
+
+
+
0th instance:
+
+
+
+
+
+
+
+ Target Saliency Heatmap
+
+ x: Generated tokens, y: Attributed tokens
+
+
+
+ |
+▁C'est | ▁le | ▁PDG. | </s> |
---|
▁C'est | | 0.979 | 0.213 | 0.315 |
---|
▁le | | | 0.086 | 0.274 |
---|
▁PDG. | | | | 0.906 |
---|
</s> | | | | |
---|
+
+
+
+
+
+