-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1078 lines (1073 loc) · 92.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" itemscope itemtype="http://schema.org/WebPage">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="https://rainsprojectdotorg.wordpress.com/xmlrpc.php">
<title>Realising Accountable Intelligent Systems</title>
<script type="text/javascript">
WebFontConfig = {"google":{"families":["Source+Sans+Pro:r:latin,latin-ext","Source+Sans+Pro:r,i,b,bi:latin,latin-ext"]}};
(function() {
var wf = document.createElement('script');
wf.src = 'wp-content/plugins/custom-fonts/js/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
</script><style id="jetpack-custom-fonts-css">.wf-active samp{font-family:"Source Sans Pro",sans-serif}.wf-active body, .wf-active button, .wf-active input, .wf-active select, .wf-active textarea{font-family:"Source Sans Pro",sans-serif}.wf-active .comment-list .reply, .wf-active .comment-metadata, .wf-active .entry-footer, .wf-active .entry-meta, .wf-active .widget_recent_entries .post-date, .wf-active .widget_rss .rss-date{font-family:"Source Sans Pro",sans-serif}.wf-active .search-form ::-webkit-input-body-text{font-family:"Source Sans Pro",sans-serif}.wf-active .site-info{font-family:"Source Sans Pro",sans-serif}.wf-active .main-navigation .nav-menu > li > a{font-family:"Source Sans Pro",sans-serif}.wf-active h1{font-style:normal;font-weight:400}.wf-active h1, .wf-active h2, .wf-active h3, .wf-active h4, .wf-active h5, .wf-active h6{font-family:"Source Sans Pro",sans-serif;font-weight:400;font-style:normal}.wf-active h1{font-style:normal;font-weight:400}.wf-active h2{font-style:normal;font-weight:400}.wf-active h3{font-style:normal;font-weight:400}.wf-active h4{font-style:normal;font-weight:400}.wf-active h5{font-style:normal;font-weight:400}.wf-active h6{font-style:normal;font-weight:400}.wf-active .entry-title{font-style:normal;font-weight:400}.wf-active .singular .entry-title{font-style:normal;font-weight:400}.wf-active .author-title{font-family:"Source Sans Pro",sans-serif;font-style:normal;font-weight:400}.wf-active .author-name{font-weight:400;font-style:normal}.wf-active .front-testimonials .entry-title{font-style:normal;font-weight:400}.wf-active .recent-posts-title, .wf-active .page-title{font-style:normal;font-weight:400}.wf-active #respond h3, .wf-active .comments-title{font-style:normal;font-weight:400}.wf-active .widget-title{font-style:normal;font-weight:400}.wf-active .footer-widgets .widget-title{font-style:normal;font-weight:400}.wf-active .site-title{font-family:"Source Sans Pro",sans-serif;font-weight:400;font-style:normal}.wf-active .site-description{font-weight:400;font-family:"Source Sans Pro",sans-serif;font-style:normal}.wf-active .featured-content .hentry .entry-title{font-style:normal;font-weight:400}@media screen and (min-width: 37.5em){.wf-active .site-description{font-style:normal;font-weight:400}}@media screen and (min-width: 37.5em){.wf-active .site-title{font-style:normal;font-weight:400}}</style>
<meta name='robots' content='max-image-preview:large' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.pubmine.com' />
<link rel='dns-prefetch' href='//x.bidswitch.net' />
<link rel='dns-prefetch' href='//static.criteo.net' />
<link rel='dns-prefetch' href='//ib.adnxs.com' />
<link rel='dns-prefetch' href='//aax.amazon-adsystem.com' />
<link rel='dns-prefetch' href='//bidder.criteo.com' />
<link rel='dns-prefetch' href='//cas.criteo.com' />
<link rel='dns-prefetch' href='//gum.criteo.com' />
<link rel='dns-prefetch' href='//ads.pubmatic.com' />
<link rel='dns-prefetch' href='//gads.pubmatic.com' />
<link rel='dns-prefetch' href='//tpc.googlesyndication.com' />
<link rel='dns-prefetch' href='//ad.doubleclick.net' />
<link rel='dns-prefetch' href='//googleads.g.doubleclick.net' />
<link rel='dns-prefetch' href='//www.googletagservices.com' />
<link rel='dns-prefetch' href='//cdn.switchadhub.com' />
<link rel='dns-prefetch' href='//delivery.g.switchadhub.com' />
<link rel='dns-prefetch' href='//delivery.swid.switchadhub.com' />
<link rel='dns-prefetch' href='//a.teads.tv' />
<link rel='dns-prefetch' href='//prebid.media.net' />
<link rel='dns-prefetch' href='//adserver-us.adtech.advertising.com' />
<link rel='dns-prefetch' href='//fastlane.rubiconproject.com' />
<link rel='dns-prefetch' href='//prebid-server.rubiconproject.com' />
<link rel='dns-prefetch' href='//hb-api.omnitagjs.com' />
<link rel='dns-prefetch' href='//mtrx.go.sonobi.com' />
<link rel='dns-prefetch' href='//apex.go.sonobi.com' />
<link rel='dns-prefetch' href='//u.openx.net' />
<link href='https://fonts.gstatic.com' crossorigin rel='preconnect' />
<script type="text/javascript">
/* <![CDATA[ */
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function () {
oldonload();
func();
}
}
}
/* ]]> */
</script>
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/72x72\/","ext":".png","svgUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/s0.wp.com\/wp-includes\/js\/wp-emoji-release.min.js?m=1652185836h&ver=6.0.1-alpha-53658"}};
/*! This file is auto-generated */
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode,e=(p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0),i.toDataURL());return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([129777,127995,8205,129778,127999],[129777,127995,8203,129778,127999])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='all-css-0-1' href='css/5iVlnI_Q8GPvynzHGqdMjJD2wPVAOW9vTWP5Vt47XZP_5fHtnaHT19jEpI__cssminify_yes_css_dzww2pv57vbpcvs3mpsp7u.css' type='text/css' media='all' />
<style id='wp-block-library-inline-css'>
.has-text-align-justify {
text-align:justify;
}
.wp-block-cover__image-background.has-parallax {
background-size: cover;
}
</style>
<style id='global-styles-inline-css'>
body{--wp--preset--color--black: #192930;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--dark-gray: #474f53;--wp--preset--color--medium-gray: #a5a29d;--wp--preset--color--light-gray: #eeece8;--wp--preset--color--yellow: #d7b221;--wp--preset--color--dark-yellow: #9c8012;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--10: 0.3rem;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--spacing--90: 7.59rem;--wp--preset--spacing--100: 11.39rem;}body .is-layout-flex{gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;}body .is-layout-flow > .alignright{float: right;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}.wp-block-columns.is-layout-flex{gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
.wp-block-audio{margin: 0 0 1em 0;}
.wp-block-columns.is-layout-flex{gap: 2em;}
.wp-block-table > table{margin: 0 0 1em 0;}
.wp-block-video{margin: 0 0 1em 0;}
.wp-block-embed{margin: 0 0 1em 0;}
.wp-block-image{margin: 0 0 1em 0;}
.wp-block-navigation a:not(.wp-element-button){color: inherit;}
</style>
<link rel='stylesheet' id='all-css-2-1' href='css/ixion/blocks.css' type='text/css' media='all' />
<link rel='stylesheet' id='ixion-fonts-archivo-css' href='//fonts.googleapis.com/css?family=Archivo+Narrow%3A400%2C400i%2C700%2C700i&subset=latin%2Clatin-ext' media='all' />
<link rel='stylesheet' id='all-css-4-1' href='css/eXa3zw92gm4m_cssminify_yes_css_bap2izudmaigbhmbyc053j.css' type='text/css' media='all' />
<link rel='stylesheet' id='print-css-5-1' href='wp-content/mu-plugins/global-print/global-print.css' type='text/css' media='print' />
<style id='jetpack-global-styles-frontend-style-inline-css'>
:root { --font-headings: unset; --font-base: unset; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;}
</style>
<link rel='stylesheet' id='all-css-8-1' href='wp-content/themes/h4/global.css' type='text/css' media='all' />
<script id='media-video-jwt-bridge-js-extra'>
var videopressAjax = {"ajaxUrl":"index.html","bridgeUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/videopress\/js\/videopress-token-bridge.js","post_id":"2634"};
</script>
<script id='wpcom-actionbar-placeholder-js-extra'>
var actionbardata = {"siteID":"160669261","siteURL":"http:\/\/rainsprojectdotorg.wordpress.com","xhrURL":"index.html","nonce":"08bbc5f730","isLoggedIn":"","statusMessage":"","subsEmailDefault":"instantly","proxyScriptUrl":"https:\/\/s0.wp.com\/wp-content\/js\/wpcom-proxy-request.js?ver=20211021","i18n":{"followedText":"New posts from this site will now appear in your <a href=\"https:\/\/wordpress.com\/read\">Reader<\/a>","foldBar":"Collapse this bar","unfoldBar":"Expand this bar"}};
</script>
<script type='text/javascript' src='script/hSOdbPb7g912zbuAQmmVCk__zxrq2ca42vb4chio03e7tn.js'></script>
<script type='text/javascript'>
window.addEventListener( 'DOMContentLoaded', function() {
rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
} );
</script>
<link rel='stylesheet' id='all-css-0-2' href='wp-content/mu-plugins/highlander-comments/style.css' type='text/css' media='all' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://rainsprojectdotorg.wordpress.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://s0.wp.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress.com" />
<link rel='shortlink' href='https://wp.me/aS9pH' />
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="(no title)" />
<meta property="og:description" content="Realising Accountable Intelligent Systems" />
<meta property="og:url" content="https://rainsprojectdotorg.wordpress.com/" />
<meta property="og:image" content="rainsprojectdotorg.files_subdomain/2019/05/cropped-rains-logo-light.png" />
<meta property="og:image:width" content="200" />
<meta property="og:image:height" content="200" />
<meta property="og:image:alt" content="" />
<meta property="og:locale" content="en_US" />
<meta property="fb:app_id" content="249643311490" />
<!-- End Jetpack Open Graph Tags -->
<link rel="search" type="application/opensearchdescription+xml" href="https://rainsprojectdotorg.wordpress.com/osd.xml" title="" />
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" />
<meta name="theme-color" content="#fcfcfc" />
<meta name="application-name" content="WordPress.com" /><meta name="msapplication-window" content="width=device-width;height=device-height" /><meta name="msapplication-tooltip" content="Realising Accountable Intelligent Systems" /><meta name="msapplication-task" content="name=Subscribe;action-uri=https://rainsprojectdotorg.wordpress.com/feed/;icon-uri=https://rainsprojectdotorg.files.wordpress.com/2019/05/cropped-rains-logo-light.png?w=16" /><meta name="msapplication-task" content="name=Sign up for a free blog;action-uri=http://wordpress.com/signup/;icon-uri=https://s0.wp.com/i/favicon.ico" /><meta name="msapplication-task" content="name=WordPress.com Support;action-uri=http://support.wordpress.com/;icon-uri=https://s0.wp.com/i/favicon.ico" /><meta name="msapplication-task" content="name=WordPress.com Forums;action-uri=http://forums.wordpress.com/;icon-uri=https://s0.wp.com/i/favicon.ico" /><meta name="description" content="Realising Accountable Intelligent Systems" />
<style type="text/css" id="custom-background-css">
body.custom-background { background-color: #fcfcfc; }
</style>
<script type="text/javascript">
window.doNotSellCallback = function() {
var linkElements = [
'a[href="https://wordpress.com/?ref=footer_blog"]',
'a[href="https://wordpress.com/?ref=footer_website"]',
'a[href="https://wordpress.com/?ref=vertical_footer"]',
'a[href^="https://wordpress.com/?ref=footer_segment_"]',
].join(',');
var dnsLink = document.createElement( 'a' );
dnsLink.href = 'https://wordpress.com/advertising-program-optout/';
dnsLink.classList.add( 'do-not-sell-link' );
dnsLink.rel = 'nofollow';
dnsLink.style.marginLeft = '0.5em';
dnsLink.textContent = 'Do Not Sell My Personal Information';
var creditLinks = document.querySelectorAll( linkElements );
if ( 0 === creditLinks.length ) {
return false;
}
Array.prototype.forEach.call( creditLinks, function( el ) {
el.insertAdjacentElement( 'afterend', dnsLink );
});
return true;
};
</script>
<script type="text/javascript">
function __ATA_CC() {var v = document.cookie.match('(^|;) ?personalized-ads-consent=([^;]*)(;|$)');return v ? 1 : 0;}
var __ATA_PP = { 'pt': 0, 'ht': 0, 'tn': 'ixion', 'uloggedin': 0, 'amp': false, 'consent': __ATA_CC(), 'gdpr_applies': false, 'ad': { 'label': { 'text': 'Advertisements' }, 'reportAd': { 'text': 'Report this ad' } }, 'siteid': 8982, 'blogid': 160669261 };
var __ATA = __ATA || {};
__ATA.cmd = __ATA.cmd || [];
__ATA.criteo = __ATA.criteo || {};
__ATA.criteo.cmd = __ATA.criteo.cmd || [];
</script>
<script type="text/javascript">
(function(){var g=Date.now||function(){return+new Date};function h(a,b){a:{for(var c=a.length,d="string"==typeof a?a.split(""):a,e=0;e<c;e++)if(e in d&&b.call(void 0,d[e],e,a)){b=e;break a}b=-1}return 0>b?null:"string"==typeof a?a.charAt(b):a[b]};function k(a,b,c){c=null!=c?"="+encodeURIComponent(String(c)):"";if(b+=c){c=a.indexOf("#");0>c&&(c=a.length);var d=a.indexOf("?");if(0>d||d>c){d=c;var e=""}else e=a.substring(d+1,c);a=[a.substr(0,d),e,a.substr(c)];c=a[1];a[1]=b?c?c+"&"+b:b:c;a=a[0]+(a[1]?"?"+a[1]:"")+a[2]}return a};var l=0;function m(a,b){var c=document.createElement("script");c.src=a;c.onload=function(){b&&b(void 0)};c.onerror=function(){b&&b("error")};a=document.getElementsByTagName("head");var d;a&&0!==a.length?d=a[0]:d=document.documentElement;d.appendChild(c)}function n(a){var b=void 0===b?document.cookie:b;return(b=h(b.split("; "),function(c){return-1!=c.indexOf(a+"=")}))?b.split("=")[1]:""}function p(a){return"string"==typeof a&&0<a.length}
function r(a,b,c){b=void 0===b?"":b;c=void 0===c?".":c;var d=[];Object.keys(a).forEach(function(e){var f=a[e],q=typeof f;"object"==q&&null!=f||"function"==q?d.push(r(f,b+e+c)):null!==f&&void 0!==f&&(e=encodeURIComponent(b+e),d.push(e+"="+encodeURIComponent(f)))});return d.filter(p).join("&")}function t(a,b){a||((window.__ATA||{}).config=b.c,m(b.url))}var u=Math.floor(1E13*Math.random()),v=window.__ATA||{};window.__ATA=v;window.__ATA.cmd=v.cmd||[];v.rid=u;v.createdAt=g();var w=window.__ATA||{},x="s.pubmine.com";
w&&w.serverDomain&&(x=w.serverDomain);var y="//"+x+"/conf",z=window.top===window,A=window.__ATA_PP&&window.__ATA_PP.gdpr_applies,B="boolean"===typeof A?Number(A):null,C=window.__ATA_PP||null,D=z?document.referrer?document.referrer:null:null,E=z?window.location.href:document.referrer?document.referrer:null,F,G=n("__ATA_tuuid");F=G?G:null;var H=window.innerWidth+"x"+window.innerHeight,I=n("usprivacy"),J=r({gdpr:B,pp:C,rid:u,src:D,ref:E,tuuid:F,vp:H,us_privacy:I?I:null},"",".");
(function(a){var b=void 0===b?"cb":b;l++;var c="callback__"+g().toString(36)+"_"+l.toString(36);a=k(a,b,c);window[c]=function(d){t(void 0,d)};m(a,function(d){d&&t(d)})})(y+"?"+J);}).call(this);
</script><style type="text/css" id="custom-colors-css">#infinite-handle span,
.button,
.comment-navigation .nav-next a,
.comment-navigation .nav-previous a,
.main-navigation .menu-toggle,
.post-navigation .nav-next a,
.post-navigation .nav-previous a,
.posts-navigation .nav-next a,
.posts-navigation .nav-previous a,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
#infinite-handle span:active,
#infinite-handle span:focus,
#infinite-handle span:hover,
.button:active,
.button:focus,
.button:hover,
.comment-navigation .nav-next a,
.comment-navigation .nav-previous a,
.main-navigation .menu-toggle,
.post-navigation .nav-next a,
.post-navigation .nav-previous a,
.posts-navigation .nav-next a,
.posts-navigation .nav-previous a,
button:active,
button:focus,
button:hover,
input[type="button"]:active,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:active,
input[type="submit"]:focus,
input[type="submit"]:hover { color: #FFFFFF;}
.site-description, .featured-content .hentry .entry-title a { color: #FFFFFF;}
.comment-author,
.footer-widgets .widget a,
body,
button { color: #192930;}
#respond h3,
.comments-title,
.featured-content,
.hentry,
.page-header,
.recent-posts-header,
.singular .entry-title,
.site-header,
.utility-container,
.recent-posts:after,
.site-footer,
.site-info,
.site-header .search-form .search-field,
.site-header .search-form-icon:before,
.site-header .jetpack-social-navigation a:before { border-color: #eeece8;}
#respond h3,
.comments-title,
.featured-content,
.hentry,
.page-header,
.recent-posts-header,
.singular .entry-title,
.site-header,
.utility-container,
.recent-posts:after,
.site-footer,
.site-info,
.site-header .search-form .search-field,
.site-header .search-form-icon:before,
.site-header .jetpack-social-navigation a:before { border-color: rgba( 238, 236, 232, 0.3 );}
.comment-metadata,
.entry-footer,
.entry-meta,
.footer-widgets .widget-title,
.main-navigation ul > li.current-menu-item > a,
.main-navigation ul > li.current_page_item > a,
.more-recent-posts,
.more-recent-posts:visited,
.more-testimonials,
.more-testimonials:visited,
.search-form-icon:before,
.site-header .jetpack-social-navigation a,
.site-info,
div#jp-relatedposts h3.jp-relatedposts-headline { color: #6F6D66;}
.search-form-icon:before,
.search-form .search-field { border-color: #a5a29d;}
.search-form-icon:before,
.search-form .search-field { border-color: rgba( 165, 162, 157, 0.3 );}
body, ins, mark,
.site-header .search-form-icon:before,
.site-header .search-form .search-field,
.footer-widgets .widget { background-color: #fcfcfc;}
.entry-author,
.widget,
hr,
.testimonials .hentry { background-color: #F4F4F4;}
.featured-content .hentry,
.header-overlay { background-color: #212121;}
.header-overlay:before { background-color: #212121;}
h1,
h2,
h3,
h4,
h5,
h6,
.entry-title a,
.entry-title a:visited,
.entry-title,
.page-title,
.widget-title,
.widget a,
.site-title,
.comments-title,
.site-title a,
.site-title a:visited { color: #212121;}
#infinite-handle span,
.button,
.comment-navigation .nav-next a,
.comment-navigation .nav-previous a,
.main-navigation .menu-toggle,
.post-navigation .nav-next a,
.post-navigation .nav-previous a,
.posts-navigation .nav-next a,
.posts-navigation .nav-previous a,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] { background-color: #b50c0c;}
#infinite-handle span:active,
#infinite-handle span:focus,
#infinite-handle span:hover,
.button:active,
.button:focus,
.button:hover,
button:active,
button:focus,
button:hover,
input[type="button"]:active,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:active,
input[type="submit"]:focus,
input[type="submit"]:hover { background-color: #9E0A0A;}
.main-navigation ul ul { border-top-color: #b50c0c;}
.main-navigation ul ul:before { color: #b50c0c;}
.comment-metadata .edit-link a,
.site-header .jetpack-social-navigation a:hover,
.jetpack_widget_social_icons a:hover,
.jetpack_widget_social_icons a:focus,
.widget_wpcom_social_media_icons_widget a:hover,
.widget_wpcom_social_media_icons_widget a:focus,
a,
a:visited,
.main-navigation .nav-menu > li > a,
.testimonials .edit-link a,
.testimonials .edit-link a:visited { color: #B50C0C;}
a:hover, a:focus, a:active { color: #B50C0C;}
.featured-content .hentry:hover .entry-title a { color: #F36262;}
</style>
<link rel="icon" href="rainsprojectdotorg.files_subdomain/2019/05/cropped-rains-logo-light.png" sizes="32x32" />
<link rel="icon" href="rainsprojectdotorg.files_subdomain/2019/05/cropped-rains-logo-light.png" sizes="192x192" />
<link rel="apple-touch-icon" href="rainsprojectdotorg.files_subdomain/2019/05/cropped-rains-logo-light.png" />
<meta name="msapplication-TileImage" content="https://rainsprojectdotorg.files.wordpress.com/2019/05/cropped-rains-logo-light.png?w=270" />
<script type="text/javascript">
window.google_analytics_uacct = "UA-52447-2";
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-52447-2']);
_gaq.push(['_gat._anonymizeIp']);
_gaq.push(['_setDomainName', 'wordpress.com']);
_gaq.push(['_initData']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
})();
</script>
</head>
<body class="home blog custom-background wp-custom-logo wp-embed-responsive customizer-styles-applied group-blog hfeed has-description no-featured-posts highlander-enabled highlander-light">
<div ><h3 style="color:red">Note: You are viewing an archived version of the original wordpress project website. Some links might be broken. </h3> </div>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#content">Skip to content</a>
<header id="masthead" class="site-header" role="banner">
<div class="utility-container">
<form role="search" method="get" class="search-form" action="index.html">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field"
placeholder="Search …"
value="" name="s"
title="Search for:" />
<span class="search-form-icon"></span>
</label>
<input type="submit" class="search-submit"
value="Search" />
</form>
</div>
<div class="branding-container">
<div class="site-branding">
<a href="index.html" class="custom-logo-link" rel="home" aria-current="page"><img width="799" height="499" src="rainsprojectdotorg.files_subdomain/2019/05/rains-logo-light.png" class="custom-logo" alt="RAIns Logo" srcset="rainsprojectdotorg.files_subdomain/2019/05/rains-logo-light.png 799w, rainsprojectdotorg.files_subdomain/2019/05/rains-logo-light.png?w=150&h=94 150w, rainsprojectdotorg.files_subdomain/2019/05/rains-logo-light.png?w=300&h=187 300w, rainsprojectdotorg.files_subdomain/2019/05/rains-logo-light.png?w=768&h=480 768w" sizes="(max-width: 799px) 100vw, 799px" data-attachment-id="526" data-permalink="https://rainsprojectdotorg.wordpress.com/rains-logo-light/" data-orig-file="rainsprojectdotorg.files_subdomain/2019/05/rains-logo-light.png" data-orig-size="799,499" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="RAIns Logo" data-image-description="" data-image-caption="" data-medium-file="rainsprojectdotorg.files_subdomain/2019/05/rains-logo-light.png?w=300" data-large-file="rainsprojectdotorg.files_subdomain/2019/05/rains-logo-light.png?w=799" /></a>
<h1 class="site-title"><a href="index.html" rel="home"></a></h1>
</div><!-- .site-branding -->
<nav id="site-navigation" class="main-navigation" role="navigation">
<button class="menu-toggle" aria-controls="top-menu" aria-expanded="false">Menu</button>
<div class="menu-primary-container"><ul id="top-menu" class="menu"><li id="menu-item-6" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-6"><a href="index.html" aria-current="page">Home</a></li>
<li id="menu-item-409" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-409"><a href="about.html">About</a></li>
<li id="menu-item-410" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-410"><a href="academic-results.html">Academic Results</a></li>
</ul></div></nav>
</div>
</header>
<div class="front-page-wrapper">
<div class="header-overlay">
<div class="site-description-wrapper">
<p class="site-description">Realising Accountable Intelligent Systems</p>
</div><!-- .site-description-wrapper -->
</div><!-- .header-overlay -->
</div><!-- .front-page-wrapper -->
<div id="content" class="site-content">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<article id="post-2634" class="post-2634 post type-post status-publish format-standard hentry category-accountability-and-transparency no-featured-image">
<div class="entry-body">
<header class="entry-header">
<div class="entry-meta">
<span class="posted-on"><a href="2021/11/16/international-semantic-web-conference-iswc-2021.html" rel="bookmark"><time class="entry-date published" datetime="2021-11-16T15:21:02+00:00">November 16, 2021</time><time class="updated" datetime="2021-11-16T15:21:20+00:00">November 16, 2021</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="author/milanx432.html">milanx432</a></span></span> <span class="cat-links"><a href="category/accountability-and-transparency.html" rel="category tag">Accountability and Transparency</a></span> </div><!-- .entry-meta -->
<h2 class="entry-title"><a href="2021/11/16/international-semantic-web-conference-iswc-2021.html" rel="bookmark">International Semantic Web Conference (ISWC) 2021</a></h2> </header>
<div class="entry-content">
<p>Dr Milan Markovic presented the RAInS demo at the <a href="https://iswc2021.semanticweb.org/">International Semantic Web (ISWC) conference</a> which was held virtually on 24 - 28 October 2021. </p>
<p>All the materials presented at the conference including the paper describing our demo and the video presentation can be found <a href="https://rains-uoa.github.io/ISWC_2021_Demo/">here</a>.</p>
<p>You can also watch the teaser video on YouTube. </p>
<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<span class="embed-youtube" style="text-align:center; display: block;"><iframe class="youtube-player" width="1080" height="608" src="https://www.youtube.com/embed/-F5zdLztlrk?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en&autohide=2&wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation"></iframe></span>
</div></figure>
</div><!-- .entry-content -->
</div> <!-- .entry-body -->
</article><!-- #post-## -->
<article id="post-2612" class="post-2612 post type-post status-publish format-standard hentry category-accountability-and-transparency no-featured-image">
<div class="entry-body">
<header class="entry-header">
<div class="entry-meta">
<span class="posted-on"><a href="2021/10/04/explorathon-pechakucha-2021.html" rel="bookmark"><time class="entry-date published" datetime="2021-10-04T11:14:22+00:00">October 4, 2021</time><time class="updated" datetime="2021-10-04T11:23:04+00:00">October 4, 2021</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="author/najaiman.html">Iman Naja</a></span></span> <span class="cat-links"><a href="category/accountability-and-transparency.html" rel="category tag">Accountability and Transparency</a></span> </div><!-- .entry-meta -->
<h2 class="entry-title"><a href="2021/10/04/explorathon-pechakucha-2021.html" rel="bookmark">Explorathon PechaKucha 2021</a></h2> </header>
<div class="entry-content">
<p>Our team member Dr Milan Markovic participated in September’s Explorathon Pechakucha and talked about our project.</p>
<p>You can watch the whole event here: <a href="https://youtu.be/FAnVoIUM8MI" rel="nofollow">https://youtu.be/FAnVoIUM8MI</a> .</p>
<p>Milan’s presentations is from 01:24 to 08:14.</p>
</div><!-- .entry-content -->
</div> <!-- .entry-body -->
</article><!-- #post-## -->
<article id="post-2596" class="post-2596 post type-post status-publish format-standard hentry category-accountability-and-transparency no-featured-image">
<div class="entry-body">
<header class="entry-header">
<div class="entry-meta">
<span class="posted-on"><a href="2021/09/11/contribute-to-the-discussion-about-ai-accountability.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-09-11T11:22:15+00:00">September 11, 2021</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="author/najaiman.html">Iman Naja</a></span></span> <span class="cat-links"><a href="category/accountability-and-transparency.html" rel="category tag">Accountability and Transparency</a></span> </div><!-- .entry-meta -->
<h2 class="entry-title"><a href="2021/09/11/contribute-to-the-discussion-about-ai-accountability.html" rel="bookmark">Contribute to the discussion about AI Accountability</a></h2> </header>
<div class="entry-content">
<p>We are organising an online “round table” event to discuss ideas and experience related to Accountability of AI Systems. The event will be held via Teams or Zoom between 10am-1pm (BST) on Monday 20th September 2021.<br> <br>This event is one of a series that we are organising with different stakeholder groups. We have already held an event with lawyers earlier this summer and now we are looking for industry professionals with technical expertise in building and operating AI systems (with particular focus on ML). You are not required to possess direct experience of “AI accountability” as full context for the discussion will be set by the project team. Places are limited and we expect to have 10 -15 attendees only in order to provide a suitable platform for discussion. <br> <br>As part of the event we will also demonstrate our initial software prototype for the Accountability Fabric to stimulate discussion and to elicit feedback.</p>
<p>Please contact us if you are interested in attending.</p>
</div><!-- .entry-content -->
</div> <!-- .entry-body -->
</article><!-- #post-## -->
<article id="post-2565" class="post-2565 post type-post status-publish format-standard hentry category-accountability-and-transparency no-featured-image">
<div class="entry-body">
<header class="entry-header">
<div class="entry-meta">
<span class="posted-on"><a href="files/vasive-systems-wraps_0334r6fx0fbeeisx2fw7t2.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-05-20T13:32:25+00:00">May 20, 2021</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="author/najaiman.html">Iman Naja</a></span></span> <span class="cat-links"><a href="category/accountability-and-transparency.html" rel="category tag">Accountability and Transparency</a></span> </div><!-- .entry-meta -->
<h2 class="entry-title"><a href="files/vasive-systems-wraps_0334r6fx0fbeeisx2fw7t2.html" rel="bookmark">CfP Workshop on Reviewable and Auditable Pervasive Systems (WRAPS)</a></h2> </header>
<div class="entry-content">
<p>Members of the RAInS project are running the <a rel="noreferrer noopener" href="https://wraps-workshop.github.io/" target="_blank">2021 Workshop on Reviewable and Auditable Pervasive Systems (WRAPS)</a> in conjunction with <a rel="noreferrer noopener" href="https://www.ubicomp.org/" target="_blank">UbiComp</a>. </p>
<div class="is-layout-flow wp-block-group"><div class="wp-block-group__inner-container">
<div class="is-layout-flow wp-block-group"><div class="wp-block-group__inner-container">
<div class="is-layout-flow wp-block-group"><div class="wp-block-group__inner-container">
<p>Location: Virtual </p>
</div></div>
<p>Important dates:</p>
<ul><li>Paper submission: 15th June, 2021</li><li>Author notification: 15th July, 2021</li><li>Final camera ready due: 23rd July, 2021</li><li>Workshop date: 25/26th September, 2021 (exact date/time to be confirmed)</li></ul>
<p>All deadlines are 23:59 AoE.</p>
<p>Website: <a href="https://wraps-workshop.github.io/" target="_blank" rel="noreferrer noopener">https://wraps-workshop.github.io/</a></p>
</div></div>
</div></div>
<p>*** This workshop will bring together a range of perspectives into how we can better audit and understand the complex, sociotechnical systems that increasingly pervade our world.<br>From tools for data capture and retrieval, technical/ethical/legal challenges, and early ideas on concepts of relevance – we are calling for submissions that help further our understanding of how pervasive systems can be built to be reviewable and auditable, helping to bring about more transparent, trustworthy, and accountable technologies.***</p>
<p><br>Emerging technologies (e.g. IoT, AR/VR, AI/ML, etc.) are increasingly being deployed in new and innovative ways – be it in our homes, vehicles, or public spaces. Such technologies have the potential to bring a wide range of benefits, blending advanced functionality with the physical environment. However, they also have the potential to drive real-world consequences through decisions, interactions, or actuations, and there is a real risk that their use can lead to harms, such as physical injuries, financial loss, or even death. These concerns appear ever-more prevalent, as a growing sense of distrust has led to calls for *more transparency and accountability* surrounding the development and use of emerging technologies.<br>A range of things can—and often do—go wrong, be they technical failure, user error, or otherwise. As such, means for the ability to *review, understand and act upon* the inner workings of how these systems are built/developed and used are crucial to being able to determine the cause of failures, prevent re-occurrences, and/or to identify parties at fault. Yet, despite the wider landscape of societal and legal pressures for record keeping and increased accountability (e.g. GDPR and CCPA), implementing transparency measures face a range of challenges.<br>This calls for different thinking into how we can better understand (interpret) the emerging technologies that pervade our world. As such, this workshop aims to explore new ideas into the nascent topic, collating some of the outstanding challenges and potential solutions to implementing more meaningful transparency throughout pervasive systems. We look to bring together experts from a range of disciplines, including those of technical, legal, and design-oriented backgrounds.<br><br><strong>Submissions</strong>:<br><br>We invite papers of varying length from 2 to 6 pages (excluding refs) using the ACM sigconf template (<a href="https://www.acm.org/publications/proceedings-template">https://www.acm.org/publications/proceedings-template</a>). Submissions can be made via PCS at <a href="https://new.precisionconference.com/submissions">https://new.precisionconference.com/submissions</a>. <br><br>Accepted papers will be published in the UbiComp/ISWC 2021 adjunct proceedings, which will be included in the ACM Digital Library. All submissions will be peer reviewed, and should be properly anonymised.<br><br>Some suggested topics include (but are not limited to):<br>- Tools, techniques, and frameworks to assist in providing greater transparency & oversight over the workings of pervasive systems<br>- Methods for explaining & understanding systems/models<br>- Methods for fostering trust & transparency in pervasive systems<br>- The usability of audit data<br>- Performance implications of capturing audit data<br>- Privacy, security and data protection implications of auditability mechanisms<br>- Vocabularies and frameworks for modelling relevant information to support auditability & explainability<br>- Data aggregation and consolidation<br>- Legal considerations relating to record keeping & auditing mechanisms<br>- Access controls & data sharing regimes<br>- Audit log verification methods</p>
</div><!-- .entry-content -->
</div> <!-- .entry-body -->
</article><!-- #post-## -->
<article id="post-2499" class="post-2499 post type-post status-publish format-standard hentry category-accountability-and-transparency category-events no-featured-image">
<div class="entry-body">
<header class="entry-header">
<div class="entry-meta">
<span class="posted-on"><a href="2020/11/16/join-us-for-explorathon-2020.html" rel="bookmark"><time class="entry-date published" datetime="2020-11-16T09:31:00+00:00">November 16, 2020</time><time class="updated" datetime="2020-11-27T10:50:17+00:00">November 27, 2020</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="author/justfrancesryan.html">Frances Ryan</a></span></span> <span class="cat-links"><a href="category/accountability-and-transparency.html" rel="category tag">Accountability and Transparency</a>, <a href="category/events.html" rel="category tag">Events</a></span> </div><!-- .entry-meta -->
<h2 class="entry-title"><a href="2020/11/16/join-us-for-explorathon-2020.html" rel="bookmark">Join us for Explorathon 2020</a></h2> </header>
<div class="entry-content">
<div class="wp-block-image"><figure class="alignleft size-large"><img data-attachment-id="2503" data-permalink="https://rainsprojectdotorg.wordpress.com/image/" data-orig-file="rainsprojectdotorg.files_subdomain/2020/11/image-e1605865524453.jpg" data-orig-size="400,201" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="image" data-image-description="" data-image-caption="" data-medium-file="rainsprojectdotorg.files_subdomain/2020/11/image-e1605865524453.jpg?w=300" data-large-file="rainsprojectdotorg.files_subdomain/2020/11/image-e1605865524453.jpg?w=400" src="rainsprojectdotorg.files_subdomain/2020/11/image-e1605865524453.jpg" alt="" class="wp-image-2503" /></figure></div>
<p>The RAInS team are participating in two events as part of <a rel="noreferrer noopener" href="https://www.explorathon.co.uk/" target="_blank">Explorathon 2020</a>, Scotland’s participation in <a rel="noreferrer noopener" href="https://ec.europa.eu/research/mariecurieactions/actions/european-researchers-night_en" target="_blank">European Researchers’ Night</a>, a <a rel="noreferrer noopener" href="https://ec.europa.eu/info/index_en" target="_blank">European Commission</a> funded initiative. Both events are open to the public, online, and free and will take place next week (23 and 27 November). Details for each event can be found below.</p>
<h2><strong>Event: <a href="https://www.eventbrite.co.uk/e/explorathon-2020-when-ai-gets-it-wrong-tickets-125646324539" target="_blank" rel="noreferrer noopener">When AI gets it wrong: Who’s to blame for technology’s failure?</a></strong></h2>
<p><strong>When: Monday, 23 November 2020 @3.00pm</strong><br><strong>Where: Zoom</strong><br><strong><a href="Registerhere.html" target="_blank" rel="noreferrer noopener">How: Register here<br></a>About the event:</strong><br>Artificial Intelligence (AI) is being increasingly used in applications from health care to transport to finance. But who do we hold to account when something goes wrong? As we work to remove the human from decision-making processes, what information do we still want to know about who decided how decisions should be made and how the machine is programmed to behave?</p>
<p>During this one-hour, interactive event, we will explore the decisions that are made in developing these systems – including the decisions made by the human designers, builders, and operators, and users of such AI systems and you will be given the chance to “vote” on the best outcomes for proposed scenarios before learning what is happening behind the scenes of those AI systems.</p>
<h3>Register for this event at <a href="https://www.eventbrite.co.uk/e/explorathon-2020-when-ai-gets-it-wrong-tickets-125646324539">https://www.eventbrite.co.uk/e/explorathon-2020-when-ai-gets-it-wrong-tickets-125646324539</a></h3>
<h2><strong>Event: Scottish Research Showcase Flashmob</strong> </h2>
<p><strong>When: Friday, 27 November 2020 @TBD</strong><br>[Note: the full event runs 9.00am – 9.00pm; our timeslot will be announced on Monday, 23 November]<br><strong>Where: Twitter</strong><br><strong>About the event:</strong><br>The Scottish Research Showcase, in collaboration with the Global Science Show, is reaching out to audiences around the Twittersphere to create a digital “flashmob” of science and learning. Throughout the event, researchers will showcase their work with the world by sharing short videos as part of a Twitter thread coordinated by the <a rel="noreferrer noopener" href="https://twitter.com/ernscot" target="_blank">@ernscot</a> account. This will create a chain of research from a wide variety of disciplines.</p>
<p>You can follow along by visiting the Explorathon Scotland Twitter account (<a href="https://twitter.com/ernscot" target="_blank" rel="noreferrer noopener">@ernscot</a>). We will also direct people to the event on our <a href="https://twitter.com/RAInS_Project" target="_blank" rel="noreferrer noopener">Twitter account (@RAInS_Project)</a>, so follow us there so that you don’t miss a beat!</p>
</div><!-- .entry-content -->
</div> <!-- .entry-body -->
</article><!-- #post-## -->
<article id="post-2479" class="post-2479 post type-post status-publish format-standard hentry category-accountability-and-transparency category-events tag-breast-cancer tag-events tag-icaird tag-public-engagement no-featured-image">
<div class="entry-body">
<header class="entry-header">
<div class="entry-meta">
<span class="posted-on"><a href="files/ast-cancer-screening_viagsxjwjrja8y6gfz0shu.html" rel="bookmark"><time class="entry-date published" datetime="2020-10-30T10:19:00+00:00">October 30, 2020</time><time class="updated" datetime="2020-11-17T12:05:49+00:00">November 17, 2020</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="author/justfrancesryan.html">Frances Ryan</a></span></span> <span class="cat-links"><a href="category/accountability-and-transparency.html" rel="category tag">Accountability and Transparency</a>, <a href="category/events.html" rel="category tag">Events</a></span> </div><!-- .entry-meta -->
<h2 class="entry-title"><a href="files/ast-cancer-screening_viagsxjwjrja8y6gfz0shu.html" rel="bookmark">Event recap: A discussion about AI in breast cancer screening</a></h2> </header>
<div class="entry-content">
<div class="wp-block-image"><figure class="aligncenter size-large"><img data-attachment-id="2483" data-permalink="https://rainsprojectdotorg.wordpress.com/2020/10/30/event-recap-a-discussion-about-ai-in-breast-cancer-screening/ai-bc-event-low-res/" data-orig-file="rainsprojectdotorg.files_subdomain/2020/11/ai-bc-event.low-res.jpg" data-orig-size="1200,600" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="ai-bc-event.low-res" data-image-description="" data-image-caption="" data-medium-file="rainsprojectdotorg.files_subdomain/2020/11/ai-bc-event.low-res.jpg" data-large-file="rainsprojectdotorg.files_subdomain/2020/11/ai-bc-event.low-res.jpg" src="rainsprojectdotorg.files_subdomain/2020/11/ai-bc-event.low-res.jpg" alt="" class="wp-image-2483" srcset="rainsprojectdotorg.files_subdomain/2020/11/ai-bc-event.low-res.jpg 712w, rainsprojectdotorg.files_subdomain/2020/11/ai-bc-event.low-res.jpg 150w, rainsprojectdotorg.files_subdomain/2020/11/ai-bc-event.low-res.jpg 300w, rainsprojectdotorg.files_subdomain/2020/11/ai-bc-event.low-res.jpg 768w, rainsprojectdotorg.files_subdomain/2020/11/ai-bc-event.low-res.jpg 1024w, rainsprojectdotorg.files_subdomain/2020/11/ai-bc-event.low-res.jpg 1200w" sizes="(max-width: 712px) 100vw, 712px" /></figure></div>
<p>Last week, we held an online event in partnership with members from <a rel="noreferrer noopener" href="https://icaird.com/" target="_blank">Industrial Centre for Artificial Intelligence Research in Digital Diagnostics (iCAIRD)</a>. The event was an informal discussion about the role of Artificial Intelligence (AI) in routine breast cancer screening with opportunities to hear more about this potential use of new technology. Participants were also given the chance to share their thoughts or questions related to using AI for these procedures.</p>
<p>The event coincided with <a rel="noreferrer noopener" href="https://en.wikipedia.org/wiki/Breast_cancer_awareness" target="_blank">Breast Cancer Awareness Month</a> to introduce the idea of AI in breast cancer screening to those who might not have considered it in the past. There were 15 participants and team members from both RAInS and iCAIRD at the event, and we had an enjoyable conversation about issues related to technology in healthcare.</p>
<p>We plan to run more events in the coming months, so if you missed out on last week’s event there will be future opportunities for you to engage with us. </p>
<p>If you would like to stay informed about events and research related to the RAInS project, please subscribe to this project blog or <a href="https://twitter.com/RAInS_Project" target="_blank" rel="noreferrer noopener">follow us on Twitter (@RAInS_Project)</a>.</p>
</div><!-- .entry-content -->
</div> <!-- .entry-body -->
</article><!-- #post-## -->
<article id="post-596" class="post-596 post type-post status-publish format-standard hentry category-accountability-and-transparency no-featured-image">
<div class="entry-body">
<header class="entry-header">
<div class="entry-meta">
<span class="posted-on"><a href="files/gly-at-explorathon19_oznxx8jq6upwbmh3cqgddg.html" rel="bookmark"><time class="entry-date published updated" datetime="2019-08-20T10:55:01+00:00">August 20, 2019</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="author/najaiman.html">Iman Naja</a></span></span> <span class="cat-links"><a href="category/accountability-and-transparency.html" rel="category tag">Accountability and Transparency</a></span> </div><!-- .entry-meta -->
<h2 class="entry-title"><a href="files/gly-at-explorathon19_oznxx8jq6upwbmh3cqgddg.html" rel="bookmark">Upcoming Event - AI: The Good, the Bad, and the Ugly, at Explorathon’19</a></h2> </header>
<div class="entry-content">
<p>RAInS is participating in Aberdeen’s <a rel="noreferrer noopener" aria-label="Explorathon (opens in a new tab)" href="https://www.explorathon.co.uk/" target="_blank">Explorathon’19</a>. Drop in to our interactive event, where we will explore the accountability and transparency challenges of AI, with particular focus on facial recognition technology. </p>
<p>Admission is free and no booking is required.</p>
<p><strong>When: </strong>Wednesday 25 September 2019 6:00 pm - 7:00 pm</p>
<div class="is-layout-flow wp-block-group"><div class="wp-block-group__inner-container">
<p><strong>Where: </strong><a href="https://www.aberdeencity.gov.uk/services/libraries-and-archives/find-my-local-library/central-library" target="_blank" rel="noreferrer noopener" aria-label=" (opens in a new tab)">Aberdeen Central Library</a>, Committee Room. Rosemount Viaduct, AB25 1GW<strong>.</strong></p>
</div></div>
<p><strong>Event URL</strong>: <a href="https://www.explorathon.co.uk/events/ai-the-good-the-bad-and-the-ugly/">https://www.explorathon.co.uk/events/ai-the-good-the-bad-and-the-ugly/</a> </p>
<p><strong>Event Information: </strong> Algorithms and intelligent systems are everywhere; in the news, in our daily lives and hidden in plain sight. There is a rush to make use of these technologies in areas such as healthcare, transport and security, because of the many benefits that they can bring. However, when things do go wrong, how do we determine the cause of failure? Who might be held accountable? At this interactive event, we will explore the accountability and transparency challenges of AI, with particular focus on facial recognition technology. We ask: what are the legal ramifications if these systems result in harm? </p>
<p></p>
</div><!-- .entry-content -->
</div> <!-- .entry-body -->
</article><!-- #post-## -->
<article id="post-562" class="post-562 post type-post status-publish format-standard hentry category-accountability-and-transparency no-featured-image">
<div class="entry-body">
<header class="entry-header">
<div class="entry-meta">
<span class="posted-on"><a href="2019/05/17/562.html" rel="bookmark"><time class="entry-date published" datetime="2019-05-17T13:36:12+00:00">May 17, 2019</time><time class="updated" datetime="2019-05-17T13:36:49+00:00">May 17, 2019</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="author/pemb2615.html">Rebecca Williams</a></span></span> <span class="cat-links"><a href="category/accountability-and-transparency.html" rel="category tag">Accountability and Transparency</a></span> </div><!-- .entry-meta -->
<h2 class="entry-title"><a href="2019/05/17/562.html" rel="bookmark">Accountability key to the adoption of surveillance technology</a></h2> </header>
<div class="entry-content">
<div class="wp-block-file"><a href="rainsprojectdotorg.files_subdomain/2019/05/accountability-key-to-the-adoption-of-surveillance-technology_doc">accountability-key-to-the-adoption-of-surveillance-technology</a><a href="rainsprojectdotorg.files_subdomain/2019/05/accountability-key-to-the-adoption-of-surveillance-technology_doc" class="wp-block-file__button" download>Download</a></div>
</div><!-- .entry-content -->
</div> <!-- .entry-body -->
</article><!-- #post-## -->
<article id="post-215" class="post-215 post type-post status-publish format-standard hentry category-project-news no-featured-image">
<div class="entry-body">
<header class="entry-header">
<div class="entry-meta">
<span class="posted-on"><a href="2019/04/08/trustlens-launched.html" rel="bookmark"><time class="entry-date published" datetime="2019-04-08T14:13:41+00:00">April 8, 2019</time><time class="updated" datetime="2019-05-15T12:32:58+00:00">May 15, 2019</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="author/rainsnaomi.html">Naomi Jacobs</a></span></span> <span class="cat-links"><a href="category/project-news.html" rel="category tag">Project News</a></span> </div><!-- .entry-meta -->
<h2 class="entry-title"><a href="2019/04/08/trustlens-launched.html" rel="bookmark">RAInS Launched!</a></h2> </header>
<div class="entry-content">
<p>A new project has begun at the University of Aberdeen. Realising Accountable Intelligent Systems (RAInS) is funded by the EPSRC and is led by Professor Peter Edwards.</p>
<p>The RAInS project aims to realise processes by which intelligent systems can be made accountable, by developing an <strong>accountability fabric</strong> for use by a variety of stakeholders. The project will use <strong>computational models of provenance</strong> – as a substrate for <strong>enabling trust</strong>; such a mechanism facilitates transparency and accountability by recording the processes, entities and agents associated with a system and its behaviours-supporting verification and compliance monitoring.</p>
<p>This project is a collaboration between the University of Aberdeen, The University of Cambridge, and Oxford University.</p>
</div><!-- .entry-content -->
</div> <!-- .entry-body -->
</article><!-- #post-## -->
</main>
</div>
<aside id="secondary" class="widget-area" role="complementary">
<section id="text-3" class="widget widget_text"><h2 class="widget-title">About the RAInS Project</h2> <div class="textwidget"><div class="css-1dbjc4n r-1adg3ll r-15d164r">
<div class="css-1dbjc4n">
<div class="css-901oao r-hkyrab r-1qd0xha r-a023e6 r-16dba41 r-ad9z0x r-bcqeeo r-qvutc0" dir="auto"><span class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0">RAInS is an EPSRC-funded project researching the processes by which AI systems can be made accountable and developing an accountability fabric for a range of stakeholders. </span></div>
</div>
</div>
<p><a href="http://rainsproject.org/about/">Read more here</a></p>
</div>
</section><section id="twitter_timeline-2" class="widget widget_twitter_timeline"><h2 class="widget-title">Recent Tweets from @RAInS_Project</h2><a class="twitter-timeline" data-width="330" data-height="500" data-theme="light" data-border-color="#e8e8e8" data-lang="EN" data-partner="jetpack" data-chrome="noheader noborders noscrollbar" href="https://twitter.com/RAInS_Project" href="https://twitter.com/RAInS_Project">My Tweets</a></section> </aside>
</div>
<footer id="colophon" class="site-footer" role="contentinfo">
</footer>
</div>
<!-- -->
<script src='js/gprofiles.js' id='grofiles-cards-js'></script>
<script id='wpgroho-js-extra'>
var WPGroHo = {"my_hash":""};
</script>
<script type='text/javascript' src='wp-content/mu-plugins/gravatar-hovercards/wpgroho.js'></script>
<script>
// Initialize and attach hovercards to all gravatars
( function() {
function init() {
if ( typeof Gravatar === 'undefined' ) {
return;
}
if ( typeof Gravatar.init !== 'function' ) {
return;
}
Gravatar.profile_cb = function ( hash, id ) {
WPGroHo.syncProfileData( hash, id );
};
Gravatar.my_hash = WPGroHo.my_hash;
Gravatar.init( 'body', '#wp-admin-bar-my-account' );
}
if ( document.readyState !== 'loading' ) {
init();
} else {
document.addEventListener( 'DOMContentLoaded', init );
}
} )();
</script>
<div style="display:none">
</div>
<script id='highlander-comments-js-extra'>
var HighlanderComments = {"loggingInText":"Logging In\u2026","submittingText":"Posting Comment\u2026","postCommentText":"Post Comment","connectingToText":"Connecting to %s","commentingAsText":"%1$s: You are commenting using your %2$s account.","logoutText":"Log Out","loginText":"Log In","connectURL":"https:\/\/rainsprojectdotorg.wordpress.com\/public.api\/connect\/?action=request","logoutURL":"index.html","homeURL":"https:\/\/rainsprojectdotorg.wordpress.com\/","postID":"2634","gravDefault":"identicon","enterACommentError":"Please enter a comment","enterEmailError":"Please enter your email address here","invalidEmailError":"Invalid email address","enterAuthorError":"Please enter your name here","gravatarFromEmail":"This picture will show whenever you leave a comment. Click to customize it.","logInToExternalAccount":"Log in to use details from one of these accounts.","change":"Change","changeAccount":"Change Account","comment_registration":"0","userIsLoggedIn":"","isJetpack":"","text_direction":"ltr"};
</script>
<script type='text/javascript' src='script/highlander-comments/script.js'></script>
<!-- CCPA [start] -->
<script type="text/javascript">
( function () {
var setupPrivacy = function() {
// Minimal Mozilla Cookie library
// https://developer.mozilla.org/en-US/docs/Web/API/Document/cookie/Simple_document.cookie_framework
var cookieLib = window.cookieLib = {getItem:function(e){return e&&decodeURIComponent(document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*"+encodeURIComponent(e).replace(/[\-\.\+\*]/g,"\\$&")+"\\s*\\=\\s*([^;]*).*$)|^.*$"),"$1"))||null},setItem:function(e,o,n,t,r,i){if(!e||/^(?:expires|max\-age|path|domain|secure)$/i.test(e))return!1;var c="";if(n)switch(n.constructor){case Number:c=n===1/0?"; expires=Fri, 31 Dec 9999 23:59:59 GMT":"; max-age="+n;break;case String:c="; expires="+n;break;case Date:c="; expires="+n.toUTCString()}return"rootDomain"!==r&&".rootDomain"!==r||(r=(".rootDomain"===r?".":"")+document.location.hostname.split(".").slice(-2).join(".")),document.cookie=encodeURIComponent(e)+"="+encodeURIComponent(o)+c+(r?"; domain="+r:"")+(t?"; path="+t:"")+(i?"; secure":""),!0}};
// Implement IAB USP API.
window.__uspapi = function( command, version, callback ) {
// Validate callback.
if ( typeof callback !== 'function' ) {
return;
}
// Validate the given command.
if ( command !== 'getUSPData' || version !== 1 ) {
callback( null, false );
return;
}
// Check for GPC. If set, override any stored cookie.
if ( navigator.globalPrivacyControl ) {
callback( { version: 1, uspString: '1YYN' }, true );
return;
}
// Check for cookie.
var consent = cookieLib.getItem( 'usprivacy' );
// Invalid cookie.
if ( null === consent ) {
callback( null, false );
return;
}
// Everything checks out. Fire the provided callback with the consent data.
callback( { version: 1, uspString: consent }, true );
};
// Initialization.
document.addEventListener( 'DOMContentLoaded', function() {
// Internal functions.
var setDefaultOptInCookie = function() {
var value = '1YNN';
var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
cookieLib.setItem( 'usprivacy', value, 365 * 24 * 60 * 60, '/', domain );
};
var setDefaultOptOutCookie = function() {
var value = '1YYN';
var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
cookieLib.setItem( 'usprivacy', value, 24 * 60 * 60, '/', domain );
};
var setDefaultNotApplicableCookie = function() {
var value = '1---';
var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
cookieLib.setItem( 'usprivacy', value, 24 * 60 * 60, '/', domain );
};
var setCcpaAppliesCookie = function( applies ) {
var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
cookieLib.setItem( 'ccpa_applies', applies, 24 * 60 * 60, '/', domain );
}
var maybeCallDoNotSellCallback = function() {
if ( 'function' === typeof window.doNotSellCallback ) {
return window.doNotSellCallback();
}
return false;
}
// Look for usprivacy cookie first.
var usprivacyCookie = cookieLib.getItem( 'usprivacy' );
// Found a usprivacy cookie.
if ( null !== usprivacyCookie ) {
// If the cookie indicates that CCPA does not apply, then bail.
if ( '1---' === usprivacyCookie ) {
return;
}
// CCPA applies, so call our callback to add Do Not Sell link to the page.
maybeCallDoNotSellCallback();
// We're all done, no more processing needed.
return;
}
// We don't have a usprivacy cookie, so check to see if we have a CCPA applies cookie.
var ccpaCookie = cookieLib.getItem( 'ccpa_applies' );
// No CCPA applies cookie found, so we'll need to geolocate if this visitor is from California.
// This needs to happen client side because we do not have region geo data in our $SERVER headers,
// only country data -- therefore we can't vary cache on the region.
if ( null === ccpaCookie ) {
var request = new XMLHttpRequest();
request.open( 'GET', 'https://public-api.wordpress.com/geo/', true );
request.onreadystatechange = function () {
if ( 4 === this.readyState ) {
if ( 200 === this.status ) {
// Got a geo response. Parse out the region data.
var data = JSON.parse( this.response );
var ccpa_applies = data['region'] && data['region'].toLowerCase() === 'california';
// Set CCPA applies cookie. This keeps us from having to make a geo request too frequently.
setCcpaAppliesCookie( ccpa_applies );
// Check if CCPA applies to set the proper usprivacy cookie.
if ( ccpa_applies ) {
if ( maybeCallDoNotSellCallback() ) {
// Do Not Sell link added, so set default opt-in.
setDefaultOptInCookie();
} else {
// Failed showing Do Not Sell link as required, so default to opt-OUT just to be safe.
setDefaultOptOutCookie();
}
} else {
// CCPA does not apply.
setDefaultNotApplicableCookie();
}
} else {
// Could not geo, so let's assume for now that CCPA applies to be safe.
setCcpaAppliesCookie( true );
if ( maybeCallDoNotSellCallback() ) {
// Do Not Sell link added, so set default opt-in.
setDefaultOptInCookie();
} else {
// Failed showing Do Not Sell link as required, so default to opt-OUT just to be safe.
setDefaultOptOutCookie();
}
}
}
};
// Send the geo request.
request.send();
} else {
// We found a CCPA applies cookie.
if ( ccpaCookie === 'true' ) {
if ( maybeCallDoNotSellCallback() ) {
// Do Not Sell link added, so set default opt-in.
setDefaultOptInCookie();
} else {
// Failed showing Do Not Sell link as required, so default to opt-OUT just to be safe.
setDefaultOptOutCookie();
}
} else {
// CCPA does not apply.
setDefaultNotApplicableCookie();
}
}
} );
};
// Kickoff initialization.
if ( window.defQueue && defQueue.isLOHP && defQueue.isLOHP === 2020 ) {
defQueue.items.push( setupPrivacy );
} else {
setupPrivacy();
}
} )();
</script>
<!-- CCPA [end] -->
<div class="widget widget_eu_cookie_law_widget">
<div
class="hide-on-button ads-active"
data-hide-timeout="30"
data-consent-expiration="180"
id="eu-cookie-law"
style="display: none"
>
<form method="post">
<input type="submit" value="Close and accept" class="accept" />
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use. <br />
To find out more, including how to control cookies, see here:
<a href="https://automattic.com/cookies/" rel="nofollow">
Cookie Policy </a>
</form>
</div>
</div> <script type="text/javascript">
( function() {
function init() {
document.body.addEventListener( 'is.post-load', function() {
if ( typeof __ATA.insertInlineAds === 'function' ) {
__ATA.insertInlineAds();
}
} );
}
if ( document.readyState !== 'loading' ) {
init();
} else {
document.addEventListener( 'DOMContentLoaded', init );
}
} )();
</script> <div id="actionbar" style="display: none;"
class="actnbr-pub-ixion actnbr-has-follow">
<ul>
<li class="actnbr-btn actnbr-hidden">
<a class="actnbr-action actnbr-actn-follow " href="">
<svg class="gridicon gridicons-reader-follow" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M23 16v2h-3v3h-2v-3h-3v-2h3v-3h2v3h3zM20 2v9h-4v3h-3v4H4c-1.1 0-2-.9-2-2V2h18zM8 13v-1H4v1h4zm3-3H4v1h7v-1zm0-2H4v1h7V8zm7-4H4v2h14V4z"/></g></svg><span>Follow</span>
</a>
<a class="actnbr-action actnbr-actn-following no-display" href="">
<svg class="gridicon gridicons-reader-following" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M23 13.482L15.508 21 12 17.4l1.412-1.388 2.106 2.188 6.094-6.094L23 13.482zm-7.455 1.862L20 10.89V2H2v14c0 1.1.9 2 2 2h4.538l4.913-4.832 2.095 2.176zM8 13H4v-1h4v1zm3-2H4v-1h7v1zm0-2H4V8h7v1zm7-3H4V4h14v2z"/></g></svg><span>Following</span>
</a>
<div class="actnbr-popover tip tip-top-left actnbr-notice" id="follow-bubble">
<div class="tip-arrow"></div>
<div class="tip-inner actnbr-follow-bubble">
<ul>
<li class="actnbr-sitename">
<a href="index.html">
<img alt='' src='rainsprojectdotorg.files_subdomain/2019/05/cropped-rains-logo-light.png' class='avatar avatar-50' height='50' width='50' /> rainsprojectdotorg.wordpress.com </a>
</li>
<form method="post" action="https://subscribe.wordpress.com" accept-charset="utf-8" style="display: none;">
<div>
<input type="email" name="email" placeholder="Enter your email address" class="actnbr-email-field" aria-label="Enter your email address" />
</div>
<input type="hidden" name="action" value="subscribe" />
<input type="hidden" name="blog_id" value="160669261" />
<input type="hidden" name="source" value="https://rainsprojectdotorg.wordpress.com/" />
<input type="hidden" name="sub-type" value="actionbar-follow" />
<input type="hidden" id="_wpnonce" name="_wpnonce" value="d5bcf2f0b1" /> <div class="actnbr-button-wrap">
<button type="submit" value="Sign me up">
Sign me up </button>
</div>
</form>
<li class="actnbr-login-nudge">
<div>
Already have a WordPress.com account? <a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Frainsprojectdotorg.wordpress.com%2F2021%2F11%2F16%2Finternational-semantic-web-conference-iswc-2021%2F&signup_flow=account">Log in now.</a> </div>
</li>
</ul>
</div>
</div>
</li>
<li class="actnbr-ellipsis actnbr-hidden">
<svg class="gridicon gridicons-ellipsis" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M7 12c0 1.104-.896 2-2 2s-2-.896-2-2 .896-2 2-2 2 .896 2 2zm12-2c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2zm-7 0c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2z"/></g></svg> <div class="actnbr-popover tip tip-top-left actnbr-more">
<div class="tip-arrow"></div>
<div class="tip-inner">
<ul>
<li class="actnbr-sitename">
<a href="index.html">
<img alt='' src='rainsprojectdotorg.files_subdomain/2019/05/cropped-rains-logo-light.png' class='avatar avatar-50' height='50' width='50' /> rainsprojectdotorg.wordpress.com </a>
</li>
<li class="actnbr-folded-customize">
<a href="index.html">
<svg class="gridicon gridicons-customize" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M2 6c0-1.505.78-3.08 2-4 0 .845.69 2 2 2 1.657 0 3 1.343 3 3 0 .386-.08.752-.212 1.09.74.594 1.476 1.19 2.19 1.81L8.9 11.98c-.62-.716-1.214-1.454-1.807-2.192C6.753 9.92 6.387 10 6 10c-2.21 0-4-1.79-4-4zm12.152 6.848l1.34-1.34c.607.304 1.283.492 2.008.492 2.485 0 4.5-2.015 4.5-4.5 0-.725-.188-1.4-.493-2.007L18 9l-2-2 3.507-3.507C18.9 3.188 18.225 3 17.5 3 15.015 3 13 5.015 13 7.5c0 .725.188 1.4.493 2.007L3 20l2 2 6.848-6.848c1.885 1.928 3.874 3.753 5.977 5.45l1.425 1.148 1.5-1.5-1.15-1.425c-1.695-2.103-3.52-4.092-5.448-5.977z"/></g></svg> <span>Customize</span>
</a>
</li>
<li class="actnbr-folded-follow">
<a class="actnbr-action actnbr-actn-follow " href="">
<svg class="gridicon gridicons-reader-follow" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M23 16v2h-3v3h-2v-3h-3v-2h3v-3h2v3h3zM20 2v9h-4v3h-3v4H4c-1.1 0-2-.9-2-2V2h18zM8 13v-1H4v1h4zm3-3H4v1h7v-1zm0-2H4v1h7V8zm7-4H4v2h14V4z"/></g></svg><span>Follow</span>
</a>
<a class="actnbr-action actnbr-actn-following no-display" href="">
<svg class="gridicon gridicons-reader-following" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M23 13.482L15.508 21 12 17.4l1.412-1.388 2.106 2.188 6.094-6.094L23 13.482zm-7.455 1.862L20 10.89V2H2v14c0 1.1.9 2 2 2h4.538l4.913-4.832 2.095 2.176zM8 13H4v-1h4v1zm3-2H4v-1h7v1zm0-2H4V8h7v1zm7-3H4V4h14v2z"/></g></svg><span>Following</span>
</a>
</li>
<li class="actnbr-signup"><a href="https://wordpress.com/start/">Sign up</a></li>
<li class="actnbr-login"><a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Frainsprojectdotorg.wordpress.com%2F2021%2F11%2F16%2Finternational-semantic-web-conference-iswc-2021%2F&signup_flow=account">Log in</a></li>
<li class="flb-report"><a href="http://en.wordpress.com/abuse/">Report this content</a></li>
<li class="actnbr-reader">
<a href="https://wordpress.com/read/feeds/131254848">
View site in Reader </a>
</li>
<li class="actnbr-subs">
<a href="https://subscribe.wordpress.com">Manage subscriptions</a>
</li>
<li class="actnbr-fold"><a href="">Collapse this bar</a></li>
</ul>
</div>
</div>
</li>
</ul>
</div>
<script>
window.addEventListener( "load", function( event ) {
var link = document.createElement( "link" );
link.href = "wp-content/mu-plugins/actionbar/actionbar.css";
link.type = "text/css";
link.rel = "stylesheet";
document.head.appendChild( link );
var script = document.createElement( "script" );
script.src = "wp-content/mu-plugins/actionbar/actionbar.js";
script.defer = true;
document.body.appendChild( script );
} );
</script>
<div id="jp-carousel-loading-overlay">
<div id="jp-carousel-loading-wrapper">
<span id="jp-carousel-library-loading"> </span>
</div>
</div>
<div class="jp-carousel-overlay" style="display: none;">
<div class="jp-carousel-container">
<!-- The Carousel Swiper -->
<div
class="jp-carousel-wrap swiper-container jp-carousel-swiper-container jp-carousel-transitions"
itemscope
itemtype="https://schema.org/ImageGallery">
<div class="jp-carousel swiper-wrapper"></div>
<div class="jp-swiper-button-prev swiper-button-prev">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="maskPrev" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="9" height="12">
<path d="M16.2072 16.59L11.6496 12L16.2072 7.41L14.8041 6L8.8335 12L14.8041 18L16.2072 16.59Z" fill="white"/>
</mask>
<g mask="url(#maskPrev)">
<rect x="0.579102" width="23.8823" height="24" fill="#FFFFFF"/>
</g>
</svg>
</div>
<div class="jp-swiper-button-next swiper-button-next">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="maskNext" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="8" height="12">
<path d="M8.59814 16.59L13.1557 12L8.59814 7.41L10.0012 6L15.9718 12L10.0012 18L8.59814 16.59Z" fill="white"/>
</mask>
<g mask="url(#maskNext)">
<rect x="0.34375" width="23.8822" height="24" fill="#FFFFFF"/>
</g>
</svg>
</div>
</div>
<!-- The main close buton -->
<div class="jp-carousel-close-hint">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="maskClose" mask-type="alpha" maskUnits="userSpaceOnUse" x="5" y="5" width="15" height="14">
<path d="M19.3166 6.41L17.9135 5L12.3509 10.59L6.78834 5L5.38525 6.41L10.9478 12L5.38525 17.59L6.78834 19L12.3509 13.41L17.9135 19L19.3166 17.59L13.754 12L19.3166 6.41Z" fill="white"/>
</mask>
<g mask="url(#maskClose)">
<rect x="0.409668" width="23.8823" height="24" fill="#FFFFFF"/>
</g>
</svg>
</div>
<!-- Image info, comments and meta -->
<div class="jp-carousel-info">
<div class="jp-carousel-info-footer">
<div class="jp-carousel-pagination-container">
<div class="jp-swiper-pagination swiper-pagination"></div>
<div class="jp-carousel-pagination"></div>
</div>
<div class="jp-carousel-photo-title-container">
<h2 class="jp-carousel-photo-caption"></h2>
</div>
<div class="jp-carousel-photo-icons-container">
<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-info" aria-label="Toggle photo metadata visibility">
<span class="jp-carousel-icon">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="maskInfo" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7537 2C7.26076 2 2.80273 6.48 2.80273 12C2.80273 17.52 7.26076 22 12.7537 22C18.2466 22 22.7046 17.52 22.7046 12C22.7046 6.48 18.2466 2 12.7537 2ZM11.7586 7V9H13.7488V7H11.7586ZM11.7586 11V17H13.7488V11H11.7586ZM4.79292 12C4.79292 16.41 8.36531 20 12.7537 20C17.142 20 20.7144 16.41 20.7144 12C20.7144 7.59 17.142 4 12.7537 4C8.36531 4 4.79292 7.59 4.79292 12Z" fill="white"/>
</mask>
<g mask="url(#maskInfo)">
<rect x="0.8125" width="23.8823" height="24" fill="#FFFFFF"/>
</g>
</svg>
</span>
</a>
<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-comments" aria-label="Toggle photo comments visibility">
<span class="jp-carousel-icon">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="maskComments" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.3271 2H20.2486C21.3432 2 22.2388 2.9 22.2388 4V16C22.2388 17.1 21.3432 18 20.2486 18H6.31729L2.33691 22V4C2.33691 2.9 3.2325 2 4.3271 2ZM6.31729 16H20.2486V4H4.3271V18L6.31729 16Z" fill="white"/>
</mask>
<g mask="url(#maskComments)">
<rect x="0.34668" width="23.8823" height="24" fill="#FFFFFF"/>
</g>
</svg>
<span class="jp-carousel-has-comments-indicator" aria-label="This image has comments."></span>
</span>
</a>
</div>
</div>
<div class="jp-carousel-info-extra">
<div class="jp-carousel-info-content-wrapper">
<div class="jp-carousel-photo-title-container">
<h2 class="jp-carousel-photo-title"></h2>
</div>
<div class="jp-carousel-comments-wrapper">
<div id="jp-carousel-comments-loading">
<span>Loading Comments...</span>
</div>
<div class="jp-carousel-comments"></div>
<div id="jp-carousel-comment-form-container">
<span id="jp-carousel-comment-form-spinner"> </span>
<div id="jp-carousel-comment-post-results"></div>
<form id="jp-carousel-comment-form">
<label for="jp-carousel-comment-form-comment-field" class="screen-reader-text">Write a Comment...</label>
<textarea
name="comment"
class="jp-carousel-comment-form-field jp-carousel-comment-form-textarea"
id="jp-carousel-comment-form-comment-field"
placeholder="Write a Comment..."
></textarea>
<div id="jp-carousel-comment-form-submit-and-info-wrapper">
<div id="jp-carousel-comment-form-commenting-as">
<fieldset>
<label for="jp-carousel-comment-form-email-field">Email (Required)</label>
<input type="text" name="email" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-email-field" />
</fieldset>
<fieldset>
<label for="jp-carousel-comment-form-author-field">Name (Required)</label>
<input type="text" name="author" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-author-field" />
</fieldset>
<fieldset>
<label for="jp-carousel-comment-form-url-field">Website</label>
<input type="text" name="url" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-url-field" />
</fieldset>
</div>
<input
type="submit"
name="submit"
class="jp-carousel-comment-form-button"
id="jp-carousel-comment-form-button-submit"
value="Post Comment" />
</div>