Oskar van der Wal commited on
Commit
4ba9f41
1 Parent(s): d60cab6

Load results from previously found html files directly to make the demo faster.

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. app.py +31 -7
  2. results/counterfactual_esküvőszervező.html +23 -0
  3. results/counterfactual_férfi.html +23 -0
  4. results/counterfactual_mérnök.html +23 -0
  5. results/counterfactual_nő.html +23 -0
  6. results/counterfactual_nővér.html +23 -0
  7. results/counterfactual_pék.html +23 -0
  8. results/counterfactual_tanár.html +23 -0
  9. results/counterfactual_tudós.html +23 -0
  10. results/counterfactual_vezérigazgató.html +23 -0
  11. results/simple_esküvőszervező_de.html +46 -0
  12. results/simple_esküvőszervező_de_aggregate.html +46 -0
  13. results/simple_esküvőszervező_en.html +46 -0
  14. results/simple_esküvőszervező_en_aggregate.html +46 -0
  15. results/simple_esküvőszervező_fr.html +46 -0
  16. results/simple_esküvőszervező_fr_aggregate.html +46 -0
  17. results/simple_férfi_de.html +46 -0
  18. results/simple_férfi_de_aggregate.html +46 -0
  19. results/simple_férfi_en.html +46 -0
  20. results/simple_férfi_en_aggregate.html +46 -0
  21. results/simple_férfi_fr.html +46 -0
  22. results/simple_férfi_fr_aggregate.html +46 -0
  23. results/simple_mérnök_de.html +46 -0
  24. results/simple_mérnök_de_aggregate.html +46 -0
  25. results/simple_mérnök_en.html +46 -0
  26. results/simple_mérnök_en_aggregate.html +46 -0
  27. results/simple_mérnök_fr.html +46 -0
  28. results/simple_mérnök_fr_aggregate.html +46 -0
  29. results/simple_nő_de.html +46 -0
  30. results/simple_nő_de_aggregate.html +46 -0
  31. results/simple_nő_en.html +46 -0
  32. results/simple_nő_en_aggregate.html +46 -0
  33. results/simple_nő_fr.html +46 -0
  34. results/simple_nő_fr_aggregate.html +46 -0
  35. results/simple_nővér_de.html +46 -0
  36. results/simple_nővér_de_aggregate.html +46 -0
  37. results/simple_nővér_en.html +46 -0
  38. results/simple_nővér_en_aggregate.html +46 -0
  39. results/simple_nővér_fr.html +46 -0
  40. results/simple_nővér_fr_aggregate.html +46 -0
  41. results/simple_pék_de.html +46 -0
  42. results/simple_pék_de_aggregate.html +46 -0
  43. results/simple_pék_en.html +46 -0
  44. results/simple_pék_en_aggregate.html +46 -0
  45. results/simple_pék_fr.html +46 -0
  46. results/simple_pék_fr_aggregate.html +46 -0
  47. results/simple_tanár_de.html +46 -0
  48. results/simple_tanár_de_aggregate.html +46 -0
  49. results/simple_tanár_en.html +46 -0
  50. results/simple_tanár_en_aggregate.html +46 -0
app.py CHANGED
@@ -2,6 +2,7 @@ import gradio
2
  import inseq
3
  from inseq.data.aggregator import AggregatorPipeline, SubwordAggregator, SequenceAttributionAggregator, PairAggregator
4
  import torch
 
5
 
6
  if torch.cuda.is_available():
7
  DEVICE = "cuda"
@@ -9,7 +10,7 @@ else:
9
  DEVICE = "cpu"
10
 
11
  # Start downloading the Hu-En model
12
- model_hu_en = inseq.load_model("Helsinki-NLP/opus-mt-hu-en", "integrated_gradients")
13
 
14
  def swap_pronoun(sentence):
15
  if "He" in sentence:
@@ -19,14 +20,18 @@ def swap_pronoun(sentence):
19
  else:
20
  return sentence
21
 
22
- def run_counterfactual(occupation):
23
  occupation = occupation.split(" (")[0]
 
 
 
 
24
 
25
  # "egy" means something like "a", but is used less frequently than in English.
26
  #source = f"Ő egy {occupation}."
27
  source = f"Ő {occupation}."
28
 
29
- model = model_hu_en
30
  model.device = DEVICE
31
  target = model.generate(source)[0]
32
  #target_modified = swap_pronoun(target)
@@ -56,12 +61,24 @@ def run_counterfactual(occupation):
56
  masculine = out.sequence_attributions[0].aggregate(aggregator=squeezesum)
57
  feminine = out.sequence_attributions[1].aggregate(aggregator=squeezesum)
58
 
59
- return masculine.show(aggregator=PairAggregator, paired_attr=feminine, return_html=True, display=True)
 
 
 
 
 
 
60
  #return out.show(return_html=True, display=True)
61
 
62
  def run_simple(occupation, lang, aggregate):
 
63
  occupation = occupation.split(" (")[0]
64
 
 
 
 
 
 
65
  model_name = f"Helsinki-NLP/opus-mt-hu-{lang}"
66
 
67
  # "egy" means something like "a", but is used less frequently than in English.
@@ -73,9 +90,16 @@ def run_simple(occupation, lang, aggregate):
73
 
74
  if aggregate:
75
  squeezesum = AggregatorPipeline([SubwordAggregator, SequenceAttributionAggregator])
76
- return out.show(return_html=True, display=True, aggregator=squeezesum)
77
  else:
78
- return out.show(return_html=True, display=True)
 
 
 
 
 
 
 
79
 
80
  with open("description.md") as fh:
81
  desc = fh.read()
@@ -146,4 +170,4 @@ with gradio.Blocks(title="Gender Bias in MT: Hungarian to English") as iface:
146
  gradio.Markdown(notice)
147
 
148
 
149
- iface.launch()
2
  import inseq
3
  from inseq.data.aggregator import AggregatorPipeline, SubwordAggregator, SequenceAttributionAggregator, PairAggregator
4
  import torch
5
+ from os.path import exists
6
 
7
  if torch.cuda.is_available():
8
  DEVICE = "cuda"
10
  DEVICE = "cpu"
11
 
12
  # Start downloading the Hu-En model
13
+ # model_hu_en = inseq.load_model("Helsinki-NLP/opus-mt-hu-en", "integrated_gradients")
14
 
15
  def swap_pronoun(sentence):
16
  if "He" in sentence:
20
  else:
21
  return sentence
22
 
23
+ def run_counterfactual(occupation):
24
  occupation = occupation.split(" (")[0]
25
+ result_fp = f"results/counterfactual_{occupation}.html"
26
+ if exists(result_fp):
27
+ with open(result_fp, 'r') as f:
28
+ return f.read()
29
 
30
  # "egy" means something like "a", but is used less frequently than in English.
31
  #source = f"Ő egy {occupation}."
32
  source = f"Ő {occupation}."
33
 
34
+ model = inseq.load_model("Helsinki-NLP/opus-mt-hu-en", "integrated_gradients")
35
  model.device = DEVICE
36
  target = model.generate(source)[0]
37
  #target_modified = swap_pronoun(target)
61
  masculine = out.sequence_attributions[0].aggregate(aggregator=squeezesum)
62
  feminine = out.sequence_attributions[1].aggregate(aggregator=squeezesum)
63
 
64
+ html = masculine.show(aggregator=PairAggregator, paired_attr=feminine, return_html=True, display=True)
65
+
66
+ # Save html
67
+ with open(result_fp, 'w') as f:
68
+ f.write(html)
69
+
70
+ return html
71
  #return out.show(return_html=True, display=True)
72
 
73
  def run_simple(occupation, lang, aggregate):
74
+ aggregate = True if aggregate == "yes" else False
75
  occupation = occupation.split(" (")[0]
76
 
77
+ result_fp = f"results/simple_{occupation}_{lang}{'_aggregate' if aggregate else ''}.html"
78
+ if exists(result_fp):
79
+ with open(result_fp, 'r') as f:
80
+ return f.read()
81
+
82
  model_name = f"Helsinki-NLP/opus-mt-hu-{lang}"
83
 
84
  # "egy" means something like "a", but is used less frequently than in English.
90
 
91
  if aggregate:
92
  squeezesum = AggregatorPipeline([SubwordAggregator, SequenceAttributionAggregator])
93
+ html = out.show(return_html=True, display=True, aggregator=squeezesum)
94
  else:
95
+ html = out.show(return_html=True, display=True)
96
+
97
+ # Save html
98
+ with open(result_fp, 'w') as f:
99
+ f.write(html)
100
+ return html
101
+
102
+
103
 
104
  with open("description.md") as fh:
105
  desc = fh.read()
170
  gradio.Markdown(notice)
171
 
172
 
173
+ iface.launch(share=True)
results/counterfactual_esküvőszervező.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="ntoznnhnpbokoxvjifqa_viz_container">
4
+ <div id="ntoznnhnpbokoxvjifqa_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "ntoznnhnpbokoxvjifqa_saliency_plot_container" class="ntoznnhnpbokoxvjifqa_viz_container" style="display:block">
6
+
7
+ <div id="isvpjqsftaxgpoqdshns_saliency_plot" class="isvpjqsftaxgpoqdshns_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He's → ▁She's</th><th>▁a</th><th>▁wedding</th><th>▁planner.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.002</th><th style="background:rgba(30.0, 136.0, 229.0, 0.03830461477520309)">-0.005</th><th style="background:rgba(30.0, 136.0, 229.0, 0.3851455733808674)">-0.048</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.007</th><th style="background:rgba(255.0, 13.0, 87.0, 0.976351752822341)">0.121</th></tr><tr><th>▁esküvőszervező.</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.001</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.003</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10924935630817992)">0.014</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.001</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.124</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr><tr style="outline: thin solid"><th><b>probability</b></th><th>0.102</th><th>-0.003</th><th>0.003</th><th>0.009</th><th>-0.0</th></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
results/counterfactual_férfi.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="bungxrozmabtiqskpgdz_viz_container">
4
+ <div id="bungxrozmabtiqskpgdz_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "bungxrozmabtiqskpgdz_saliency_plot_container" class="bungxrozmabtiqskpgdz_viz_container" style="display:block">
6
+
7
+ <div id="yrwjozjujgvbuxdniuzb_saliency_plot" class="yrwjozjujgvbuxdniuzb_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He's → ▁She's</th><th>▁a</th><th>▁man.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(30.0, 136.0, 229.0, 0.04618736383442258)">-0.012</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06195286195286207)">0.016</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.062</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.24</th></tr><tr><th>▁férfi.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.007</th><th style="background:rgba(30.0, 136.0, 229.0, 0.03042186571598325)">-0.008</th><th style="background:rgba(30.0, 136.0, 229.0, 0.05407011289364222)">-0.014</th><th style="background:rgba(30.0, 136.0, 229.0, 0.6058625470390175)">-0.146</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr><tr style="outline: thin solid"><th><b>probability</b></th><th>-0.39</th><th>-0.003</th><th>-0.037</th><th>0.001</th></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
results/counterfactual_mérnök.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="jdrpzzgphcmahpuxyxub_viz_container">
4
+ <div id="jdrpzzgphcmahpuxyxub_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "jdrpzzgphcmahpuxyxub_saliency_plot_container" class="jdrpzzgphcmahpuxyxub_viz_container" style="display:block">
6
+
7
+ <div id="nqvodssmojmqmtvvnkzo_saliency_plot" class="nqvodssmojmqmtvvnkzo_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He's → ▁She's</th><th>▁an</th><th>▁engineer.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(30.0, 136.0, 229.0, 0.014656367597544028)">-0.015</th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.008</th><th style="background:rgba(30.0, 136.0, 229.0, 0.006773618538324436)">-0.01</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.808</th></tr><tr><th>▁mérnök.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.005</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.004</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.0</th><th style="background:rgba(30.0, 136.0, 229.0, 1.0)">-1.699</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr><tr style="outline: thin solid"><th><b>probability</b></th><th>-0.356</th><th>0.0</th><th>-0.001</th><th>0.001</th></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
results/counterfactual_nő.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="krkpnnqmeneicngvxfko_viz_container">
4
+ <div id="krkpnnqmeneicngvxfko_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "krkpnnqmeneicngvxfko_saliency_plot_container" class="krkpnnqmeneicngvxfko_viz_container" style="display:block">
6
+
7
+ <div id="mggebfvllhgqagcmraoz_saliency_plot" class="mggebfvllhgqagcmraoz_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He's → ▁She's</th><th>▁a</th><th>▁woman.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7241037829273124)">0.069</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.095</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4797385620915033)">0.046</th><th style="background:rgba(30.0, 136.0, 229.0, 1.0)">-0.452</th></tr><tr><th>▁nő.</th><th style="background:rgba(30.0, 136.0, 229.0, 0.8502277678748268)">-0.081</th><th style="background:rgba(30.0, 136.0, 229.0, 0.7083382848088731)">-0.068</th><th style="background:rgba(30.0, 136.0, 229.0, 0.1328976034858387)">-0.013</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6531590413943356)">0.062</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr><tr style="outline: thin solid"><th><b>probability</b></th><th><b>0.501</b></th><th>0.009</th><th>-0.007</th><th>-0.002</th></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
results/counterfactual_nővér.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="iidlvmrnyakgmezipiue_viz_container">
4
+ <div id="iidlvmrnyakgmezipiue_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "iidlvmrnyakgmezipiue_saliency_plot_container" class="iidlvmrnyakgmezipiue_viz_container" style="display:block">
6
+
7
+ <div id="cqmpatfwcczgpfafhone_saliency_plot" class="cqmpatfwcczgpfafhone_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He's → ▁She's</th><th>▁a</th><th>▁nurse.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(30.0, 136.0, 229.0, 1.0)">-0.087</th><th style="background:rgba(30.0, 136.0, 229.0, 0.7004555357496535)">-0.039</th><th style="background:rgba(30.0, 136.0, 229.0, 1.0)">-0.059</th><th style="background:rgba(30.0, 136.0, 229.0, 1.0)">-0.139</th></tr><tr><th>▁nővér.</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.055</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5900970489205783)">0.033</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.011</th><th style="background:rgba(30.0, 136.0, 229.0, 0.16442859972271748)">-0.009</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr><tr style="outline: thin solid"><th><b>probability</b></th><th><b>0.56</b></th><th>0.005</th><th>-0.0</th><th>-0.001</th></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
results/counterfactual_pék.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="blpvwqjhwrfkumubgowj_viz_container">
4
+ <div id="blpvwqjhwrfkumubgowj_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "blpvwqjhwrfkumubgowj_saliency_plot_container" class="blpvwqjhwrfkumubgowj_viz_container" style="display:block">
6
+
7
+ <div id="jwbyvtsknxguqqdcarro_saliency_plot" class="jwbyvtsknxguqqdcarro_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He's → ▁She's</th><th>▁a</th><th>▁baker.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.166</th><th style="background:rgba(255.0, 13.0, 87.0, 0.12501485442661908)">0.021</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10924935630817992)">0.019</th><th style="background:rgba(255.0, 13.0, 87.0, 0.15654585066349747)">0.026</th></tr><tr><th>▁pék.</th><th style="background:rgba(30.0, 136.0, 229.0, 0.8817587641117053)">-0.146</th><th style="background:rgba(30.0, 136.0, 229.0, 0.014656367597544028)">-0.003</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.001</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.004</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr><tr style="outline: thin solid"><th><b>probability</b></th><th>-0.299</th><th>0.0</th><th>0.003</th><th>0.002</th></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
results/counterfactual_tanár.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="dkzxspctwvzbhpvlhucp_viz_container">
4
+ <div id="dkzxspctwvzbhpvlhucp_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "dkzxspctwvzbhpvlhucp_saliency_plot_container" class="dkzxspctwvzbhpvlhucp_viz_container" style="display:block">
6
+
7
+ <div id="zcfeuhiftzlmzgwxcwvq_saliency_plot" class="zcfeuhiftzlmzgwxcwvq_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He's → ▁She's</th><th>▁a</th><th>▁teacher.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(30.0, 136.0, 229.0, 1.0)">-0.13</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3142008318478907)">0.008</th><th style="background:rgba(30.0, 136.0, 229.0, 0.5585660526836997)">-0.013</th><th style="background:rgba(255.0, 13.0, 87.0, 0.77928302634185)">0.018</th></tr><tr><th>▁tanár.</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.024</th><th style="background:rgba(30.0, 136.0, 229.0, 0.16442859972271748)">-0.004</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.0</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.003</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr><tr style="outline: thin solid"><th><b>probability</b></th><th>-0.107</th><th>-0.001</th><th>0.01</th><th>0.001</th></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
results/counterfactual_tudós.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="cumyqjlsxfpatbqeeavq_viz_container">
4
+ <div id="cumyqjlsxfpatbqeeavq_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "cumyqjlsxfpatbqeeavq_saliency_plot_container" class="cumyqjlsxfpatbqeeavq_viz_container" style="display:block">
6
+
7
+ <div id="khyprtfdbheizpaeqhwj_saliency_plot" class="khyprtfdbheizpaeqhwj_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He's → ▁She's</th><th>▁a</th><th>▁scientist.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(30.0, 136.0, 229.0, 0.865993265993266)">-0.111</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1880768469003763)">0.025</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.01</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.129</th></tr><tr><th>▁tudós.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.026</th><th style="background:rgba(30.0, 136.0, 229.0, 0.04618736383442258)">-0.006</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.001</th><th style="background:rgba(30.0, 136.0, 229.0, 0.4324420677361853)">-0.056</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr><tr style="outline: thin solid"><th><b>probability</b></th><th>-0.3</th><th>-0.001</th><th>0.005</th><th>0.001</th></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
results/counterfactual_vezérigazgató.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="cgghwjdmbehxkndahpdt_viz_container">
4
+ <div id="cgghwjdmbehxkndahpdt_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "cgghwjdmbehxkndahpdt_saliency_plot_container" class="cgghwjdmbehxkndahpdt_viz_container" style="display:block">
6
+
7
+ <div id="xyezdnspuapjchtldotx_saliency_plot" class="xyezdnspuapjchtldotx_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He's → ▁She's</th><th>▁the</th><th>▁CEO.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(30.0, 136.0, 229.0, 1.0)">-0.286</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.067</th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.002</th><th style="background:rgba(255.0, 13.0, 87.0, 0.15654585066349747)">0.011</th></tr><tr><th>▁vezérigazgató.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5428005545652606)">0.037</th><th style="background:rgba(30.0, 136.0, 229.0, 0.006773618538324436)">-0.001</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.0</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.001</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr><tr style="outline: thin solid"><th><b>probability</b></th><th>-0.339</th><th>0.001</th><th>-0.002</th><th>0.002</th></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
results/simple_esküvőszervező_de.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="qosyzgjpduxysybmiiil_viz_container">
4
+ <div id="qosyzgjpduxysybmiiil_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "qosyzgjpduxysybmiiil_saliency_plot_container" class="qosyzgjpduxysybmiiil_viz_container" style="display:block">
6
+
7
+ <div id="quulvuhezyjumkplupzg_saliency_plot" class="quulvuhezyjumkplupzg_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁Er</th><th>▁ist</th><th>▁Hochzeit</th><th>splan</th><th>er</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9290552584670234)">0.841</th><th style="background:rgba(255.0, 13.0, 87.0, 0.32208358090711037)">0.296</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.242</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.083</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.007</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.02</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.08</th></tr><tr><th>▁esküvő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.44032481679540497)">0.405</th><th style="background:rgba(255.0, 13.0, 87.0, 0.26690433749257286)">0.245</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7241037829273124)">0.663</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6925727866904339)">0.631</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.002</th><th style="background:rgba(255.0, 13.0, 87.0, 0.03830461477520289)">0.036</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.11</th></tr><tr><th>szerv</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.232</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.236</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6295107942166767)">0.575</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6846900376312143)">0.626</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5270350564468211)">0.484</th><th style="background:rgba(255.0, 13.0, 87.0, 0.20384234501881549)">0.187</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2117250940780353)">0.192</th></tr><tr><th>ező</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14866310160427795)">0.14</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6295107942166767)">0.576</th><th style="background:rgba(255.0, 13.0, 87.0, 0.44032481679540497)">0.401</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4087938205585263)">0.375</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6452762923351159)">0.591</th><th style="background:rgba(255.0, 13.0, 87.0, 0.39302832244008706)">0.358</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7398692810457518)">0.67</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.234</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.107</th><th style="background:rgba(30.0, 136.0, 229.0, 0.022539116656763607)">-0.022</th><th style="background:rgba(255.0, 13.0, 87.0, 0.09348385818974037)">0.089</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14866310160427795)">0.141</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.912</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.234</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="gdoqujufrpyqgkasrhaj_viz_container">
27
+ <div id="gdoqujufrpyqgkasrhaj_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "gdoqujufrpyqgkasrhaj_saliency_plot_container" class="gdoqujufrpyqgkasrhaj_viz_container" style="display:block">
29
+
30
+ <div id="wyblhlvcnywegfuhfceu_saliency_plot" class="wyblhlvcnywegfuhfceu_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁Er</th><th>▁ist</th><th>▁Hochzeit</th><th>splan</th><th>er</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Er</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7398692810457518)">0.673</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.017</th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.01</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.047</th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.026</th><th style="background:rgba(30.0, 136.0, 229.0, 0.27478708655179246)">-0.25</th></tr><tr><th>▁ist</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.10924935630817977)">-0.101</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.021</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.05</th><th style="background:rgba(255.0, 13.0, 87.0, 0.030421865715983164)">0.034</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14078035254505847)">0.134</th></tr><tr><th>▁Hochzeit</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.231</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.123</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.007</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5112695583283818)">0.47</th></tr><tr><th>splan</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.6768072885719946)">0.614</th><th style="background:rgba(30.0, 136.0, 229.0, 0.006773618538324436)">-0.011</th><th style="background:rgba(30.0, 136.0, 229.0, 0.1959595959595959)">-0.182</th></tr><tr><th>er</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.030421865715983164)">0.033</th><th style="background:rgba(30.0, 136.0, 229.0, 0.35361457714398903)">-0.321</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.056</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_esküvőszervező_de_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="mkauohkyhgqngrzjiurh_viz_container">
4
+ <div id="mkauohkyhgqngrzjiurh_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "mkauohkyhgqngrzjiurh_saliency_plot_container" class="mkauohkyhgqngrzjiurh_viz_container" style="display:block">
6
+
7
+ <div id="pidetvjakvzccphsdrdf_saliency_plot" class="pidetvjakvzccphsdrdf_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁Er</th><th>▁ist</th><th>▁Hochzeitsplaner.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7319865319865321)">0.724</th><th style="background:rgba(255.0, 13.0, 87.0, 0.22749059219647458)">0.227</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.082</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.083</th></tr><tr><th>▁esküvőszervező.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6925727866904339)">0.69</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8265795206971679)">0.825</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.996</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9527035056446822)">0.948</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="ajvjkdocaluemqkbtaeq_viz_container">
27
+ <div id="ajvjkdocaluemqkbtaeq_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "ajvjkdocaluemqkbtaeq_saliency_plot_container" class="ajvjkdocaluemqkbtaeq_viz_container" style="display:block">
29
+
30
+ <div id="szxaeokjmbmhtjzfmxqp_saliency_plot" class="szxaeokjmbmhtjzfmxqp_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁Er</th><th>▁ist</th><th>▁Hochzeitsplaner.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Er</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.5191523073876015)">0.518</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.023</th><th style="background:rgba(30.0, 136.0, 229.0, 0.25902158843335304)">-0.262</th></tr><tr><th>▁ist</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.014656367597544028)">-0.018</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14078035254505847)">0.141</th></tr><tr><th>▁Hochzeitsplaner.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.06983561101208147)">-0.072</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_esküvőszervező_en.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="xgpgwmdasfxikfzlbduf_viz_container">
4
+ <div id="xgpgwmdasfxikfzlbduf_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "xgpgwmdasfxikfzlbduf_saliency_plot_container" class="xgpgwmdasfxikfzlbduf_viz_container" style="display:block">
6
+
7
+ <div id="sillsyxwnbiceyesadqf_saliency_plot" class="sillsyxwnbiceyesadqf_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁She</th><th>'</th><th>s</th><th>▁a</th><th>▁wedding</th><th>▁plan</th><th>ner</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7319865319865321)">0.719</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10924935630817992)">0.114</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.072</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.072</th><th style="background:rgba(255.0, 13.0, 87.0, 0.24325609031491383)">0.24</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10136660724896006)">0.102</th><th style="background:rgba(30.0, 136.0, 229.0, 0.03042186571598325)">-0.035</th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.03</th><th style="background:rgba(30.0, 136.0, 229.0, 0.5664488017429193)">-0.557</th></tr><tr><th>▁esküvő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3536145771439889)">0.351</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14866310160427795)">0.151</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.02</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.055</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5270350564468211)">0.515</th><th style="background:rgba(255.0, 13.0, 87.0, 0.15654585066349747)">0.159</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.019</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.047</th><th style="background:rgba(30.0, 136.0, 229.0, 0.5033868092691621)">-0.492</th></tr><tr><th>szervez</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5112695583283818)">0.503</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4718558130322837)">0.461</th><th style="background:rgba(255.0, 13.0, 87.0, 0.18019409784115661)">0.178</th><th style="background:rgba(255.0, 13.0, 87.0, 0.39302832244008706)">0.385</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7635175282234107)">0.747</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5900970489205783)">0.578</th><th style="background:rgba(30.0, 136.0, 229.0, 0.014656367597544028)">-0.018</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3457318280847692)">0.342</th><th style="background:rgba(255.0, 13.0, 87.0, 0.030421865715983164)">0.031</th></tr><tr><th>ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.135</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14866310160427795)">0.15</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.02</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10136660724896006)">0.103</th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.012</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10136660724896006)">0.106</th><th style="background:rgba(30.0, 136.0, 229.0, 0.006773618538324436)">-0.014</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29055258467023165)">0.289</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3772628243216479)">0.371</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.298</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8344622697563875)">0.815</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.049</th><th style="background:rgba(255.0, 13.0, 87.0, 0.44820756585462457)">0.437</th><th style="background:rgba(30.0, 136.0, 229.0, 0.11713210536739943)">-0.118</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.297</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14866310160427795)">0.15</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8817587641117054)">0.86</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.088</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="tysiydplyqfdwzdzchkg_viz_container">
27
+ <div id="tysiydplyqfdwzdzchkg_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "tysiydplyqfdwzdzchkg_saliency_plot_container" class="tysiydplyqfdwzdzchkg_viz_container" style="display:block">
29
+
30
+ <div id="guydxiebmifvhlczdmeq_saliency_plot" class="guydxiebmifvhlczdmeq_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁She</th><th>'</th><th>s</th><th>▁a</th><th>▁wedding</th><th>▁plan</th><th>ner</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁She</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.254</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5033868092691621)">0.493</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4718558130322837)">0.462</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.251</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.002</th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.013</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.072</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1880768469003763)">0.189</th></tr><tr><th>'</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.865993265993266)">0.847</th><th style="background:rgba(255.0, 13.0, 87.0, 0.219607843137255)">0.215</th><th style="background:rgba(255.0, 13.0, 87.0, 0.16442859972271742)">0.168</th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.027</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.015</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06195286195286207)">0.066</th><th style="background:rgba(255.0, 13.0, 87.0, 0.22749059219647458)">0.223</th></tr><tr><th>s</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.6295107942166767)">0.618</th><th style="background:rgba(30.0, 136.0, 229.0, 0.11713210536739943)">-0.115</th><th style="background:rgba(255.0, 13.0, 87.0, 0.15654585066349747)">0.156</th><th style="background:rgba(255.0, 13.0, 87.0, 0.09348385818974037)">0.098</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1880768469003763)">0.188</th><th style="background:rgba(30.0, 136.0, 229.0, 0.03830461477520309)">-0.041</th></tr><tr><th>▁a</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.03830461477520309)">-0.038</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.058</th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.029</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.019</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.292</th></tr><tr><th>▁wedding</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7241037829273124)">0.709</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.071</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.017</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.255</th></tr><tr><th>▁plan</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.98</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.017</th><th style="background:rgba(255.0, 13.0, 87.0, 0.22749059219647458)">0.226</th></tr><tr><th>ner</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.10136660724896006)">0.104</th><th style="background:rgba(255.0, 13.0, 87.0, 0.030421865715983164)">0.037</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.10924935630817992)">0.109</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_esküvőszervező_en_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="tslqkbqlpvaumllhwwlx_viz_container">
4
+ <div id="tslqkbqlpvaumllhwwlx_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "tslqkbqlpvaumllhwwlx_saliency_plot_container" class="tslqkbqlpvaumllhwwlx_viz_container" style="display:block">
6
+
7
+ <div id="ggzqitpvrtjfeiagjndr_saliency_plot" class="ggzqitpvrtjfeiagjndr_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁She's</th><th>▁a</th><th>▁wedding</th><th>▁planner.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2747870865517925)">0.265</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.057</th><th style="background:rgba(255.0, 13.0, 87.0, 0.23537334125569415)">0.227</th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.01</th><th style="background:rgba(30.0, 136.0, 229.0, 0.7083382848088731)">-0.684</th></tr><tr><th>▁esküvőszervező.</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.964</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5664488017429193)">0.548</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.963</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9448207565854626)">0.905</th><th style="background:rgba(30.0, 136.0, 229.0, 0.1723113487819369)">-0.166</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="nxagljncbcmosyaqyytb_viz_container">
27
+ <div id="nxagljncbcmosyaqyytb_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "nxagljncbcmosyaqyytb_saliency_plot_container" class="nxagljncbcmosyaqyytb_viz_container" style="display:block">
29
+
30
+ <div id="hghtlbticzfishvtpiag_saliency_plot" class="hghtlbticzfishvtpiag_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁She's</th><th>▁a</th><th>▁wedding</th><th>▁planner.</th><th>&lt;/s&gt;</th></tr><tr><th>▁She's</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.865993265993266)">0.835</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14078035254505847)">0.142</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2117250940780353)">0.21</th><th style="background:rgba(255.0, 13.0, 87.0, 0.49550406020994264)">0.475</th></tr><tr><th>▁a</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.03042186571598325)">-0.036</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.055</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3693800752624282)">0.358</th></tr><tr><th>▁wedding</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.3772628243216479)">0.366</th><th style="background:rgba(255.0, 13.0, 87.0, 0.32208358090711037)">0.313</th></tr><tr><th>▁planner.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.23537334125569415)">0.23</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_esküvőszervező_fr.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="mdjzshyxlbrvsruokvtf_viz_container">
4
+ <div id="mdjzshyxlbrvsruokvtf_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "mdjzshyxlbrvsruokvtf_saliency_plot_container" class="mdjzshyxlbrvsruokvtf_viz_container" style="display:block">
6
+
7
+ <div id="gxazogkfcbhjjkupfzlt_saliency_plot" class="gxazogkfcbhjjkupfzlt_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁C</th><th>'</th><th>est</th><th>▁un</th><th>▁</th><th>organisateur</th><th>▁de</th><th>▁mariage</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.957</th><th style="background:rgba(255.0, 13.0, 87.0, 0.15654585066349747)">0.155</th><th style="background:rgba(255.0, 13.0, 87.0, 0.09348385818974037)">0.094</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.114</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.287</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.017</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.047</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10924935630817992)">0.109</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29055258467023165)">0.278</th><th style="background:rgba(30.0, 136.0, 229.0, 0.4876213111507228)">-0.465</th></tr><tr><th>▁esküvő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06195286195286207)">0.067</th><th style="background:rgba(255.0, 13.0, 87.0, 0.17231134878193693)">0.168</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06195286195286207)">0.062</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.005</th><th style="background:rgba(30.0, 136.0, 229.0, 0.022539116656763607)">-0.024</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06195286195286207)">0.066</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.116</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7714002772826303)">0.739</th><th style="background:rgba(30.0, 136.0, 229.0, 0.16442859972271748)">-0.161</th><th style="background:rgba(255.0, 13.0, 87.0, 0.09348385818974037)">0.094</th></tr><tr><th>szerv</th><th style="background:rgba(30.0, 136.0, 229.0, 0.07771836007130117)">-0.078</th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.023</th><th style="background:rgba(30.0, 136.0, 229.0, 0.06983561101208147)">-0.072</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.019</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.247</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4245593186769657)">0.411</th><th style="background:rgba(30.0, 136.0, 229.0, 0.10924935630817977)">-0.11</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.054</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.076</th><th style="background:rgba(255.0, 13.0, 87.0, 0.16442859972271742)">0.162</th></tr><tr><th>ező</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.19</th><th style="background:rgba(30.0, 136.0, 229.0, 0.05407011289364222)">-0.056</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.017</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29055258467023165)">0.283</th><th style="background:rgba(30.0, 136.0, 229.0, 0.5585660526836997)">-0.536</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5979797979797981)">0.568</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3851455733808676)">0.367</th><th style="background:rgba(255.0, 13.0, 87.0, 0.12501485442661908)">0.124</th><th style="background:rgba(30.0, 136.0, 229.0, 0.07771836007130117)">-0.075</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10924935630817992)">0.111</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.194</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4718558130322837)">0.453</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1880768469003763)">0.182</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2747870865517925)">0.268</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.078</th><th style="background:rgba(255.0, 13.0, 87.0, 0.33784907902554967)">0.327</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3142008318478907)">0.3</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.188</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8817587641117054)">0.837</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5191523073876015)">0.499</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="bjhapskqhxuhzfxclcnw_viz_container">
27
+ <div id="bjhapskqhxuhzfxclcnw_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "bjhapskqhxuhzfxclcnw_saliency_plot_container" class="bjhapskqhxuhzfxclcnw_viz_container" style="display:block">
29
+
30
+ <div id="dsiahzmekvtvtthxizbu_saliency_plot" class="dsiahzmekvtvtthxizbu_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁C</th><th>'</th><th>est</th><th>▁un</th><th>▁</th><th>organisateur</th><th>▁de</th><th>▁mariage</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁C</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8975242622301447)">0.859</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8029312735195088)">0.765</th><th style="background:rgba(255.0, 13.0, 87.0, 0.43244206773618543)">0.416</th><th style="background:rgba(255.0, 13.0, 87.0, 0.18019409784115661)">0.175</th><th style="background:rgba(255.0, 13.0, 87.0, 0.12501485442661908)">0.126</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.083</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14078035254505847)">0.139</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.118</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.243</th></tr><tr><th>'</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.6295107942166767)">0.603</th><th style="background:rgba(255.0, 13.0, 87.0, 0.44032481679540497)">0.424</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.081</th><th style="background:rgba(255.0, 13.0, 87.0, 0.15654585066349747)">0.153</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.001</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.079</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.128</th><th style="background:rgba(255.0, 13.0, 87.0, 0.15654585066349747)">0.156</th></tr><tr><th>est</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7241037829273124)">0.694</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7319865319865321)">0.697</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1880768469003763)">0.184</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.052</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06195286195286207)">0.062</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2826698356110118)">0.27</th><th style="background:rgba(30.0, 136.0, 229.0, 0.006773618538324436)">-0.011</th></tr><tr><th>▁un</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.20384234501881549)">0.199</th><th style="background:rgba(255.0, 13.0, 87.0, 0.24325609031491383)">0.236</th><th style="background:rgba(255.0, 13.0, 87.0, 0.43244206773618543)">0.416</th><th style="background:rgba(255.0, 13.0, 87.0, 0.55068330362448)">0.524</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06195286195286207)">0.065</th><th style="background:rgba(255.0, 13.0, 87.0, 0.12501485442661908)">0.121</th></tr><tr><th>▁</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.5428005545652606)">0.517</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.068</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.018</th><th style="background:rgba(255.0, 13.0, 87.0, 0.030421865715983164)">0.036</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.048</th></tr><tr><th>organisateur</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7871657754010695)">0.749</th><th style="background:rgba(30.0, 136.0, 229.0, 0.014656367597544028)">-0.021</th><th style="background:rgba(30.0, 136.0, 229.0, 0.11713210536739943)">-0.119</th><th style="background:rgba(255.0, 13.0, 87.0, 0.030421865715983164)">0.033</th></tr><tr><th>▁de</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.289</th><th style="background:rgba(255.0, 13.0, 87.0, 0.20384234501881549)">0.199</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4797385620915033)">0.457</th></tr><tr><th>▁mariage</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.14866310160427795)">0.146</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.128</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.41667656961774624)">0.402</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_esküvőszervező_fr_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="sbfrfkjacojmxzzzgrqg_viz_container">
4
+ <div id="sbfrfkjacojmxzzzgrqg_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "sbfrfkjacojmxzzzgrqg_saliency_plot_container" class="sbfrfkjacojmxzzzgrqg_viz_container" style="display:block">
6
+
7
+ <div id="rdmvgqivfzuqlryghymt_saliency_plot" class="rdmvgqivfzuqlryghymt_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁C'est</th><th>▁un</th><th>▁organisateur</th><th>▁de</th><th>▁mariage.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6768072885719946)">0.624</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.086</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.276</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.046</th><th style="background:rgba(255.0, 13.0, 87.0, 0.22749059219647458)">0.212</th><th style="background:rgba(30.0, 136.0, 229.0, 0.4482075658546247)">-0.415</th></tr><tr><th>▁esküvőszervező.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8502277678748268)">0.781</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4087938205585263)">0.381</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.182</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5664488017429193)">0.52</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8975242622301447)">0.821</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6137452960982372)">0.567</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="awaqvobafzwazgbibvxs_viz_container">
27
+ <div id="awaqvobafzwazgbibvxs_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "awaqvobafzwazgbibvxs_saliency_plot_container" class="awaqvobafzwazgbibvxs_viz_container" style="display:block">
29
+
30
+ <div id="waefifkihwgljkyvfwwj_saliency_plot" class="waefifkihwgljkyvfwwj_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁C'est</th><th>▁un</th><th>▁organisateur</th><th>▁de</th><th>▁mariage.</th><th>&lt;/s&gt;</th></tr><tr><th>▁C'est</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.921</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9605862547039017)">0.878</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10924935630817992)">0.105</th><th style="background:rgba(255.0, 13.0, 87.0, 0.33784907902554967)">0.316</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3536145771439889)">0.329</th></tr><tr><th>▁un</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.3772628243216479)">0.346</th><th style="background:rgba(255.0, 13.0, 87.0, 0.44032481679540497)">0.408</th><th style="background:rgba(255.0, 13.0, 87.0, 0.33784907902554967)">0.311</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.108</th></tr><tr><th>▁organisateur</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8108140225787285)">0.742</th><th style="background:rgba(30.0, 136.0, 229.0, 0.06195286195286191)">-0.06</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.067</th></tr><tr><th>▁de</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.306318082788671)">0.283</th><th style="background:rgba(255.0, 13.0, 87.0, 0.44032481679540497)">0.407</th></tr><tr><th>▁mariage.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.5033868092691621)">0.465</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_férfi_de.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="kgfgjwzeqihakzclruvf_viz_container">
4
+ <div id="kgfgjwzeqihakzclruvf_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "kgfgjwzeqihakzclruvf_saliency_plot_container" class="kgfgjwzeqihakzclruvf_viz_container" style="display:block">
6
+
7
+ <div id="nceavfdgpuawsjyaqqaj_saliency_plot" class="nceavfdgpuawsjyaqqaj_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁Er</th><th>▁ist</th><th>▁ein</th><th>▁Mann</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8502277678748268)">0.729</th><th style="background:rgba(255.0, 13.0, 87.0, 0.55068330362448)">0.472</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.218</th><th style="background:rgba(255.0, 13.0, 87.0, 0.219607843137255)">0.194</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3457318280847692)">0.299</th><th style="background:rgba(255.0, 13.0, 87.0, 0.41667656961774624)">0.361</th></tr><tr><th>▁férfi</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6452762923351159)">0.554</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7398692810457518)">0.636</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6137452960982372)">0.532</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9132897603485836)">0.786</th><th style="background:rgba(255.0, 13.0, 87.0, 0.46397306397306415)">0.402</th><th style="background:rgba(30.0, 136.0, 229.0, 0.34573182808476927)">-0.3</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.46397306397306415)">0.402</th><th style="background:rgba(255.0, 13.0, 87.0, 0.219607843137255)">0.19</th><th style="background:rgba(255.0, 13.0, 87.0, 0.24325609031491383)">0.21</th><th style="background:rgba(255.0, 13.0, 87.0, 0.22749059219647458)">0.201</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.863</th><th style="background:rgba(30.0, 136.0, 229.0, 0.08560110913052085)">-0.078</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="lkctwatecysfleytfdoz_viz_container">
27
+ <div id="lkctwatecysfleytfdoz_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "lkctwatecysfleytfdoz_saliency_plot_container" class="lkctwatecysfleytfdoz_viz_container" style="display:block">
29
+
30
+ <div id="kuqjmanpemilaavybtqj_saliency_plot" class="kuqjmanpemilaavybtqj_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁Er</th><th>▁ist</th><th>▁ein</th><th>▁Mann</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Er</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.6768072885719946)">0.58</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.224</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.065</th><th style="background:rgba(30.0, 136.0, 229.0, 0.014656367597544028)">-0.018</th><th style="background:rgba(255.0, 13.0, 87.0, 0.32208358090711037)">0.28</th></tr><tr><th>▁ist</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8817587641117054)">0.758</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.117</th><th style="background:rgba(30.0, 136.0, 229.0, 0.06195286195286191)">-0.057</th><th style="background:rgba(255.0, 13.0, 87.0, 0.12501485442661908)">0.114</th></tr><tr><th>▁ein</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.621628045157457)">0.535</th><th style="background:rgba(30.0, 136.0, 229.0, 0.014656367597544028)">-0.017</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4560903149138443)">0.397</th></tr><tr><th>▁Mann</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.006773618538324436)">-0.009</th><th style="background:rgba(30.0, 136.0, 229.0, 0.6925727866904338)">-0.595</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.4797385620915033)">0.414</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_férfi_de_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="qlyqyodyychxtrdkxbbu_viz_container">
4
+ <div id="qlyqyodyychxtrdkxbbu_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "qlyqyodyychxtrdkxbbu_saliency_plot_container" class="qlyqyodyychxtrdkxbbu_viz_container" style="display:block">
6
+
7
+ <div id="mywqpvfrigctnkwlvgte_saliency_plot" class="mywqpvfrigctnkwlvgte_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁Er</th><th>▁ist</th><th>▁ein</th><th>▁Mann.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7004555357496535)">0.66</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4718558130322837)">0.45</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2117250940780353)">0.203</th><th style="background:rgba(255.0, 13.0, 87.0, 0.22749059219647458)">0.219</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5822142998613588)">0.552</th></tr><tr><th>▁férfi.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7950485244602892)">0.751</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7477520301049713)">0.701</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6846900376312143)">0.645</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.945</th><th style="background:rgba(30.0, 136.0, 229.0, 0.07771836007130117)">-0.078</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="aatkcwgvuchktsywtedp_viz_container">
27
+ <div id="aatkcwgvuchktsywtedp_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "aatkcwgvuchktsywtedp_saliency_plot_container" class="aatkcwgvuchktsywtedp_viz_container" style="display:block">
29
+
30
+ <div id="zvmpropmtczokfqgodlk_saliency_plot" class="zvmpropmtczokfqgodlk_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁Er</th><th>▁ist</th><th>▁ein</th><th>▁Mann.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Er</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.5822142998613588)">0.553</th><th style="background:rgba(255.0, 13.0, 87.0, 0.219607843137255)">0.208</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.003</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4560903149138443)">0.428</th></tr><tr><th>▁ist</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7477520301049713)">0.706</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.003</th><th style="background:rgba(255.0, 13.0, 87.0, 0.18019409784115661)">0.174</th></tr><tr><th>▁ein</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.244</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6452762923351159)">0.607</th></tr><tr><th>▁Mann.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.34573182808476927)">-0.327</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_férfi_en.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="gsmfbxpfbdtwohikxdhk_viz_container">
4
+ <div id="gsmfbxpfbdtwohikxdhk_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "gsmfbxpfbdtwohikxdhk_saliency_plot_container" class="gsmfbxpfbdtwohikxdhk_viz_container" style="display:block">
6
+
7
+ <div id="uhrundotdagfbzhxqvus_saliency_plot" class="uhrundotdagfbzhxqvus_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He</th><th>'</th><th>s</th><th>▁a</th><th>▁man</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5585660526836996)">0.483</th><th style="background:rgba(255.0, 13.0, 87.0, 0.48762131115072294)">0.425</th><th style="background:rgba(255.0, 13.0, 87.0, 0.43244206773618543)">0.372</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.228</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.262</th><th style="background:rgba(255.0, 13.0, 87.0, 0.26690433749257286)">0.236</th><th style="background:rgba(30.0, 136.0, 229.0, 0.5822142998613588)">-0.501</th></tr><tr><th>▁férfi</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.866</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5900970489205783)">0.508</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5349178055060405)">0.46</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5664488017429193)">0.487</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8817587641117054)">0.762</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5743315508021392)">0.498</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8108140225787285)">0.704</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14078035254505847)">0.128</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5033868092691621)">0.433</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06195286195286207)">0.059</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.115</th><th style="background:rgba(30.0, 136.0, 229.0, 0.05407011289364222)">-0.048</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9369380075262429)">0.807</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.108</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="fxnmbpfzytzbcxmwtfpu_viz_container">
27
+ <div id="fxnmbpfzytzbcxmwtfpu_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "fxnmbpfzytzbcxmwtfpu_saliency_plot_container" class="fxnmbpfzytzbcxmwtfpu_viz_container" style="display:block">
29
+
30
+ <div id="gwcoabiwsttteegzrlzg_saliency_plot" class="gwcoabiwsttteegzrlzg_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁He</th><th>'</th><th>s</th><th>▁a</th><th>▁man</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁He</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7083382848088731)">0.611</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5112695583283818)">0.446</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2826698356110118)">0.244</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.26</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.078</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.172</th></tr><tr><th>'</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7714002772826303)">0.668</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2117250940780353)">0.189</th><th style="background:rgba(255.0, 13.0, 87.0, 0.16442859972271742)">0.144</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.053</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2747870865517925)">0.242</th></tr><tr><th>s</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8975242622301447)">0.776</th><th style="background:rgba(255.0, 13.0, 87.0, 0.23537334125569415)">0.207</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2117250940780353)">0.189</th><th style="background:rgba(30.0, 136.0, 229.0, 0.10924935630817977)">-0.098</th></tr><tr><th>▁a</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.5349178055060405)">0.467</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.001</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3142008318478907)">0.275</th></tr><tr><th>▁man</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.03830461477520289)">0.035</th><th style="background:rgba(255.0, 13.0, 87.0, 0.26690433749257286)">0.235</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.12501485442661905)">-0.113</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_férfi_en_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="ogahrwdjgjrvvrokjzej_viz_container">
4
+ <div id="ogahrwdjgjrvvrokjzej_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "ogahrwdjgjrvvrokjzej_saliency_plot_container" class="ogahrwdjgjrvvrokjzej_viz_container" style="display:block">
6
+
7
+ <div id="aygowkkzodwjmrvuquqh_saliency_plot" class="aygowkkzodwjmrvuquqh_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He's</th><th>▁a</th><th>▁man.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5349178055060405)">0.486</th><th style="background:rgba(255.0, 13.0, 87.0, 0.20384234501881549)">0.187</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.181</th><th style="background:rgba(30.0, 136.0, 229.0, 0.5428005545652604)">-0.496</th></tr><tr><th>▁férfi.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9684690037631213)">0.874</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4797385620915033)">0.435</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.909</th><th style="background:rgba(255.0, 13.0, 87.0, 0.865993265993266)">0.789</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="llykjbfuhhnsnmufvlyx_viz_container">
27
+ <div id="llykjbfuhhnsnmufvlyx_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "llykjbfuhhnsnmufvlyx_saliency_plot_container" class="llykjbfuhhnsnmufvlyx_viz_container" style="display:block">
29
+
30
+ <div id="xmwcalqibtoldsnajylv_saliency_plot" class="xmwcalqibtoldsnajylv_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁He's</th><th>▁a</th><th>▁man.</th><th>&lt;/s&gt;</th></tr><tr><th>▁He's</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.9684690037631213)">0.881</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3142008318478907)">0.285</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.239</th></tr><tr><th>▁a</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.26690433749257286)">0.243</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.273</th></tr><tr><th>▁man.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.012</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_férfi_fr.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="sxuqgxqozzqwnycnlmhk_viz_container">
4
+ <div id="sxuqgxqozzqwnycnlmhk_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "sxuqgxqozzqwnycnlmhk_saliency_plot_container" class="sxuqgxqozzqwnycnlmhk_viz_container" style="display:block">
6
+
7
+ <div id="crzlukdranmrppjbzynd_saliency_plot" class="crzlukdranmrppjbzynd_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁C</th><th>'</th><th>est</th><th>▁un</th><th>▁homme</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8423450188156072)">0.804</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2747870865517925)">0.268</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.053</th><th style="background:rgba(30.0, 136.0, 229.0, 0.03042186571598325)">-0.035</th><th style="background:rgba(255.0, 13.0, 87.0, 0.12501485442661908)">0.121</th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.015</th><th style="background:rgba(30.0, 136.0, 229.0, 0.2669043374925727)">-0.261</th></tr><tr><th>▁férfi</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4009110714993067)">0.388</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.194</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3142008318478907)">0.304</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2117250940780353)">0.207</th><th style="background:rgba(255.0, 13.0, 87.0, 0.976351752822341)">0.935</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14078035254505847)">0.138</th><th style="background:rgba(255.0, 13.0, 87.0, 0.18019409784115661)">0.175</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4718558130322837)">0.451</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3536145771439889)">0.34</th><th style="background:rgba(255.0, 13.0, 87.0, 0.20384234501881549)">0.202</th><th style="background:rgba(255.0, 13.0, 87.0, 0.20384234501881549)">0.201</th><th style="background:rgba(30.0, 136.0, 229.0, 0.006773618538324436)">-0.009</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.958</th><th style="background:rgba(255.0, 13.0, 87.0, 0.33784907902554967)">0.327</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="zlbydkrkutkfrtdfywir_viz_container">
27
+ <div id="zlbydkrkutkfrtdfywir_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "zlbydkrkutkfrtdfywir_saliency_plot_container" class="zlbydkrkutkfrtdfywir_viz_container" style="display:block">
29
+
30
+ <div id="brpqjegmieodavpnzvvl_saliency_plot" class="brpqjegmieodavpnzvvl_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁C</th><th>'</th><th>est</th><th>▁un</th><th>▁homme</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁C</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.9211725094078035)">0.88</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8265795206971679)">0.789</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5664488017429193)">0.541</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.083</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.016</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2826698356110118)">0.274</th></tr><tr><th>'</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.5112695583283818)">0.491</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3299663299663301)">0.318</th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.01</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.112</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.244</th></tr><tr><th>est</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.755634779164191)">0.722</th><th style="background:rgba(30.0, 136.0, 229.0, 0.05407011289364222)">-0.057</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14078035254505847)">0.139</th><th style="background:rgba(30.0, 136.0, 229.0, 0.09348385818974048)">-0.096</th></tr><tr><th>▁un</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.3299663299663301)">0.317</th><th style="background:rgba(255.0, 13.0, 87.0, 0.17231134878193693)">0.167</th><th style="background:rgba(255.0, 13.0, 87.0, 0.16442859972271742)">0.163</th></tr><tr><th>▁homme</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.059</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.075</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8265795206971679)">0.786</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_férfi_fr_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="bdtzwkvhdwtkrcmsacpl_viz_container">
4
+ <div id="bdtzwkvhdwtkrcmsacpl_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "bdtzwkvhdwtkrcmsacpl_saliency_plot_container" class="bdtzwkvhdwtkrcmsacpl_viz_container" style="display:block">
6
+
7
+ <div id="anakpgyzzudmkarmuivx_saliency_plot" class="anakpgyzzudmkarmuivx_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁C'est</th><th>▁un</th><th>▁homme.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7319865319865321)">0.705</th><th style="background:rgba(30.0, 136.0, 229.0, 0.022539116656763607)">-0.026</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.071</th><th style="background:rgba(30.0, 136.0, 229.0, 0.25902158843335304)">-0.255</th></tr><tr><th>▁férfi.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7319865319865321)">0.709</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.249</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.97</th><th style="background:rgba(255.0, 13.0, 87.0, 0.306318082788671)">0.3</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="cxbmbcniofqfosopgdhj_viz_container">
27
+ <div id="cxbmbcniofqfosopgdhj_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "cxbmbcniofqfosopgdhj_saliency_plot_container" class="cxbmbcniofqfosopgdhj_viz_container" style="display:block">
29
+
30
+ <div id="doyjgfsomfmfmvlzipdp_saliency_plot" class="doyjgfsomfmfmvlzipdp_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁C'est</th><th>▁un</th><th>▁homme.</th><th>&lt;/s&gt;</th></tr><tr><th>▁C'est</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.968</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.055</th><th style="background:rgba(255.0, 13.0, 87.0, 0.44820756585462457)">0.439</th></tr><tr><th>▁un</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.22749059219647458)">0.226</th><th style="background:rgba(255.0, 13.0, 87.0, 0.16442859972271742)">0.16</th></tr><tr><th>▁homme.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8186967716379481)">0.791</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_mérnök_de.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="vigkucjirtdhxebmodpe_viz_container">
4
+ <div id="vigkucjirtdhxebmodpe_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "vigkucjirtdhxebmodpe_saliency_plot_container" class="vigkucjirtdhxebmodpe_viz_container" style="display:block">
6
+
7
+ <div id="fjiempsmaycwrqxmyddk_saliency_plot" class="fjiempsmaycwrqxmyddk_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁Er</th><th>▁ist</th><th>▁Ingenieur</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8975242622301447)">0.73</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5585660526836996)">0.46</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2826698356110118)">0.231</th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.012</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6768072885719946)">0.554</th></tr><tr><th>▁</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6846900376312143)">0.56</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8502277678748268)">0.695</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.165</th><th style="background:rgba(30.0, 136.0, 229.0, 0.014656367597544028)">-0.013</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2826698356110118)">0.233</th></tr><tr><th>mérnök</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4245593186769657)">0.346</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5349178055060405)">0.436</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9054070112893643)">0.738</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6846900376312143)">0.559</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5270350564468211)">0.43</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.219607843137255)">0.182</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2747870865517925)">0.228</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2747870865517925)">0.226</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.817</th><th style="background:rgba(255.0, 13.0, 87.0, 0.55068330362448)">0.451</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="nzjfwtxwfapllbrefxzb_viz_container">
27
+ <div id="nzjfwtxwfapllbrefxzb_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "nzjfwtxwfapllbrefxzb_saliency_plot_container" class="nzjfwtxwfapllbrefxzb_viz_container" style="display:block">
29
+
30
+ <div id="iibqwyvexbvsapyyphwp_saliency_plot" class="iibqwyvexbvsapyyphwp_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁Er</th><th>▁ist</th><th>▁Ingenieur</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Er</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.306318082788671)">0.253</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29055258467023165)">0.243</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.064</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.006</th></tr><tr><th>▁ist</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.6295107942166767)">0.515</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14078035254505847)">0.119</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.006</th></tr><tr><th>▁Ingenieur</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.03042186571598325)">-0.027</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5822142998613588)">0.474</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.16</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_mérnök_de_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="mrrggukdryfbuzseymfk_viz_container">
4
+ <div id="mrrggukdryfbuzseymfk_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "mrrggukdryfbuzseymfk_saliency_plot_container" class="mrrggukdryfbuzseymfk_viz_container" style="display:block">
6
+
7
+ <div id="eilvnhdihosgnantmjku_saliency_plot" class="eilvnhdihosgnantmjku_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁Er</th><th>▁ist</th><th>▁Ingenieur.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6925727866904339)">0.656</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4245593186769657)">0.409</th><th style="background:rgba(255.0, 13.0, 87.0, 0.09348385818974037)">0.093</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5585660526836996)">0.534</th></tr><tr><th>▁mérnök.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7950485244602892)">0.754</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9290552584670234)">0.884</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.955</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5979797979797981)">0.57</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="homezdkhcpbtpyxtfdam_viz_container">
27
+ <div id="homezdkhcpbtpyxtfdam_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "homezdkhcpbtpyxtfdam_saliency_plot_container" class="homezdkhcpbtpyxtfdam_viz_container" style="display:block">
29
+
30
+ <div id="ntlncdeasysdyhnfixye_saliency_plot" class="ntlncdeasysdyhnfixye_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁Er</th><th>▁ist</th><th>▁Ingenieur.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Er</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.23537334125569415)">0.225</th><th style="background:rgba(255.0, 13.0, 87.0, 0.12501485442661908)">0.12</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.005</th></tr><tr><th>▁ist</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.26690433749257286)">0.257</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.006</th></tr><tr><th>▁Ingenieur.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.6531590413943356)">0.624</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_mérnök_en.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="hvtwogbfepuaccnldvhg_viz_container">
4
+ <div id="hvtwogbfepuaccnldvhg_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "hvtwogbfepuaccnldvhg_saliency_plot_container" class="hvtwogbfepuaccnldvhg_viz_container" style="display:block">
6
+
7
+ <div id="kftxmncrltbwtybaiarv_saliency_plot" class="kftxmncrltbwtybaiarv_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He</th><th>'</th><th>s</th><th>▁an</th><th>▁engineer</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.43244206773618543)">0.422</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3299663299663301)">0.323</th><th style="background:rgba(255.0, 13.0, 87.0, 0.15654585066349747)">0.159</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.082</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.134</th><th style="background:rgba(255.0, 13.0, 87.0, 0.09348385818974037)">0.096</th><th style="background:rgba(30.0, 136.0, 229.0, 0.440324816795405)">-0.427</th></tr><tr><th>▁mérnök</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9369380075262429)">0.906</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7083382848088731)">0.687</th><th style="background:rgba(255.0, 13.0, 87.0, 0.44820756585462457)">0.438</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.006</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.974</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6846900376312143)">0.664</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7398692810457518)">0.719</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.024</th><th style="background:rgba(255.0, 13.0, 87.0, 0.48762131115072294)">0.476</th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.026</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.069</th><th style="background:rgba(30.0, 136.0, 229.0, 0.06195286195286191)">-0.061</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6689245395127748)">0.648</th><th style="background:rgba(255.0, 13.0, 87.0, 0.18019409784115661)">0.178</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="xccuwrrbeenfpdcxxmwb_viz_container">
27
+ <div id="xccuwrrbeenfpdcxxmwb_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "xccuwrrbeenfpdcxxmwb_saliency_plot_container" class="xccuwrrbeenfpdcxxmwb_viz_container" style="display:block">
29
+
30
+ <div id="oahbopbgsxsegzrgltkg_saliency_plot" class="oahbopbgsxsegzrgltkg_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁He</th><th>'</th><th>s</th><th>▁an</th><th>▁engineer</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁He</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.4560903149138443)">0.444</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5585660526836996)">0.548</th><th style="background:rgba(255.0, 13.0, 87.0, 0.44032481679540497)">0.431</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.049</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10136660724896006)">0.105</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.131</th></tr><tr><th>'</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7162210338680925)">0.695</th><th style="background:rgba(255.0, 13.0, 87.0, 0.306318082788671)">0.304</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06195286195286207)">0.061</th><th style="background:rgba(255.0, 13.0, 87.0, 0.09348385818974037)">0.094</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29055258467023165)">0.282</th></tr><tr><th>s</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.865993265993266)">0.843</th><th style="background:rgba(255.0, 13.0, 87.0, 0.030421865715983164)">0.038</th><th style="background:rgba(255.0, 13.0, 87.0, 0.32208358090711037)">0.315</th><th style="background:rgba(30.0, 136.0, 229.0, 0.14866310160427798)">-0.149</th></tr><tr><th>▁an</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.14866310160427795)">0.148</th><th style="background:rgba(255.0, 13.0, 87.0, 0.03830461477520289)">0.045</th><th style="background:rgba(255.0, 13.0, 87.0, 0.39302832244008706)">0.384</th></tr><tr><th>▁engineer</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.09348385818974037)">0.095</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.006</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.04618736383442258)">-0.046</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_mérnök_en_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="nqgppktswumomoajwozi_viz_container">
4
+ <div id="nqgppktswumomoajwozi_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "nqgppktswumomoajwozi_saliency_plot_container" class="nqgppktswumomoajwozi_viz_container" style="display:block">
6
+
7
+ <div id="huabfvhhbcudagjlxugv_saliency_plot" class="huabfvhhbcudagjlxugv_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He's</th><th>▁an</th><th>▁engineer.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.32208358090711037)">0.323</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.061</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10136660724896006)">0.101</th><th style="background:rgba(30.0, 136.0, 229.0, 0.4324420677361853)">-0.436</th></tr><tr><th>▁mérnök.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9527035056446822)">0.946</th><th style="background:rgba(255.0, 13.0, 87.0, 0.03830461477520289)">0.042</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9684690037631213)">0.963</th><th style="background:rgba(255.0, 13.0, 87.0, 0.77928302634185)">0.778</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="ekhroqwiuyzkozvpaand_viz_container">
27
+ <div id="ekhroqwiuyzkozvpaand_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "ekhroqwiuyzkozvpaand_saliency_plot_container" class="ekhroqwiuyzkozvpaand_viz_container" style="display:block">
29
+
30
+ <div id="vdgkkmwwemgqcwdpwluc_saliency_plot" class="vdgkkmwwemgqcwdpwluc_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁He's</th><th>▁an</th><th>▁engineer.</th><th>&lt;/s&gt;</th></tr><tr><th>▁He's</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.997</th><th style="background:rgba(255.0, 13.0, 87.0, 0.219607843137255)">0.219</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1880768469003763)">0.19</th></tr><tr><th>▁an</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.118</th><th style="background:rgba(255.0, 13.0, 87.0, 0.39302832244008706)">0.392</th></tr><tr><th>▁engineer.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.11713210536739943)">-0.123</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_mérnök_fr.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="evnjrxewlohikdssjwbq_viz_container">
4
+ <div id="evnjrxewlohikdssjwbq_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "evnjrxewlohikdssjwbq_saliency_plot_container" class="evnjrxewlohikdssjwbq_viz_container" style="display:block">
6
+
7
+ <div id="rrbmvmzbwpovkgloagty_saliency_plot" class="rrbmvmzbwpovkgloagty_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁C</th><th>'</th><th>est</th><th>▁un</th><th>▁</th><th>ingénieur</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.865993265993266)">0.822</th><th style="background:rgba(255.0, 13.0, 87.0, 0.24325609031491383)">0.233</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10924935630817992)">0.107</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14078035254505847)">0.137</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5112695583283818)">0.484</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2117250940780353)">0.201</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14078035254505847)">0.134</th><th style="background:rgba(30.0, 136.0, 229.0, 0.04618736383442258)">-0.046</th></tr><tr><th>▁mérnök</th><th style="background:rgba(30.0, 136.0, 229.0, 0.08560110913052085)">-0.085</th><th style="background:rgba(30.0, 136.0, 229.0, 0.014656367597544028)">-0.018</th><th style="background:rgba(255.0, 13.0, 87.0, 0.12501485442661908)">0.124</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7319865319865321)">0.696</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5112695583283818)">0.488</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6531590413943356)">0.619</th><th style="background:rgba(30.0, 136.0, 229.0, 0.05407011289364222)">-0.054</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.003</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5900970489205783)">0.564</th><th style="background:rgba(255.0, 13.0, 87.0, 0.219607843137255)">0.209</th><th style="background:rgba(255.0, 13.0, 87.0, 0.030421865715983164)">0.032</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5191523073876015)">0.495</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6058625470390177)">0.576</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.247</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9684690037631213)">0.92</th><th style="background:rgba(255.0, 13.0, 87.0, 0.48762131115072294)">0.464</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="relkjhrxhuaupokuchxu_viz_container">
27
+ <div id="relkjhrxhuaupokuchxu_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "relkjhrxhuaupokuchxu_saliency_plot_container" class="relkjhrxhuaupokuchxu_viz_container" style="display:block">
29
+
30
+ <div id="bpaqgtkbjgddgkxszukg_saliency_plot" class="bpaqgtkbjgddgkxszukg_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁C</th><th>'</th><th>est</th><th>▁un</th><th>▁</th><th>ingénieur</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁C</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.95</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8817587641117054)">0.832</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3851455733808676)">0.369</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.13</th><th style="background:rgba(255.0, 13.0, 87.0, 0.12501485442661908)">0.122</th><th style="background:rgba(30.0, 136.0, 229.0, 0.014656367597544028)">-0.015</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.25</th></tr><tr><th>'</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.5585660526836996)">0.529</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1880768469003763)">0.179</th><th style="background:rgba(30.0, 136.0, 229.0, 0.014656367597544028)">-0.017</th><th style="background:rgba(255.0, 13.0, 87.0, 0.09348385818974037)">0.092</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.059</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.285</th></tr><tr><th>est</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.288</th><th style="background:rgba(255.0, 13.0, 87.0, 0.41667656961774624)">0.397</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06195286195286207)">0.061</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10136660724896006)">0.102</th><th style="background:rgba(30.0, 136.0, 229.0, 0.006773618538324436)">-0.011</th></tr><tr><th>▁un</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.14866310160427795)">0.143</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1880768469003763)">0.18</th><th style="background:rgba(255.0, 13.0, 87.0, 0.36149732620320857)">0.343</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3536145771439889)">0.339</th></tr><tr><th>▁</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7083382848088731)">0.675</th><th style="background:rgba(30.0, 136.0, 229.0, 0.022539116656763607)">-0.024</th><th style="background:rgba(30.0, 136.0, 229.0, 0.03042186571598325)">-0.032</th></tr><tr><th>ingénieur</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.014656367597544028)">-0.018</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10136660724896006)">0.097</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.755634779164191)">0.716</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_mérnök_fr_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="vzawdnakkhtdmuvbjvxg_viz_container">
4
+ <div id="vzawdnakkhtdmuvbjvxg_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "vzawdnakkhtdmuvbjvxg_saliency_plot_container" class="vzawdnakkhtdmuvbjvxg_viz_container" style="display:block">
6
+
7
+ <div id="qkctiurloqytqdvefukc_saliency_plot" class="qkctiurloqytqdvefukc_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁C'est</th><th>▁un</th><th>▁ingénieur.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9684690037631213)">0.892</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.11</th><th style="background:rgba(255.0, 13.0, 87.0, 0.22749059219647458)">0.213</th><th style="background:rgba(30.0, 136.0, 229.0, 0.04618736383442258)">-0.045</th></tr><tr><th>▁mérnök.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.48762131115072294)">0.453</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9054070112893643)">0.836</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.927</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5112695583283818)">0.476</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="gdsixcsmxuxzyjnyvcnm_viz_container">
27
+ <div id="gdsixcsmxuxzyjnyvcnm_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "gdsixcsmxuxzyjnyvcnm_saliency_plot_container" class="gdsixcsmxuxzyjnyvcnm_viz_container" style="display:block">
29
+
30
+ <div id="qlihaluclfohccnxubwg_saliency_plot" class="qlihaluclfohccnxubwg_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁C'est</th><th>▁un</th><th>▁ingénieur.</th><th>&lt;/s&gt;</th></tr><tr><th>▁C'est</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.5822142998613588)">0.537</th><th style="background:rgba(255.0, 13.0, 87.0, 0.22749059219647458)">0.211</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5349178055060405)">0.497</th></tr><tr><th>▁un</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.24325609031491383)">0.225</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3536145771439889)">0.329</th></tr><tr><th>▁ingénieur.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7004555357496535)">0.646</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_nő_de.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="xyymjeoayssnisewijfz_viz_container">
4
+ <div id="xyymjeoayssnisewijfz_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "xyymjeoayssnisewijfz_saliency_plot_container" class="xyymjeoayssnisewijfz_viz_container" style="display:block">
6
+
7
+ <div id="oommayqfxylzivinhkto_saliency_plot" class="oommayqfxylzivinhkto_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁Sie</th><th>▁ist</th><th>▁eine</th><th>▁Frau</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8423450188156072)">0.749</th><th style="background:rgba(255.0, 13.0, 87.0, 0.41667656961774624)">0.372</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5112695583283818)">0.459</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.271</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.12</th><th style="background:rgba(30.0, 136.0, 229.0, 0.04618736383442258)">-0.046</th></tr><tr><th>▁nő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6058625470390177)">0.541</th><th style="background:rgba(255.0, 13.0, 87.0, 0.41667656961774624)">0.375</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5349178055060405)">0.479</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6058625470390177)">0.543</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4560903149138443)">0.409</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4245593186769657)">0.379</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4245593186769657)">0.382</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3536145771439889)">0.317</th><th style="background:rgba(255.0, 13.0, 87.0, 0.44820756585462457)">0.402</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3772628243216479)">0.337</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.896</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2826698356110118)">0.256</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="ppepjecwiugtwoutkyfv_viz_container">
27
+ <div id="ppepjecwiugtwoutkyfv_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "ppepjecwiugtwoutkyfv_saliency_plot_container" class="ppepjecwiugtwoutkyfv_viz_container" style="display:block">
29
+
30
+ <div id="xxaqbmbgbudatwlihphg_saliency_plot" class="xxaqbmbgbudatwlihphg_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁Sie</th><th>▁ist</th><th>▁eine</th><th>▁Frau</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Sie</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8817587641117054)">0.788</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3536145771439889)">0.316</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.052</th><th style="background:rgba(255.0, 13.0, 87.0, 0.030421865715983164)">0.028</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2747870865517925)">0.247</th></tr><tr><th>▁ist</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.6137452960982372)">0.547</th><th style="background:rgba(255.0, 13.0, 87.0, 0.306318082788671)">0.273</th><th style="background:rgba(30.0, 136.0, 229.0, 0.006773618538324436)">-0.007</th><th style="background:rgba(30.0, 136.0, 229.0, 0.09348385818974048)">-0.086</th></tr><tr><th>▁eine</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7398692810457518)">0.664</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.11</th><th style="background:rgba(30.0, 136.0, 229.0, 0.2038423450188156)">-0.188</th></tr><tr><th>▁Frau</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.05</th><th style="background:rgba(30.0, 136.0, 229.0, 0.46397306397306387)">-0.416</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8029312735195088)">0.715</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_nő_de_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="ilkoweoomtaqfktlklss_viz_container">
4
+ <div id="ilkoweoomtaqfktlklss_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "ilkoweoomtaqfktlklss_saliency_plot_container" class="ilkoweoomtaqfktlklss_viz_container" style="display:block">
6
+
7
+ <div id="ahlljmkydzawusmfzwiv_saliency_plot" class="ahlljmkydzawusmfzwiv_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁Sie</th><th>▁ist</th><th>▁eine</th><th>▁Frau.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7241037829273124)">0.657</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3851455733808676)">0.35</th><th style="background:rgba(255.0, 13.0, 87.0, 0.46397306397306415)">0.424</th><th style="background:rgba(255.0, 13.0, 87.0, 0.17231134878193693)">0.161</th><th style="background:rgba(30.0, 136.0, 229.0, 0.06195286195286191)">-0.057</th></tr><tr><th>▁nő.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8344622697563875)">0.754</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6295107942166767)">0.572</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7635175282234107)">0.692</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.906</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9842345018815607)">0.886</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="elwqkpejscgkqxshxrlj_viz_container">
27
+ <div id="elwqkpejscgkqxshxrlj_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "elwqkpejscgkqxshxrlj_saliency_plot_container" class="elwqkpejscgkqxshxrlj_viz_container" style="display:block">
29
+
30
+ <div id="yskxeatzcgfsmstepskq_saliency_plot" class="yskxeatzcgfsmstepskq_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁Sie</th><th>▁ist</th><th>▁eine</th><th>▁Frau.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Sie</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8186967716379481)">0.742</th><th style="background:rgba(255.0, 13.0, 87.0, 0.32208358090711037)">0.292</th><th style="background:rgba(255.0, 13.0, 87.0, 0.030421865715983164)">0.035</th><th style="background:rgba(255.0, 13.0, 87.0, 0.33784907902554967)">0.308</th></tr><tr><th>▁ist</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.5585660526836996)">0.506</th><th style="background:rgba(255.0, 13.0, 87.0, 0.17231134878193693)">0.157</th><th style="background:rgba(30.0, 136.0, 229.0, 0.11713210536739943)">-0.107</th></tr><tr><th>▁eine</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.39302832244008706)">0.358</th><th style="background:rgba(30.0, 136.0, 229.0, 0.25902158843335304)">-0.234</th></tr><tr><th>▁Frau.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.227</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_nő_en.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="jdxxflwlozofutuxflqp_viz_container">
4
+ <div id="jdxxflwlozofutuxflqp_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "jdxxflwlozofutuxflqp_saliency_plot_container" class="jdxxflwlozofutuxflqp_viz_container" style="display:block">
6
+
7
+ <div id="ffkrllfdhvtwfxtglqwy_saliency_plot" class="ffkrllfdhvtwfxtglqwy_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁She</th><th>'</th><th>s</th><th>▁a</th><th>▁woman</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9448207565854626)">0.813</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7398692810457518)">0.637</th><th style="background:rgba(255.0, 13.0, 87.0, 0.36149732620320857)">0.318</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29055258467023165)">0.254</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4245593186769657)">0.372</th><th style="background:rgba(255.0, 13.0, 87.0, 0.26690433749257286)">0.236</th><th style="background:rgba(30.0, 136.0, 229.0, 0.6373935432758963)">-0.55</th></tr><tr><th>▁nő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6689245395127748)">0.577</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4245593186769657)">0.37</th><th style="background:rgba(255.0, 13.0, 87.0, 0.18019409784115661)">0.157</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.259</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5743315508021392)">0.495</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7319865319865321)">0.63</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4560903149138443)">0.396</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.077</th><th style="background:rgba(255.0, 13.0, 87.0, 0.23537334125569415)">0.206</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.063</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.107</th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.011</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8423450188156072)">0.73</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2747870865517925)">0.241</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="bkysetwuuwwxeoomriom_viz_container">
27
+ <div id="bkysetwuuwwxeoomriom_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "bkysetwuuwwxeoomriom_saliency_plot_container" class="bkysetwuuwwxeoomriom_viz_container" style="display:block">
29
+
30
+ <div id="xgwesmibqooxsginaebj_saliency_plot" class="xgwesmibqooxsginaebj_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁She</th><th>'</th><th>s</th><th>▁a</th><th>▁woman</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁She</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7477520301049713)">0.644</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4245593186769657)">0.37</th><th style="background:rgba(255.0, 13.0, 87.0, 0.306318082788671)">0.267</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4797385620915033)">0.413</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.052</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29055258467023165)">0.256</th></tr><tr><th>'</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.9921172509407804)">0.857</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2117250940780353)">0.185</th><th style="background:rgba(255.0, 13.0, 87.0, 0.20384234501881549)">0.179</th><th style="background:rgba(255.0, 13.0, 87.0, 0.03830461477520289)">0.04</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4797385620915033)">0.414</th></tr><tr><th>s</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.866</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3536145771439889)">0.305</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.073</th><th style="background:rgba(30.0, 136.0, 229.0, 0.10136660724896014)">-0.089</th></tr><tr><th>▁a</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.6531590413943356)">0.567</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.003</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4245593186769657)">0.371</th></tr><tr><th>▁woman</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.069</th><th style="background:rgba(255.0, 13.0, 87.0, 0.36149732620320857)">0.315</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.021</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_nő_en_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="hgnnzfkgsmxxizammizf_viz_container">
4
+ <div id="hgnnzfkgsmxxizammizf_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "hgnnzfkgsmxxizammizf_saliency_plot_container" class="hgnnzfkgsmxxizammizf_viz_container" style="display:block">
6
+
7
+ <div id="nwvaxeuptvqtjfdmoawd_saliency_plot" class="nwvaxeuptvqtjfdmoawd_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁She's</th><th>▁a</th><th>▁woman.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8344622697563875)">0.788</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2117250940780353)">0.206</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.246</th><th style="background:rgba(30.0, 136.0, 229.0, 0.5822142998613588)">-0.55</th></tr><tr><th>▁nő.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6531590413943356)">0.616</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.248</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8975242622301447)">0.847</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5349178055060405)">0.51</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="htaqgqgrekfcdhfmkvre_viz_container">
27
+ <div id="htaqgqgrekfcdhfmkvre_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "htaqgqgrekfcdhfmkvre_saliency_plot_container" class="htaqgqgrekfcdhfmkvre_viz_container" style="display:block">
29
+
30
+ <div id="xxtdbltwibnhxrpzporu_saliency_plot" class="xxtdbltwibnhxrpzporu_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁She's</th><th>▁a</th><th>▁woman.</th><th>&lt;/s&gt;</th></tr><tr><th>▁She's</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.946</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4009110714993067)">0.381</th><th style="background:rgba(255.0, 13.0, 87.0, 0.49550406020994264)">0.469</th></tr><tr><th>▁a</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.29055258467023165)">0.276</th><th style="background:rgba(255.0, 13.0, 87.0, 0.39302832244008706)">0.372</th></tr><tr><th>▁woman.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.29055258467023165)">0.281</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_nő_fr.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="doqsotpwncjioiqotesy_viz_container">
4
+ <div id="doqsotpwncjioiqotesy_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "doqsotpwncjioiqotesy_saliency_plot_container" class="doqsotpwncjioiqotesy_viz_container" style="display:block">
6
+
7
+ <div id="rlswotchjbvupcaejuih_saliency_plot" class="rlswotchjbvupcaejuih_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁C</th><th>'</th><th>est</th><th>▁une</th><th>▁femme</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7871657754010695)">0.782</th><th style="background:rgba(255.0, 13.0, 87.0, 0.18019409784115661)">0.186</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5112695583283818)">0.508</th><th style="background:rgba(255.0, 13.0, 87.0, 0.32208358090711037)">0.324</th><th style="background:rgba(30.0, 136.0, 229.0, 0.006773618538324436)">-0.009</th><th style="background:rgba(30.0, 136.0, 229.0, 0.04618736383442258)">-0.051</th><th style="background:rgba(30.0, 136.0, 229.0, 0.16442859972271748)">-0.17</th></tr><tr><th>▁nő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2747870865517925)">0.277</th><th style="background:rgba(255.0, 13.0, 87.0, 0.39302832244008706)">0.39</th><th style="background:rgba(255.0, 13.0, 87.0, 0.39302832244008706)">0.394</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.119</th><th style="background:rgba(30.0, 136.0, 229.0, 0.04618736383442258)">-0.049</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.194</th><th style="background:rgba(255.0, 13.0, 87.0, 0.621628045157457)">0.617</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5664488017429193)">0.558</th><th style="background:rgba(255.0, 13.0, 87.0, 0.17231134878193693)">0.175</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14866310160427795)">0.15</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29055258467023165)">0.288</th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.025</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8738760150524857)">0.861</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.257</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="aphwazqumpuwqarxhltv_viz_container">
27
+ <div id="aphwazqumpuwqarxhltv_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "aphwazqumpuwqarxhltv_saliency_plot_container" class="aphwazqumpuwqarxhltv_viz_container" style="display:block">
29
+
30
+ <div id="oykvkrenvimpbjwmbcuv_saliency_plot" class="oykvkrenvimpbjwmbcuv_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁C</th><th>'</th><th>est</th><th>▁une</th><th>▁femme</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁C</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8975242622301447)">0.885</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6137452960982372)">0.607</th><th style="background:rgba(255.0, 13.0, 87.0, 0.55068330362448)">0.547</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10136660724896006)">0.102</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.054</th><th style="background:rgba(255.0, 13.0, 87.0, 0.23537334125569415)">0.233</th></tr><tr><th>'</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.44820756585462457)">0.442</th><th style="background:rgba(255.0, 13.0, 87.0, 0.39302832244008706)">0.392</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.049</th><th style="background:rgba(255.0, 13.0, 87.0, 0.15654585066349747)">0.16</th><th style="background:rgba(255.0, 13.0, 87.0, 0.16442859972271742)">0.169</th></tr><tr><th>est</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.5900970489205783)">0.588</th><th style="background:rgba(30.0, 136.0, 229.0, 0.022539116656763607)">-0.024</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.122</th><th style="background:rgba(30.0, 136.0, 229.0, 0.11713210536739943)">-0.124</th></tr><tr><th>▁une</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.992</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4087938205585263)">0.404</th><th style="background:rgba(255.0, 13.0, 87.0, 0.16442859972271742)">0.163</th></tr><tr><th>▁femme</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.10924935630817992)">0.114</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.053</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.6373935432758963)">0.631</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_nő_fr_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="ptzivotjksdabjzdjwli_viz_container">
4
+ <div id="ptzivotjksdabjzdjwli_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "ptzivotjksdabjzdjwli_saliency_plot_container" class="ptzivotjksdabjzdjwli_viz_container" style="display:block">
6
+
7
+ <div id="xpuhxyoadnkcrmxjpbxs_saliency_plot" class="xpuhxyoadnkcrmxjpbxs_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁C'est</th><th>▁une</th><th>▁femme.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.77928302634185)">0.723</th><th style="background:rgba(255.0, 13.0, 87.0, 0.26690433749257286)">0.248</th><th style="background:rgba(30.0, 136.0, 229.0, 0.006773618538324436)">-0.012</th><th style="background:rgba(30.0, 136.0, 229.0, 0.1565458506634977)">-0.153</th></tr><tr><th>▁nő.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7398692810457518)">0.691</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2826698356110118)">0.268</th><th style="background:rgba(255.0, 13.0, 87.0, 0.44820756585462457)">0.422</th><th style="background:rgba(255.0, 13.0, 87.0, 0.77928302634185)">0.723</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="xuajvzlsxkplgejboxno_viz_container">
27
+ <div id="xuajvzlsxkplgejboxno_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "xuajvzlsxkplgejboxno_saliency_plot_container" class="xuajvzlsxkplgejboxno_viz_container" style="display:block">
29
+
30
+ <div id="cfabreprdbpvefhhtvqe_saliency_plot" class="cfabreprdbpvefhhtvqe_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁C'est</th><th>▁une</th><th>▁femme.</th><th>&lt;/s&gt;</th></tr><tr><th>▁C'est</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.931</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.075</th><th style="background:rgba(255.0, 13.0, 87.0, 0.306318082788671)">0.29</th></tr><tr><th>▁une</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.976351752822341)">0.904</th><th style="background:rgba(255.0, 13.0, 87.0, 0.15654585066349747)">0.147</th></tr><tr><th>▁femme.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.6373935432758963)">0.591</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_nővér_de.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="yfajpifujnimdeywykoq_viz_container">
4
+ <div id="yfajpifujnimdeywykoq_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "yfajpifujnimdeywykoq_saliency_plot_container" class="yfajpifujnimdeywykoq_viz_container" style="display:block">
6
+
7
+ <div id="drslkexjaxgenhyvsxnl_saliency_plot" class="drslkexjaxgenhyvsxnl_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁Sie</th><th>▁ist</th><th>▁</th><th>Krankenschwester</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7635175282234107)">0.7</th><th style="background:rgba(255.0, 13.0, 87.0, 0.755634779164191)">0.689</th><th style="background:rgba(255.0, 13.0, 87.0, 0.030421865715983164)">0.033</th><th style="background:rgba(255.0, 13.0, 87.0, 0.16442859972271742)">0.156</th><th style="background:rgba(255.0, 13.0, 87.0, 0.20384234501881549)">0.187</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.179</th></tr><tr><th>▁nővér</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4560903149138443)">0.417</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6610417904535549)">0.603</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6058625470390177)">0.553</th><th style="background:rgba(255.0, 13.0, 87.0, 0.26690433749257286)">0.248</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5191523073876015)">0.476</th><th style="background:rgba(30.0, 136.0, 229.0, 0.22749059219647463)">-0.21</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6295107942166767)">0.579</th><th style="background:rgba(255.0, 13.0, 87.0, 0.22749059219647458)">0.214</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14078035254505847)">0.131</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2117250940780353)">0.194</th><th style="background:rgba(255.0, 13.0, 87.0, 0.889641513170925)">0.809</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14078035254505847)">0.135</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="xhzowgcqdiawdhhzuwjd_viz_container">
27
+ <div id="xhzowgcqdiawdhhzuwjd_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "xhzowgcqdiawdhhzuwjd_saliency_plot_container" class="xhzowgcqdiawdhhzuwjd_viz_container" style="display:block">
29
+
30
+ <div id="vzjuzmgdfgqxovhqpdwp_saliency_plot" class="vzjuzmgdfgqxovhqpdwp_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁Sie</th><th>▁ist</th><th>▁</th><th>Krankenschwester</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Sie</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.3693800752624282)">0.34</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4087938205585263)">0.375</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.11</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.083</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2117250940780353)">0.195</th></tr><tr><th>▁ist</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8029312735195088)">0.732</th><th style="background:rgba(255.0, 13.0, 87.0, 0.17231134878193693)">0.163</th><th style="background:rgba(255.0, 13.0, 87.0, 0.12501485442661908)">0.119</th><th style="background:rgba(30.0, 136.0, 229.0, 0.10924935630817977)">-0.102</th></tr><tr><th>▁</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.915</th><th style="background:rgba(255.0, 13.0, 87.0, 0.16442859972271742)">0.15</th><th style="background:rgba(30.0, 136.0, 229.0, 0.10136660724896014)">-0.095</th></tr><tr><th>Krankenschwester</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.219607843137255)">0.202</th><th style="background:rgba(30.0, 136.0, 229.0, 0.29055258467023176)">-0.27</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.9684690037631213)">0.88</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_nővér_de_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="qqjaijllnntttamqngjc_viz_container">
4
+ <div id="qqjaijllnntttamqngjc_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "qqjaijllnntttamqngjc_saliency_plot_container" class="qqjaijllnntttamqngjc_viz_container" style="display:block">
6
+
7
+ <div id="noqozqspdphwxvukqicy_saliency_plot" class="noqozqspdphwxvukqicy_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁Sie</th><th>▁ist</th><th>▁Krankenschwester.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7398692810457518)">0.649</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7319865319865321)">0.644</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.08</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3693800752624282)">0.323</th></tr><tr><th>▁nővér.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.865993265993266)">0.761</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7950485244602892)">0.696</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.878</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3693800752624282)">0.326</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="tyulkiwgxiftdajbkwjy_viz_container">
27
+ <div id="tyulkiwgxiftdajbkwjy_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "tyulkiwgxiftdajbkwjy_saliency_plot_container" class="tyulkiwgxiftdajbkwjy_viz_container" style="display:block">
29
+
30
+ <div id="teximduxqgtczazxsnla_saliency_plot" class="teximduxqgtczazxsnla_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁Sie</th><th>▁ist</th><th>▁Krankenschwester.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Sie</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.36149732620320857)">0.318</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.226</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4009110714993067)">0.352</th></tr><tr><th>▁ist</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.4718558130322837)">0.414</th><th style="background:rgba(30.0, 136.0, 229.0, 0.2038423450188156)">-0.184</th></tr><tr><th>▁Krankenschwester.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.9054070112893643)">0.795</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_nővér_en.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="mmvovbsxcavceamligjn_viz_container">
4
+ <div id="mmvovbsxcavceamligjn_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "mmvovbsxcavceamligjn_saliency_plot_container" class="mmvovbsxcavceamligjn_viz_container" style="display:block">
6
+
7
+ <div id="xkfilriwcfbxbjqhsuna_saliency_plot" class="xkfilriwcfbxbjqhsuna_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁She</th><th>'</th><th>s</th><th>▁a</th><th>▁nurse</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8108140225787285)">0.651</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6137452960982372)">0.491</th><th style="background:rgba(255.0, 13.0, 87.0, 0.41667656961774624)">0.336</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5822142998613588)">0.469</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8029312735195088)">0.644</th><th style="background:rgba(255.0, 13.0, 87.0, 0.22749059219647458)">0.183</th><th style="background:rgba(30.0, 136.0, 229.0, 0.4324420677361853)">-0.35</th></tr><tr><th>▁nővér</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9132897603485836)">0.732</th><th style="background:rgba(255.0, 13.0, 87.0, 0.621628045157457)">0.497</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3536145771439889)">0.283</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6689245395127748)">0.538</th><th style="background:rgba(255.0, 13.0, 87.0, 0.15654585066349747)">0.126</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6846900376312143)">0.551</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9290552584670234)">0.742</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.201</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5191523073876015)">0.416</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06195286195286207)">0.054</th><th style="background:rgba(255.0, 13.0, 87.0, 0.17231134878193693)">0.141</th><th style="background:rgba(30.0, 136.0, 229.0, 0.07771836007130117)">-0.068</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.802</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5112695583283818)">0.409</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="ugyhwxsqllejarslzktl_viz_container">
27
+ <div id="ugyhwxsqllejarslzktl_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "ugyhwxsqllejarslzktl_saliency_plot_container" class="ugyhwxsqllejarslzktl_viz_container" style="display:block">
29
+
30
+ <div id="gdyxzkreuokvfwentzfw_saliency_plot" class="gdyxzkreuokvfwentzfw_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁She</th><th>'</th><th>s</th><th>▁a</th><th>▁nurse</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁She</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7241037829273124)">0.582</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5585660526836996)">0.446</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6452762923351159)">0.52</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6058625470390177)">0.484</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06195286195286207)">0.055</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.069</th></tr><tr><th>'</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.976351752822341)">0.778</th><th style="background:rgba(255.0, 13.0, 87.0, 0.24325609031491383)">0.2</th><th style="background:rgba(255.0, 13.0, 87.0, 0.306318082788671)">0.249</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.048</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3536145771439889)">0.284</th></tr><tr><th>s</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.49550406020994264)">0.401</th><th style="background:rgba(255.0, 13.0, 87.0, 0.18019409784115661)">0.148</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.113</th><th style="background:rgba(30.0, 136.0, 229.0, 0.1328976034858387)">-0.108</th></tr><tr><th>▁a</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.621628045157457)">0.496</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.013</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.21</th></tr><tr><th>▁nurse</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.045</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.107</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.10136660724896014)">-0.087</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_nővér_en_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="bngcqzbpnovkbywcsiji_viz_container">
4
+ <div id="bngcqzbpnovkbywcsiji_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "bngcqzbpnovkbywcsiji_saliency_plot_container" class="bngcqzbpnovkbywcsiji_viz_container" style="display:block">
6
+
7
+ <div id="naejkhjthdlwszfysmbs_saliency_plot" class="naejkhjthdlwszfysmbs_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁She's</th><th>▁a</th><th>▁nurse.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5585660526836996)">0.497</th><th style="background:rgba(255.0, 13.0, 87.0, 0.43244206773618543)">0.382</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5428005545652606)">0.479</th><th style="background:rgba(30.0, 136.0, 229.0, 0.36938007526242816)">-0.327</th></tr><tr><th>▁nővér.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9842345018815607)">0.868</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6610417904535549)">0.589</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6689245395127748)">0.594</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.888</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="otzzbcmlgqdlbopojles_viz_container">
27
+ <div id="otzzbcmlgqdlbopojles_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "otzzbcmlgqdlbopojles_saliency_plot_container" class="otzzbcmlgqdlbopojles_viz_container" style="display:block">
29
+
30
+ <div id="dwjuuksnxqqejlnoabfu_saliency_plot" class="dwjuuksnxqqejlnoabfu_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁She's</th><th>▁a</th><th>▁nurse.</th><th>&lt;/s&gt;</th></tr><tr><th>▁She's</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8029312735195088)">0.712</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6137452960982372)">0.545</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2747870865517925)">0.248</th></tr><tr><th>▁a</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.39302832244008706)">0.347</th><th style="background:rgba(255.0, 13.0, 87.0, 0.219607843137255)">0.197</th></tr><tr><th>▁nurse.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.072</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_nővér_fr.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="kqnvofwpxmaoqllkzxfk_viz_container">
4
+ <div id="kqnvofwpxmaoqllkzxfk_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "kqnvofwpxmaoqllkzxfk_saliency_plot_container" class="kqnvofwpxmaoqllkzxfk_viz_container" style="display:block">
6
+
7
+ <div id="rjeuhjpcnjmjfqxlfxcm_saliency_plot" class="rjeuhjpcnjmjfqxlfxcm_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁C</th><th>'</th><th>est</th><th>▁une</th><th>▁infirmière</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9211725094078035)">0.897</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.08</th><th style="background:rgba(255.0, 13.0, 87.0, 0.03830461477520289)">0.039</th><th style="background:rgba(255.0, 13.0, 87.0, 0.18019409784115661)">0.176</th><th style="background:rgba(255.0, 13.0, 87.0, 0.26690433749257286)">0.266</th><th style="background:rgba(255.0, 13.0, 87.0, 0.030421865715983164)">0.034</th><th style="background:rgba(30.0, 136.0, 229.0, 0.16442859972271748)">-0.162</th></tr><tr><th>▁nővér</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.297</th><th style="background:rgba(30.0, 136.0, 229.0, 0.07771836007130117)">-0.082</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.058</th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.014</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4087938205585263)">0.4</th><th style="background:rgba(30.0, 136.0, 229.0, 0.09348385818974048)">-0.093</th><th style="background:rgba(255.0, 13.0, 87.0, 0.44032481679540497)">0.433</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3299663299663301)">0.327</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.195</th><th style="background:rgba(255.0, 13.0, 87.0, 0.41667656961774624)">0.408</th><th style="background:rgba(255.0, 13.0, 87.0, 0.17231134878193693)">0.17</th><th style="background:rgba(30.0, 136.0, 229.0, 0.03042186571598325)">-0.036</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.977</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3536145771439889)">0.345</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="uepjbcszllyqajhnlnlt_viz_container">
27
+ <div id="uepjbcszllyqajhnlnlt_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "uepjbcszllyqajhnlnlt_saliency_plot_container" class="uepjbcszllyqajhnlnlt_viz_container" style="display:block">
29
+
30
+ <div id="ifiakfusjeehlpdplfav_saliency_plot" class="ifiakfusjeehlpdplfav_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁C</th><th>'</th><th>est</th><th>▁une</th><th>▁infirmière</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁C</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.974</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7635175282234107)">0.743</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6768072885719946)">0.664</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3142008318478907)">0.312</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.051</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2117250940780353)">0.211</th></tr><tr><th>'</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.5349178055060405)">0.526</th><th style="background:rgba(255.0, 13.0, 87.0, 0.39302832244008706)">0.386</th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.011</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10136660724896006)">0.105</th><th style="background:rgba(255.0, 13.0, 87.0, 0.20384234501881549)">0.202</th></tr><tr><th>est</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.6058625470390177)">0.592</th><th style="background:rgba(30.0, 136.0, 229.0, 0.2038423450188156)">-0.203</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.047</th><th style="background:rgba(30.0, 136.0, 229.0, 0.09348385818974048)">-0.092</th></tr><tr><th>▁une</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8108140225787285)">0.793</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.121</th><th style="background:rgba(255.0, 13.0, 87.0, 0.24325609031491383)">0.244</th></tr><tr><th>▁infirmière</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.069</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.057</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7319865319865321)">0.715</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_nővér_fr_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="dssaujuvckihxuhrgrnz_viz_container">
4
+ <div id="dssaujuvckihxuhrgrnz_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "dssaujuvckihxuhrgrnz_saliency_plot_container" class="dssaujuvckihxuhrgrnz_viz_container" style="display:block">
6
+
7
+ <div id="binfjusnrhsrjcjeyrpb_saliency_plot" class="binfjusnrhsrjcjeyrpb_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁C'est</th><th>▁une</th><th>▁infirmière.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8265795206971679)">0.812</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.134</th><th style="background:rgba(255.0, 13.0, 87.0, 0.16442859972271742)">0.168</th><th style="background:rgba(30.0, 136.0, 229.0, 0.12501485442661905)">-0.128</th></tr><tr><th>▁nővér.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5900970489205783)">0.583</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.05</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8502277678748268)">0.837</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5585660526836996)">0.556</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="ofwcickddszqvjaccnzk_viz_container">
27
+ <div id="ofwcickddszqvjaccnzk_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "ofwcickddszqvjaccnzk_saliency_plot_container" class="ofwcickddszqvjaccnzk_viz_container" style="display:block">
29
+
30
+ <div id="hmbrjlqnfzmqsmghcgjl_saliency_plot" class="hmbrjlqnfzmqsmghcgjl_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁C'est</th><th>▁une</th><th>▁infirmière.</th><th>&lt;/s&gt;</th></tr><tr><th>▁C'est</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.99</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.016</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3457318280847692)">0.345</th></tr><tr><th>▁une</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.5270350564468211)">0.52</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.193</th></tr><tr><th>▁infirmière.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7319865319865321)">0.72</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_pék_de.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="opntlnkcwtxjrelrlylp_viz_container">
4
+ <div id="opntlnkcwtxjrelrlylp_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "opntlnkcwtxjrelrlylp_saliency_plot_container" class="opntlnkcwtxjrelrlylp_viz_container" style="display:block">
6
+
7
+ <div id="ojwczvmqbrwvvjhmfivs_saliency_plot" class="ojwczvmqbrwvvjhmfivs_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁Er</th><th>▁ist</th><th>▁Bäcker</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6925727866904339)">0.668</th><th style="background:rgba(255.0, 13.0, 87.0, 0.43244206773618543)">0.42</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.113</th><th style="background:rgba(255.0, 13.0, 87.0, 0.09348385818974037)">0.096</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4797385620915033)">0.461</th></tr><tr><th>▁p</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5979797979797981)">0.576</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3142008318478907)">0.308</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.964</th><th style="background:rgba(255.0, 13.0, 87.0, 0.20384234501881549)">0.196</th><th style="background:rgba(30.0, 136.0, 229.0, 0.21960784313725487)">-0.218</th></tr><tr><th>ék</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29055258467023165)">0.282</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6925727866904339)">0.668</th><th style="background:rgba(255.0, 13.0, 87.0, 0.20384234501881549)">0.196</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4560903149138443)">0.442</th><th style="background:rgba(30.0, 136.0, 229.0, 0.34573182808476927)">-0.338</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.39302832244008706)">0.378</th><th style="background:rgba(255.0, 13.0, 87.0, 0.49550406020994264)">0.48</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14078035254505847)">0.139</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8265795206971679)">0.798</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.115</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="abwghlpwhtlipuwwwvcf_viz_container">
27
+ <div id="abwghlpwhtlipuwwwvcf_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "abwghlpwhtlipuwwwvcf_saliency_plot_container" class="abwghlpwhtlipuwwwvcf_viz_container" style="display:block">
29
+
30
+ <div id="aaoxfmpsqgpvmawbwxff_saliency_plot" class="aaoxfmpsqgpvmawbwxff_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁Er</th><th>▁ist</th><th>▁Bäcker</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Er</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.23537334125569415)">0.228</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.004</th><th style="background:rgba(255.0, 13.0, 87.0, 0.17231134878193693)">0.171</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.115</th></tr><tr><th>▁ist</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.022</th><th style="background:rgba(255.0, 13.0, 87.0, 0.306318082788671)">0.299</th><th style="background:rgba(255.0, 13.0, 87.0, 0.09348385818974037)">0.095</th></tr><tr><th>▁Bäcker</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.03830461477520289)">0.041</th><th style="background:rgba(255.0, 13.0, 87.0, 0.39302832244008706)">0.378</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.6925727866904339)">0.669</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_pék_de_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="kofhophufsywvxljuyir_viz_container">
4
+ <div id="kofhophufsywvxljuyir_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "kofhophufsywvxljuyir_saliency_plot_container" class="kofhophufsywvxljuyir_viz_container" style="display:block">
6
+
7
+ <div id="wggdkltdgognidskjelw_saliency_plot" class="wggdkltdgognidskjelw_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁Er</th><th>▁ist</th><th>▁Bäcker.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6058625470390177)">0.596</th><th style="background:rgba(255.0, 13.0, 87.0, 0.36149732620320857)">0.355</th><th style="background:rgba(255.0, 13.0, 87.0, 0.09348385818974037)">0.098</th><th style="background:rgba(255.0, 13.0, 87.0, 0.39302832244008706)">0.388</th></tr><tr><th>▁pék.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8186967716379481)">0.803</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9290552584670234)">0.915</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.985</th><th style="background:rgba(30.0, 136.0, 229.0, 0.4560903149138443)">-0.451</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="zbbrucerzuqslngeezeq_viz_container">
27
+ <div id="zbbrucerzuqslngeezeq_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "zbbrucerzuqslngeezeq_saliency_plot_container" class="zbbrucerzuqslngeezeq_viz_container" style="display:block">
29
+
30
+ <div id="rgmaqtpivjeutxwwjzlc_saliency_plot" class="rgmaqtpivjeutxwwjzlc_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁Er</th><th>▁ist</th><th>▁Bäcker.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Er</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.1959595959595959)">0.193</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06195286195286207)">0.064</th><th style="background:rgba(255.0, 13.0, 87.0, 0.09348385818974037)">0.097</th></tr><tr><th>▁ist</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.12501485442661908)">0.126</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.08</th></tr><tr><th>▁Bäcker.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8108140225787285)">0.794</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_pék_en.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="lcbvficvztqchrkoabek_viz_container">
4
+ <div id="lcbvficvztqchrkoabek_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "lcbvficvztqchrkoabek_saliency_plot_container" class="lcbvficvztqchrkoabek_viz_container" style="display:block">
6
+
7
+ <div id="vnmralozlyzgwuyhrius_saliency_plot" class="vnmralozlyzgwuyhrius_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He</th><th>'</th><th>s</th><th>▁a</th><th>▁baker</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.46397306397306415)">0.398</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5743315508021392)">0.491</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.219</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.006</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.002</th><th style="background:rgba(255.0, 13.0, 87.0, 0.12501485442661908)">0.11</th><th style="background:rgba(30.0, 136.0, 229.0, 0.7950485244602892)">-0.685</th></tr><tr><th>▁p</th><th style="background:rgba(255.0, 13.0, 87.0, 0.41667656961774624)">0.36</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6058625470390177)">0.523</th><th style="background:rgba(255.0, 13.0, 87.0, 0.219607843137255)">0.192</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.08</th><th style="background:rgba(255.0, 13.0, 87.0, 0.43244206773618543)">0.375</th><th style="background:rgba(255.0, 13.0, 87.0, 0.24325609031491383)">0.213</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4009110714993067)">0.347</th></tr><tr><th>ék</th><th style="background:rgba(255.0, 13.0, 87.0, 0.889641513170925)">0.759</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4009110714993067)">0.347</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.217</th><th style="background:rgba(255.0, 13.0, 87.0, 0.17231134878193693)">0.151</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9921172509407804)">0.85</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.86</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3772628243216479)">0.326</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4245593186769657)">0.368</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2826698356110118)">0.245</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.071</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5979797979797981)">0.515</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.052</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4560903149138443)">0.393</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.228</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="gajagbnkgsixwzqfuakn_viz_container">
27
+ <div id="gajagbnkgsixwzqfuakn_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "gajagbnkgsixwzqfuakn_saliency_plot_container" class="gajagbnkgsixwzqfuakn_viz_container" style="display:block">
29
+
30
+ <div id="fketemnvbdxvyowuvgbo_saliency_plot" class="fketemnvbdxvyowuvgbo_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁He</th><th>'</th><th>s</th><th>▁a</th><th>▁baker</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁He</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.6452762923351159)">0.552</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7714002772826303)">0.662</th><th style="background:rgba(255.0, 13.0, 87.0, 0.23537334125569415)">0.206</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06195286195286207)">0.059</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.068</th><th style="background:rgba(255.0, 13.0, 87.0, 0.32208358090711037)">0.276</th></tr><tr><th>'</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7635175282234107)">0.651</th><th style="background:rgba(255.0, 13.0, 87.0, 0.22749059219647458)">0.2</th><th style="background:rgba(255.0, 13.0, 87.0, 0.15654585066349747)">0.14</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.079</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2826698356110118)">0.246</th></tr><tr><th>s</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.9211725094078035)">0.79</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3536145771439889)">0.304</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.12</th><th style="background:rgba(30.0, 136.0, 229.0, 0.18019409784115656)">-0.155</th></tr><tr><th>▁a</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.15654585066349747)">0.135</th><th style="background:rgba(255.0, 13.0, 87.0, 0.17231134878193693)">0.151</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3299663299663301)">0.284</th></tr><tr><th>▁baker</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.03830461477520289)">0.037</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.014</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.11713210536739943)">-0.104</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_pék_en_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="vwnqwodjktzoheqigbdq_viz_container">
4
+ <div id="vwnqwodjktzoheqigbdq_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "vwnqwodjktzoheqigbdq_saliency_plot_container" class="vwnqwodjktzoheqigbdq_viz_container" style="display:block">
6
+
7
+ <div id="piqiuvwjpdkknmejgnjr_saliency_plot" class="piqiuvwjpdkknmejgnjr_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He's</th><th>▁a</th><th>▁baker.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4797385620915033)">0.461</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.005</th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.025</th><th style="background:rgba(30.0, 136.0, 229.0, 0.6610417904535552)">-0.633</th></tr><tr><th>▁pék.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9290552584670234)">0.887</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4797385620915033)">0.463</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.959</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7004555357496535)">0.67</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="jzbpfzguaaacsgsghfoa_viz_container">
27
+ <div id="jzbpfzguaaacsgsghfoa_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "jzbpfzguaaacsgsghfoa_saliency_plot_container" class="jzbpfzguaaacsgsghfoa_viz_container" style="display:block">
29
+
30
+ <div id="dntuakqlyocztpaluufj_saliency_plot" class="dntuakqlyocztpaluufj_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁He's</th><th>▁a</th><th>▁baker.</th><th>&lt;/s&gt;</th></tr><tr><th>▁He's</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.9290552584670234)">0.886</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2747870865517925)">0.268</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2117250940780353)">0.204</th></tr><tr><th>▁a</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.088</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2747870865517925)">0.262</th></tr><tr><th>▁baker.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.2038423450188156)">-0.199</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_pék_fr.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="ootorrifudkwqlwwyhpm_viz_container">
4
+ <div id="ootorrifudkwqlwwyhpm_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "ootorrifudkwqlwwyhpm_saliency_plot_container" class="ootorrifudkwqlwwyhpm_viz_container" style="display:block">
6
+
7
+ <div id="rlilinvvdgwnrtculnhh_saliency_plot" class="rlilinvvdgwnrtculnhh_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁C</th><th>'</th><th>est</th><th>▁un</th><th>▁bo</th><th>ula</th><th>nger</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.889641513170925)">0.856</th><th style="background:rgba(255.0, 13.0, 87.0, 0.306318082788671)">0.298</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.018</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3142008318478907)">0.304</th><th style="background:rgba(30.0, 136.0, 229.0, 0.07771836007130117)">-0.082</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.006</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.019</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.118</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.248</th></tr><tr><th>▁p</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3457318280847692)">0.333</th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.03</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2826698356110118)">0.274</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7319865319865321)">0.701</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9290552584670234)">0.895</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9921172509407804)">0.954</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4245593186769657)">0.414</th><th style="background:rgba(255.0, 13.0, 87.0, 0.030421865715983164)">0.032</th><th style="background:rgba(255.0, 13.0, 87.0, 0.17231134878193693)">0.168</th></tr><tr><th>ék</th><th style="background:rgba(255.0, 13.0, 87.0, 0.16442859972271742)">0.164</th><th style="background:rgba(30.0, 136.0, 229.0, 0.022539116656763607)">-0.028</th><th style="background:rgba(30.0, 136.0, 229.0, 0.11713210536739943)">-0.113</th><th style="background:rgba(30.0, 136.0, 229.0, 0.30631808278867095)">-0.297</th><th style="background:rgba(255.0, 13.0, 87.0, 0.44820756585462457)">0.435</th><th style="background:rgba(255.0, 13.0, 87.0, 0.26690433749257286)">0.26</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.018</th><th style="background:rgba(30.0, 136.0, 229.0, 0.006773618538324436)">-0.01</th><th style="background:rgba(30.0, 136.0, 229.0, 0.30631808278867095)">-0.299</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3693800752624282)">0.359</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14078035254505847)">0.141</th><th style="background:rgba(30.0, 136.0, 229.0, 0.014656367597544028)">-0.019</th><th style="background:rgba(255.0, 13.0, 87.0, 0.23537334125569415)">0.231</th><th style="background:rgba(30.0, 136.0, 229.0, 0.03830461477520309)">-0.04</th><th style="background:rgba(30.0, 136.0, 229.0, 0.1328976034858387)">-0.129</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.007</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.965</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.053</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="jbzhatbwsokelpasxsgg_viz_container">
27
+ <div id="jbzhatbwsokelpasxsgg_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "jbzhatbwsokelpasxsgg_saliency_plot_container" class="jbzhatbwsokelpasxsgg_viz_container" style="display:block">
29
+
30
+ <div id="snrjexuxwescndbmnhoz_saliency_plot" class="snrjexuxwescndbmnhoz_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁C</th><th>'</th><th>est</th><th>▁un</th><th>▁bo</th><th>ula</th><th>nger</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁C</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.9842345018815607)">0.943</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8029312735195088)">0.771</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3772628243216479)">0.366</th><th style="background:rgba(30.0, 136.0, 229.0, 0.03042186571598325)">-0.032</th><th style="background:rgba(30.0, 136.0, 229.0, 0.006773618538324436)">-0.01</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.003</th><th style="background:rgba(255.0, 13.0, 87.0, 0.05407011289364243)">0.06</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.081</th></tr><tr><th>'</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.5822142998613588)">0.563</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2117250940780353)">0.209</th><th style="background:rgba(30.0, 136.0, 229.0, 0.014656367597544028)">-0.016</th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.011</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.017</th><th style="background:rgba(255.0, 13.0, 87.0, 0.12501485442661908)">0.122</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14078035254505847)">0.14</th></tr><tr><th>est</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.32208358090711037)">0.31</th><th style="background:rgba(30.0, 136.0, 229.0, 0.006773618538324436)">-0.014</th><th style="background:rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0)">-0.001</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.019</th><th style="background:rgba(255.0, 13.0, 87.0, 0.13289760348583876)">0.135</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.075</th></tr><tr><th>▁un</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.014</th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.014</th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.022</th><th style="background:rgba(255.0, 13.0, 87.0, 0.09348385818974037)">0.091</th><th style="background:rgba(255.0, 13.0, 87.0, 0.44820756585462457)">0.435</th></tr><tr><th>▁bo</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.072</th><th style="background:rgba(255.0, 13.0, 87.0, 0.39302832244008706)">0.378</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.071</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.002</th></tr><tr><th>ula</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8581105169340464)">0.827</th><th style="background:rgba(255.0, 13.0, 87.0, 0.00677361853832443)">0.008</th><th style="background:rgba(30.0, 136.0, 229.0, 0.03042186571598325)">-0.032</th></tr><tr><th>nger</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.06195286195286207)">0.065</th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.078</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.7950485244602892)">0.768</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_pék_fr_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="zrlrtxgoepsmyrzhnrcx_viz_container">
4
+ <div id="zrlrtxgoepsmyrzhnrcx_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "zrlrtxgoepsmyrzhnrcx_saliency_plot_container" class="zrlrtxgoepsmyrzhnrcx_viz_container" style="display:block">
6
+
7
+ <div id="ptkenlrvheoyfyhgeaib_saliency_plot" class="ptkenlrvheoyfyhgeaib_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁C'est</th><th>▁un</th><th>▁boulanger.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7950485244602892)">0.793</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3536145771439889)">0.351</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.003</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.25</th></tr><tr><th>▁pék.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6137452960982372)">0.609</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4560903149138443)">0.457</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.995</th><th style="background:rgba(30.0, 136.0, 229.0, 0.1328976034858387)">-0.137</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="dqmegzqetozwjeviwtky_viz_container">
27
+ <div id="dqmegzqetozwjeviwtky_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "dqmegzqetozwjeviwtky_saliency_plot_container" class="dqmegzqetozwjeviwtky_viz_container" style="display:block">
29
+
30
+ <div id="nvhqjhtruvsqhugbdlzd_saliency_plot" class="nvhqjhtruvsqhugbdlzd_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁C'est</th><th>▁un</th><th>▁boulanger.</th><th>&lt;/s&gt;</th></tr><tr><th>▁C'est</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8265795206971679)">0.817</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.09</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.302</th></tr><tr><th>▁un</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.030421865715983164)">0.039</th><th style="background:rgba(255.0, 13.0, 87.0, 0.44032481679540497)">0.439</th></tr><tr><th>▁boulanger.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.8029312735195088)">0.797</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_tanár_de.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="snalvqucrmimgyvsuotr_viz_container">
4
+ <div id="snalvqucrmimgyvsuotr_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "snalvqucrmimgyvsuotr_saliency_plot_container" class="snalvqucrmimgyvsuotr_viz_container" style="display:block">
6
+
7
+ <div id="loeniucnvhcioqkrhhfo_saliency_plot" class="loeniucnvhcioqkrhhfo_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁Er</th><th>▁ist</th><th>▁Lehrer</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8738760150524857)">0.806</th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.025</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.111</th><th style="background:rgba(255.0, 13.0, 87.0, 0.16442859972271742)">0.158</th><th style="background:rgba(255.0, 13.0, 87.0, 0.24325609031491383)">0.229</th></tr><tr><th>▁tanár</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5900970489205783)">0.545</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4009110714993067)">0.373</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7319865319865321)">0.673</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5979797979797981)">0.551</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5585660526836996)">0.516</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.231</th><th style="background:rgba(255.0, 13.0, 87.0, 0.10924935630817992)">0.101</th><th style="background:rgba(30.0, 136.0, 229.0, 0.014656367597544028)">-0.018</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8817587641117054)">0.814</th><th style="background:rgba(255.0, 13.0, 87.0, 0.55068330362448)">0.507</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="ygbyjgzgexxaqvhwwbmf_viz_container">
27
+ <div id="ygbyjgzgexxaqvhwwbmf_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "ygbyjgzgexxaqvhwwbmf_saliency_plot_container" class="ygbyjgzgexxaqvhwwbmf_viz_container" style="display:block">
29
+
30
+ <div id="wmqqfedvswwawrarjvyg_saliency_plot" class="wmqqfedvswwawrarjvyg_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁Er</th><th>▁ist</th><th>▁Lehrer</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Er</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.922</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7635175282234107)">0.704</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.048</th><th style="background:rgba(30.0, 136.0, 229.0, 0.5822142998613588)">-0.534</th></tr><tr><th>▁ist</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.2117250940780353)">0.196</th><th style="background:rgba(255.0, 13.0, 87.0, 0.03830461477520289)">0.041</th><th style="background:rgba(30.0, 136.0, 229.0, 0.03830461477520309)">-0.037</th></tr><tr><th>▁Lehrer</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.07771836007130117)">-0.072</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3693800752624282)">0.343</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.14866310160427798)">-0.138</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_tanár_de_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="okwjehwwicrsircsgidp_viz_container">
4
+ <div id="okwjehwwicrsircsgidp_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "okwjehwwicrsircsgidp_saliency_plot_container" class="okwjehwwicrsircsgidp_viz_container" style="display:block">
6
+
7
+ <div id="mmwjbzityotpzrejorvv_saliency_plot" class="mmwjbzityotpzrejorvv_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁Er</th><th>▁ist</th><th>▁Lehrer.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8581105169340464)">0.774</th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.025</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14866310160427795)">0.139</th><th style="background:rgba(255.0, 13.0, 87.0, 0.24325609031491383)">0.226</th></tr><tr><th>▁tanár.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7004555357496535)">0.633</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4797385620915033)">0.431</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.903</th><th style="background:rgba(255.0, 13.0, 87.0, 0.9132897603485836)">0.819</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="vuzldqfpsiwcbvembsek_viz_container">
27
+ <div id="vuzldqfpsiwcbvembsek_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "vuzldqfpsiwcbvembsek_saliency_plot_container" class="vuzldqfpsiwcbvembsek_viz_container" style="display:block">
29
+
30
+ <div id="yswtewtxhfzjvqcbmgqm_saliency_plot" class="yswtewtxhfzjvqcbmgqm_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁Er</th><th>▁ist</th><th>▁Lehrer.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Er</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.902</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4245593186769657)">0.382</th><th style="background:rgba(30.0, 136.0, 229.0, 0.5822142998613588)">-0.525</th></tr><tr><th>▁ist</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.15654585066349747)">0.141</th><th style="background:rgba(30.0, 136.0, 229.0, 0.03830461477520309)">-0.036</th></tr><tr><th>▁Lehrer.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.022539116656763607)">-0.027</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_tanár_en.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="ircrcwyfbakhxccyrxhn_viz_container">
4
+ <div id="ircrcwyfbakhxccyrxhn_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "ircrcwyfbakhxccyrxhn_saliency_plot_container" class="ircrcwyfbakhxccyrxhn_viz_container" style="display:block">
6
+
7
+ <div id="dxdxonzisyifddvdfzwx_saliency_plot" class="dxdxonzisyifddvdfzwx_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He</th><th>'</th><th>s</th><th>▁a</th><th>▁teacher</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5664488017429193)">0.492</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2511388393741335)">0.22</th><th style="background:rgba(255.0, 13.0, 87.0, 0.18019409784115661)">0.162</th><th style="background:rgba(255.0, 13.0, 87.0, 0.12501485442661908)">0.109</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4718558130322837)">0.412</th><th style="background:rgba(255.0, 13.0, 87.0, 0.14866310160427795)">0.131</th><th style="background:rgba(30.0, 136.0, 229.0, 0.6689245395127748)">-0.576</th></tr><tr><th>▁tanár</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.866</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8817587641117054)">0.763</th><th style="background:rgba(255.0, 13.0, 87.0, 0.306318082788671)">0.266</th><th style="background:rgba(255.0, 13.0, 87.0, 0.49550406020994264)">0.433</th><th style="background:rgba(255.0, 13.0, 87.0, 0.889641513170925)">0.769</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8186967716379481)">0.709</th><th style="background:rgba(255.0, 13.0, 87.0, 0.5428005545652606)">0.472</th></tr><tr><th>.</th><th style="background:rgba(255.0, 13.0, 87.0, 0.09348385818974037)">0.086</th><th style="background:rgba(255.0, 13.0, 87.0, 0.6846900376312143)">0.59</th><th style="background:rgba(255.0, 13.0, 87.0, 0.02253911665676371)">0.025</th><th style="background:rgba(255.0, 13.0, 87.0, 0.1171321053673995)">0.102</th><th style="background:rgba(30.0, 136.0, 229.0, 0.11713210536739943)">-0.104</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7477520301049713)">0.648</th><th style="background:rgba(255.0, 13.0, 87.0, 0.49550406020994264)">0.427</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="drliazykdxlqnbdzohpt_viz_container">
27
+ <div id="drliazykdxlqnbdzohpt_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "drliazykdxlqnbdzohpt_saliency_plot_container" class="drliazykdxlqnbdzohpt_viz_container" style="display:block">
29
+
30
+ <div id="nlbyxqoagxzxsxaftltb_saliency_plot" class="nlbyxqoagxzxsxaftltb_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁He</th><th>'</th><th>s</th><th>▁a</th><th>▁teacher</th><th>.</th><th>&lt;/s&gt;</th></tr><tr><th>▁He</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.16442859972271742)">0.147</th><th style="background:rgba(255.0, 13.0, 87.0, 0.46397306397306415)">0.404</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3536145771439889)">0.307</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3772628243216479)">0.331</th><th style="background:rgba(255.0, 13.0, 87.0, 0.06983561101208159)">0.063</th><th style="background:rgba(255.0, 13.0, 87.0, 0.04618736383442265)">0.045</th></tr><tr><th>'</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.86</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3142008318478907)">0.273</th><th style="background:rgba(255.0, 13.0, 87.0, 0.26690433749257286)">0.233</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.079</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4718558130322837)">0.411</th></tr><tr><th>s</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.9132897603485836)">0.788</th><th style="background:rgba(255.0, 13.0, 87.0, 0.22749059219647458)">0.198</th><th style="background:rgba(255.0, 13.0, 87.0, 0.23537334125569415)">0.21</th><th style="background:rgba(30.0, 136.0, 229.0, 0.022539116656763607)">-0.025</th></tr><tr><th>▁a</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.18019409784115656)">-0.161</th><th style="background:rgba(255.0, 13.0, 87.0, 0.03830461477520289)">0.035</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2590215884333532)">0.226</th></tr><tr><th>▁teacher</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.07771836007130124)">0.074</th><th style="background:rgba(255.0, 13.0, 87.0, 0.22749059219647458)">0.2</th></tr><tr><th>.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.014656367597544035)">0.019</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>
results/simple_tanár_en_aggregate.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <br/><b>0th instance:</b><br/>
2
+ <html>
3
+ <div id="vylaiadbbwvolmkjdlzi_viz_container">
4
+ <div id="vylaiadbbwvolmkjdlzi_content" style="padding:15px;border-style:solid;margin:5px;">
5
+ <div id = "vylaiadbbwvolmkjdlzi_saliency_plot_container" class="vylaiadbbwvolmkjdlzi_viz_container" style="display:block">
6
+
7
+ <div id="mkfufgfmkttelgriqlnv_saliency_plot" class="mkfufgfmkttelgriqlnv_viz_content">
8
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
9
+ <span style="font-size: 20px;">Source Saliency Heatmap</span>
10
+ <br>
11
+ x: Generated tokens, y: Attributed tokens
12
+ </div>
13
+
14
+ <table border="1" cellpadding="5" cellspacing="5"
15
+ style="overflow-x:scroll;display:block;">
16
+ <tr><th></th>
17
+ <th>▁He's</th><th>▁a</th><th>▁teacher.</th><th>&lt;/s&gt;</th></tr><tr><th>▁Ő</th><th style="background:rgba(255.0, 13.0, 87.0, 0.26690433749257286)">0.263</th><th style="background:rgba(255.0, 13.0, 87.0, 0.08560110913052081)">0.084</th><th style="background:rgba(255.0, 13.0, 87.0, 0.2826698356110118)">0.272</th><th style="background:rgba(30.0, 136.0, 229.0, 0.5900970489205783)">-0.566</th></tr><tr><th>▁tanár.</th><th style="background:rgba(255.0, 13.0, 87.0, 1.0)">0.965</th><th style="background:rgba(255.0, 13.0, 87.0, 0.3772628243216479)">0.365</th><th style="background:rgba(255.0, 13.0, 87.0, 0.8975242622301447)">0.863</th><th style="background:rgba(255.0, 13.0, 87.0, 0.7319865319865321)">0.707</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)">0.0</th></tr></table>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </html>
24
+ <br/><b>0th instance:</b><br/>
25
+ <html>
26
+ <div id="qbeofjzrplcbkrndjcfw_viz_container">
27
+ <div id="qbeofjzrplcbkrndjcfw_content" style="padding:15px;border-style:solid;margin:5px;">
28
+ <div id = "qbeofjzrplcbkrndjcfw_saliency_plot_container" class="qbeofjzrplcbkrndjcfw_viz_container" style="display:block">
29
+
30
+ <div id="xtouabcsfqjihabmwsmy_saliency_plot" class="xtouabcsfqjihabmwsmy_viz_content">
31
+ <div style="margin:5px;font-family:sans-serif;font-weight:bold;">
32
+ <span style="font-size: 20px;">Target Saliency Heatmap</span>
33
+ <br>
34
+ x: Generated tokens, y: Attributed tokens
35
+ </div>
36
+
37
+ <table border="1" cellpadding="5" cellspacing="5"
38
+ style="overflow-x:scroll;display:block;">
39
+ <tr><th></th>
40
+ <th>▁He's</th><th>▁a</th><th>▁teacher.</th><th>&lt;/s&gt;</th></tr><tr><th>▁He's</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.9605862547039017)">0.927</th><th style="background:rgba(255.0, 13.0, 87.0, 0.4245593186769657)">0.414</th><th style="background:rgba(255.0, 13.0, 87.0, 0.29843533372945136)">0.291</th></tr><tr><th>▁a</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(30.0, 136.0, 229.0, 0.10136660724896014)">-0.098</th><th style="background:rgba(255.0, 13.0, 87.0, 0.22749059219647458)">0.222</th></tr><tr><th>▁teacher.</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(255.0, 13.0, 87.0, 0.219607843137255)">0.217</th></tr><tr><th>&lt;/s&gt;</th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th><th style="background:rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0)"></th></tr></table>
41
+ </div>
42
+
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </html>