-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpublications.html
6061 lines (5000 loc) · 201 KB
/
publications.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
<!-- This document was automatically generated with bibtex2html 1.99
(see http://www.lri.fr/~filliatr/bibtex2html/),
with the following command:
bibtex2html -d -r -revkeys -nodoc -f sample -nf sample sample publications.bib -->
<table>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="dlt_2024">353</a>]
</td>
<td class="bibtexitem">
Anupa De Silva, Subhasis Thakur, and John G Breslin.
Card payment protocol for cryptocurrencies with payment channel
network.
<em>Distributed Ledger Technologies</em>, March 2024.
[ <a href="publications_bib.html#dlt_2024">bib</a> |
<a href="http://dx.doi.org/10.1145/3653681">DOI</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="tce_2024a">352</a>]
</td>
<td class="bibtexitem">
Priyanka Verma, John G Breslin, Donna O'Shea, Nakul Mehta, Nitesh Bharot, and
Ankit Vidyarthi.
Gametic heredity in oversampling techniques to handle class imbalance
for efficient cyberthreat detection in iiot.
<em>IEEE Transactions on Consumer Electronics</em>, 70(1):1940--1951,
February 2024.
[ <a href="publications_bib.html#tce_2024a">bib</a> |
<a href="http://dx.doi.org/10.1109/TCE.2023.3319439">DOI</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="tce_2024b">351</a>]
</td>
<td class="bibtexitem">
Priyanka Verma, Nitesh Bharot, John G Breslin, Donna O'Shea, Ankit Vidyarthi,
and Deepak Gupta.
Zero-day guardian: A dual model enabled federated learning framework
for handling zero-day attacks in 5g enabled iiot.
<em>IEEE Transactions on Consumer Electronics</em>, (1):3856--3866,
February 2024.
[ <a href="publications_bib.html#tce_2024b">bib</a> |
<a href="http://dx.doi.org/10.1109/TCE.2023.3335385">DOI</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="tets2024">350</a>]
</td>
<td class="bibtexitem">
Priyanka Verma, Nitesh Bharot, John G Breslin, Mukta Sharma, Nisha Chaurasia,
and Ankit Vidyarthi.
Uncovering collateral damages and advanced defense strategies in
cloud environments against ddos attacks: A comprehensive review.
<em>Transactions on Emerging Telecommunications Technologies</em>,
January 2024.
[ <a href="publications_bib.html#tets2024">bib</a> |
<a href="http://dx.doi.org/10.1002/ett.4934">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20240108_tets2024.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="hcis2024">349</a>]
</td>
<td class="bibtexitem">
Abdul Wahid, John G Breslin, and Muhammad I Ali.
Tcrscanet: Harnessing temporal convolutions and recurrent skip
component for enhanced rul estimation in mechanical systems.
<em>Human-Centric Intelligent Systems</em>, January 2024.
[ <a href="publications_bib.html#hcis2024">bib</a> |
<a href="http://dx.doi.org/10.1007/s44230-023-00060-0">DOI</a> |
<a href="https://link.springer.com/article/10.1007/s44230-023-00060-0">http</a> |
<a href="http://www.johnbreslin.com/files/publications/20240129_hcis2024.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="nai_2024">348</a>]
</td>
<td class="bibtexitem">
Muhammad Jaleed Khan, Filip Ilievski, John G Breslin, and Edward Curry.
A survey of neurosymbolic visual reasoning with scene graphs and
common sense knowledge.
<em>Neurosymbolic Artificial Intelligence Journal</em>, 2024.
[ <a href="publications_bib.html#nai_2024">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="exsy2024">347</a>]
</td>
<td class="bibtexitem">
Ankit Vidyarthi, Priyanka Verma, John G Bharot, Nitesh; Breslin, Donna O'Shea,
Anand Kumar Mishra, and Deepak Gupta.
Leveraging transfer learning domain adaptation model with federated
learning to revolutionize healthcare.
<em>Expert Systems</em>, 2024.
[ <a href="publications_bib.html#exsy2024">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="acce2024">346</a>]
</td>
<td class="bibtexitem">
Rory Ward, Dan Bigioi, Shubhajit Basak, John G Breslin, and Peter Corcoran.
Latentcolorization: Latent diffusion-based speaker video
colorization.
<em>IEEE Access</em>, 2024.
[ <a href="publications_bib.html#acce2024">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="anti2023">345</a>]
</td>
<td class="bibtexitem">
Nitesh Bharot and John G Breslin.
Intrusion watchdog: Enhancing intrusion detection system with machine
learning using 3-way feature selection technique.
In <em>The 3rd International Conference on Advanced Network
Technologies and Intelligent Computing (ANTIC 2023)</em>, December 2023.
[ <a href="publications_bib.html#anti2023">bib</a> |
<a href="http://www.johnbreslin.com/files/publications/20231221_anti2023.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="swj_2023b">344</a>]
</td>
<td class="bibtexitem">
Muhammad Jaleed Khan, John G Breslin, and Edward Curry.
Neusyre: Neuro-symbolic visual understanding and reasoning framework
based on scene graph enrichment.
<em>Semantic Web Journal</em>, December 2023.
[ <a href="publications_bib.html#swj_2023b">bib</a> |
<a href="http://dx.doi.org/10.3233/SW-233510">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20231213_swj_2023b.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ism_2023">343</a>]
</td>
<td class="bibtexitem">
Nitesh Bharot, Priyanka Verma, Mirco Soderi, and John G Breslin.
Dq-deeplearn: Data quality driven deep learning approach for enhanced
predictive maintenance in smart manufacturing.
In <em>The 5th International Conference on Industry 4.0 and Smart
Manufacturing (ISM 2023)</em>. IEEE, November 2023.
[ <a href="publications_bib.html#ism_2023">bib</a> |
<a href="http://www.johnbreslin.com/files/publications/20231123_ism_2023.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="sgse2023">342</a>]
</td>
<td class="bibtexitem">
Sweta Malik, Subhasis Thakur, Maeve Duffy, and John G Breslin.
Comparative double auction approach for peer-to-peer energy trading
on multiple microgrids.
<em>Smart Grids and Sustainable Energy</em>, November 2023.
[ <a href="publications_bib.html#sgse2023">bib</a> |
<a href="http://dx.doi.org/10.1007/s40866-023-00178-x">DOI</a> |
<a href="https://link.springer.com/article/10.1007/s40866-023-00178-x">http</a> |
<a href="http://www.johnbreslin.com/files/publications/20231121_sgse2023.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="acce2023c">341</a>]
</td>
<td class="bibtexitem">
Jefkine Kafunah, Priyanka Verma, Muhammad I Ali, and John G Breslin.
Out-of-distribution data generation for fault detection and diagnosis
in industrial systems.
<em>IEEE Access</em>, November 2023.
[ <a href="publications_bib.html#acce2023c">bib</a> |
<a href="http://dx.doi.org/10.1109/ACCESS.2023.3337658">DOI</a> |
<a href="https://ieeexplore.ieee.org/document/10145852">http</a> |
<a href="http://www.johnbreslin.com/files/publications/20231128_acce2023c.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="muws2023">340</a>]
</td>
<td class="bibtexitem">
Muhammad Jaleed Khan, John G Breslin, and Edward Curry.
Towards fairness in multimodal scene graph generation: Mitigating
biases in datasets, knowledge sources and models.
In <em>The 2nd International Workshop on Multimodal Human
Understanding for the Web and Social Media (MUWS 2023) at the 32nd ACM
International Conference on Information and Knowledge Management (CIKM
2023)</em>, October 2023.
[ <a href="publications_bib.html#muws2023">bib</a> |
<a href="http://www.johnbreslin.com/files/publications/20231022_muws2023.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="csi_2023">339</a>]
</td>
<td class="bibtexitem">
Saurabh Shukla, Shahid Hussain, Reyazur Rashid Irshad, Ahmed Abdu Alattab,
Subhasis Thakur, John G Breslin, M Fadzil Hassan, Satheesh Abimannan, Shahid
Husain, and Syed Muslim Jameel.
Network analysis in a peer-to-peer energy trading model using
blockchain and machine learning.
<em>Computer Standards and Interfaces</em>, 88, October 2023.
[ <a href="publications_bib.html#csi_2023">bib</a> |
<a href="http://dx.doi.org/10.1016/j.csi.2023.103799">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20231014_csi_2023.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="oiic2023">338</a>]
</td>
<td class="bibtexitem">
John G Breslin and Sarah-Anne Buckley.
<em>Old Ireland in Colour 3</em>.
Merrion Press, October 2023.
[ <a href="publications_bib.html#oiic2023">bib</a> |
<a href="https://irishacademicpress.ie/product/old-ireland-in-colour-3/">http</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="mass2023">337</a>]
</td>
<td class="bibtexitem">
Anupa De Silva, Subhasis Thakur, and John G Breslin.
Not so atomic payments: A supply chain example.
In <em>The 20th IEEE International Conference on Mobile Ad-Hoc and
Smart Systems (MASS 2023)</em>. IEEE, September 2023.
[ <a href="publications_bib.html#mass2023">bib</a> |
<a href="http://www.johnbreslin.com/files/publications/20230925_mass2023.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="sust2023">336</a>]
</td>
<td class="bibtexitem">
Satheesh Abimannan, El-Sayed M El-Alfy, Shahid Hussain, Yue-Shan Chang, Saurabh
Shukla, Dhivyadharsini Satheesh, and John G Breslin.
Towards federated learning and multi-access edge computing for air
quality monitoring: Literature review and assessment.
<em>Sustainability</em>, 15(18), September 2023.
[ <a href="publications_bib.html#sust2023">bib</a> |
<a href="http://dx.doi.org/10.3390/su151813951">DOI</a> |
<a href="https://www.mdpi.com/2071-1050/15/18/13951">http</a> |
<a href="http://www.johnbreslin.com/files/publications/20230920_sust2023.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="nesy2023">335</a>]
</td>
<td class="bibtexitem">
Rory Ward, Muhammad Jaleed Khan, Edward Curry, and John G Breslin.
Knowledge-guided colorization: Overview, prospects and challenges.
In <em>The 17th International Workshop on Neural-Symbolic Learning
and Reasoning (NeSy 2023)</em>, July 2023.
[ <a href="publications_bib.html#nesy2023">bib</a> |
<a href="http://www.johnbreslin.com/files/publications/20230703_nesy2023.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="smar2023e">334</a>]
</td>
<td class="bibtexitem">
Nitesh Bharot, John G Breslin, and Mirco Soderi.
A demo of microservice for customized faulty product detection system
in smart manufacturing.
In <em>The 9th IEEE International Conference on Smart Computing
(SMARTCOMP 2023)</em>. IEEE, June 2023.
[ <a href="publications_bib.html#smar2023e">bib</a> |
<a href="http://dx.doi.org/10.1109/SMARTCOMP58114.2023.00040">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20230626_smar2023e.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="smar2023d">333</a>]
</td>
<td class="bibtexitem">
Mirco Soderi and John G Breslin.
A service for resilient manufacturing.
In <em>The 9th IEEE International Conference on Smart Computing
(SMARTCOMP 2023)</em>. IEEE, June 2023.
[ <a href="publications_bib.html#smar2023d">bib</a> |
<a href="http://dx.doi.org/10.1109/SMARTCOMP58114.2023.00045">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20230626_smar2023d.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="smar2023c">332</a>]
</td>
<td class="bibtexitem">
Mirco Soderi and John G Breslin.
Synchronized sub-second arbitrary changes to decoupled components for
ultimate resilience in cross-platform geo-distributed smart factories.
In <em>The 9th IEEE International Conference on Smart Computing
(SMARTCOMP 2023)</em>. IEEE, June 2023.
[ <a href="publications_bib.html#smar2023c">bib</a> |
<a href="http://dx.doi.org/10.1109/SMARTCOMP58114.2023.00056">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20230626_smar2023c.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="smar2023b">331</a>]
</td>
<td class="bibtexitem">
Nitesh Bharot, Mirco Soderi, Priyanka Verma, and John G Breslin.
Improving product quality control in smart manufacturing through
transfer learning-based fault detection.
In <em>The 9th IEEE International Conference on Smart Computing
(SMARTCOMP 2023)</em>. IEEE, June 2023.
[ <a href="publications_bib.html#smar2023b">bib</a> |
<a href="http://dx.doi.org/10.1109/SMARTCOMP58114.2023.00051">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20230626_smar2023b.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="smar2023a">330</a>]
</td>
<td class="bibtexitem">
Priyanka Verma, John G Breslin, Miguel Ponce de Leon, and Donna O'Shea.
Fedtiu: Securing virtualized plcs against ddos attacks using a
federated learning enabled threat intelligence unit.
In <em>The 9th IEEE International Conference on Smart Computing
(SMARTCOMP 2023)</em>. IEEE, June 2023.
[ <a href="publications_bib.html#smar2023a">bib</a> |
<a href="http://dx.doi.org/10.1109/SMARTCOMP58114.2023.00058">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20230626_smar2023a.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="indu2023">329</a>]
</td>
<td class="bibtexitem">
Jefkine Kafunah, Muhammad I Ali, and John G Breslin.
Uncertainty-aware ensemble combination method for quality monitoring
fault diagnosis in safety-related products.
<em>IEEE Transactions on Industrial Informatics</em>, June 2023.
[ <a href="publications_bib.html#indu2023">bib</a> |
<a href="http://dx.doi.org/10.1109/TII.2023.3280566">DOI</a> |
<a href="https://ieeexplore.ieee.org/document/10145852">http</a> |
<a href="http://www.johnbreslin.com/files/publications/20230607_indu2023.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="acce2023b">328</a>]
</td>
<td class="bibtexitem">
Reyazur R Irshad, Shahid Hussain, Ihtisham Hussain, Ibrar Ahmad, Adil Yousif,
Ibrahim M Alwayle, Ahmed A Alattab, Khaled M Alalayah, John G Breslin,
Mohammed M Badr, and Joel JPC Rodrigues.
An intelligent buffalo-based secure edge-enabled computing platform
for heterogeneous iot network in smart cities.
<em>IEEE Access</em>, June 2023.
[ <a href="publications_bib.html#acce2023b">bib</a> |
<a href="http://dx.doi.org/10.1109/ACCESS.2023.3288815">DOI</a> |
<a href="https://ieeexplore.ieee.org/document/10159381">http</a> |
<a href="http://www.johnbreslin.com/files/publications/20230622_acce2023b.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="swj_2023a">327</a>]
</td>
<td class="bibtexitem">
Muhammad Yahya, Aabid Ali, Qaiser Mehmood, Lan Yang, John G Breslin, and
Muhammad I Ali.
A benchmark dataset with knowledge graph generation for industry 4.0
production lines.
<em>Semantic Web Journal</em>, May 2023.
[ <a href="publications_bib.html#swj_2023a">bib</a> |
<a href="http://dx.doi.org/10.5281/zenodo.7779522">DOI</a> |
<a href="https://www.semantic-web-journal.net/system/files/swj3431.pdf">.pdf</a> |
<a href="https://www.semantic-web-journal.net/content/benchmark-dataset-knowledge-graph-generation-industry-40-production-lines-0">http</a> |
<a href="http://www.johnbreslin.com/files/publications/20230530_swj_2023a.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="its_2023">326</a>]
</td>
<td class="bibtexitem">
Shahid Hussain, Reyazur Irshad, Fabiano Pallonetto, Qasim Jan, Saurabh Shukla,
Subhasis Thakur, John G Breslin, Mousa Mazarband, Yun-Su Kim, Muhammad Ahmad
Rathore, and Hesham Elsayed.
Enhancing the efficiency of electric vehicles charging stations based
on novel fuzzy integer linear programming.
<em>IEEE Transactions on Intelligent Transportation Systems</em>, May
2023.
[ <a href="publications_bib.html#its_2023">bib</a> |
<a href="http://dx.doi.org/10.1109/TITS.2023.3274608">DOI</a> |
<a href="https://ieeexplore.ieee.org/document/10129128">http</a> |
<a href="http://www.johnbreslin.com/files/publications/20230518_its_2023.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="sds_2023">325</a>]
</td>
<td class="bibtexitem">
Atiya Usmani, Muhammad Jaleed Khan, John G Breslin, and Edward Curry.
Towards multimodal knowledge graphs for data spaces.
In <em>The 1st International Workshop on Semantics in Dataspaces
(SDS 2023) at the 32nd ACM Web Conference 2023 (TheWebConf 2023)</em>, April
2023.
[ <a href="publications_bib.html#sds_2023">bib</a> |
<a href="http://www.johnbreslin.com/files/publications/20230430_sds_2023.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="acce2023a">324</a>]
</td>
<td class="bibtexitem">
Muhammad Yahya, Baifan Zhou, John G Breslin, Muhammad I Ali, and Evgeny
Kharlamov.
Semantic modeling, development and evaluation for the resistance spot
welding industry.
<em>IEEE Access</em>, April 2023.
[ <a href="publications_bib.html#acce2023a">bib</a> |
<a href="http://dx.doi.org/10.1109/ACCESS.2023.3267000">DOI</a> |
<a href="https://ieeexplore.ieee.org/document/10101786">http</a> |
<a href="http://www.johnbreslin.com/files/publications/20230413_acce2023a.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="eij_2023">323</a>]
</td>
<td class="bibtexitem">
Rory Ward and John G Breslin.
Overcoming challenges with automatic video colourisation.
<em>Engineers Ireland Journal</em>, March 2023.
[ <a href="publications_bib.html#eij_2023">bib</a> |
<a href="http://www.johnbreslin.com/files/publications/20230313_eij_2023.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="icsc2023">322</a>]
</td>
<td class="bibtexitem">
Atiya Usmani, Saeed H Alsamhi, John G Breslin, and Edward Curry.
A novel framework for constructing multimodal knowledge graph from
muse-car video reviews.
In <em>The 17th IEEE International Conference on Semantic Computing
(ICSC 2023)</em>, pages 323--328, February 2023.
[ <a href="publications_bib.html#icsc2023">bib</a> |
<a href="http://dx.doi.org/10.1109/ICSC56153.2023.00066">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20230201_icsc2023.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="aics2022">321</a>]
</td>
<td class="bibtexitem">
Mirco Soderi and John G Breslin.
Bluetooth low energy peripherals and edge-to-cloud data assessment as
a service, with docker, node-red, mqtt, scala, spark, kafka, hdfs, and
android sdk: A demo.
In <em>The 30th Irish Conference on Artificial Intelligence and
Cognitive Science (AICS 2022)</em>, December 2022.
[ <a href="publications_bib.html#aics2022">bib</a> |
<a href="http://www.johnbreslin.com/files/publications/20221208_aics2022.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="mind2022">320</a>]
</td>
<td class="bibtexitem">
Priyanka Verma, John G Breslin, Donna O'Shea, and R K Pateriya.
A stacked ensemble method with adaptive attribute selection to detect
ddos attack in cloud-assisted wban.
In <em>The 4th International Conference on International Conference
on Machine Learning, Image Processing, Network Security and Data Sciences
(MIND 2022)</em>, December 2022.
[ <a href="publications_bib.html#mind2022">bib</a> |
<a href="http://dx.doi.org/10.1007/978-3-031-24367-7_32">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20221221_mind2022.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ism_2022">319</a>]
</td>
<td class="bibtexitem">
Abdul Wahid, Muhammad Yahya, John G Breslin, and Muhammad I Ali.
Self-attention transformer-based architecture for remaining useful
life estimation of complex machines.
In <em>The 4th International Conference on Industry 4.0 and Smart
Manufacturing (ISM 2022)</em>, November 2022.
[ <a href="publications_bib.html#ism_2022">bib</a> |
<a href="http://dx.doi.org/10.1016/j.procs.2022.12.241">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20221102_ism_2022.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="sens2022">318</a>]
</td>
<td class="bibtexitem">
Priyanka Verma, John G Breslin, and Donna O'Shea.
Fldid: Federated learning enabled deep intrusion detection in smart
manufacturing industries.
<em>Sensors</em>, November 2022.
[ <a href="publications_bib.html#sens2022">bib</a> |
<a href="http://dx.doi.org/10.3390/s22228974">DOI</a> |
<a href="https://www.mdpi.com/1424-8220/22/22/8974">http</a> |
<a href="http://www.johnbreslin.com/files/publications/20221119_sens2022.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="mobi2022">317</a>]
</td>
<td class="bibtexitem">
Bharath Sudharsan, Sonu Prasad, Dan Jose, and John G Breslin.
Tmm-tinyml: Tensor memory mapping (tmm) method for tiny machine
learning (tinyml).
In <em>The 28th Annual International Conference On Mobile Computing
And Networking (MobiCom 2022)</em>. ACM, October 2022.
[ <a href="publications_bib.html#mobi2022">bib</a> |
<a href="http://dx.doi.org/10.1145/3495243.3558265">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20221017_mobi2022.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="isol2022">316</a>]
</td>
<td class="bibtexitem">
Mirco Soderi and John G Breslin.
Crazy nodes: Towards ultimate flexibility in ubiquitous big data
stream engineering, visualisation, and analytics, in smart factories.
In <em>The 11th International Symposium on Leveraging Applications
of Formal Methods (ISOLA 2022)</em>. Springer, October 2022.
[ <a href="publications_bib.html#isol2022">bib</a> |
<a href="http://dx.doi.org/10.1007/978-3-031-19762-8_18">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20221022_isol2022.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="imvi2022">315</a>]
</td>
<td class="bibtexitem">
Rory Ward and John G Breslin.
Towards temporal stability in automatic video colourisation.
In <em>The 24th Irish Machine Vision and Image Processing Conference
(IMVIP 2022)</em>, August 2022.
Best Oral Presentation Award.
[ <a href="publications_bib.html#imvi2022">bib</a> |
<a href="http://www.johnbreslin.com/files/publications/20220831_imvi2022.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="bloc2022a">314</a>]
</td>
<td class="bibtexitem">
Saurabh Shukla, Subhasis Thakur, Shahid Hussain, John G Breslin, and
Muslim Jameel Syed.
Identification of false stealthy data injection attacks in smart
meters using machine learning and blockchain.
In <em>The 4th International Congress on Blockchain and Applications
(BLOCKCHAIN 2022)</em>, July 2022.
[ <a href="publications_bib.html#bloc2022a">bib</a> |
<a href="http://dx.doi.org/10.1007/978-3-031-21229-1_37">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20220713_bloc2022a.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="bloc2022b">313</a>]
</td>
<td class="bibtexitem">
Subhasis Thakur, John G Breslin, and Sweta Malik.
Privacy-preserving energy trade using double auction in blockchain
offline channels.
In <em>The 4th International Congress on Blockchain and Applications
(BLOCKCHAIN 2022)</em>, July 2022.
[ <a href="publications_bib.html#bloc2022b">bib</a> |
<a href="http://dx.doi.org/10.1007/978-3-031-21229-1_27">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20220713_bloc2022b.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="bloc2022c">312</a>]
</td>
<td class="bibtexitem">
Subhasis Thakur and John G Breslin.
Decentralised argumentation for data vetting in blockchains.
In <em>The 4th International Congress on Blockchain and Applications
(BLOCKCHAIN 2022)</em>, July 2022.
[ <a href="publications_bib.html#bloc2022c">bib</a> |
<a href="http://dx.doi.org/10.1007/978-3-031-21229-1_20">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20220713_bloc2022c.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="bloc2022d">311</a>]
</td>
<td class="bibtexitem">
Anupa De Silva, Subhasis Thakur, and John G Breslin.
Profitable fee controller for payment channel networks.
In <em>The 4th International Congress on Blockchain and Applications
(BLOCKCHAIN 2022)</em>, July 2022.
[ <a href="publications_bib.html#bloc2022d">bib</a> |
<a href="http://dx.doi.org/10.1007/978-3-031-21229-1_9">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20220713_bloc2022d.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="bloc2022e">310</a>]
</td>
<td class="bibtexitem">
Subhasis Thakur and John G Breslin.
A model of decentralised distribution line using layer 2 blockchains.
In <em>The 4th International Congress on Blockchain and Applications
(BLOCKCHAIN 2022)</em>, July 2022.
[ <a href="publications_bib.html#bloc2022e">bib</a> |
<a href="http://dx.doi.org/10.1007/978-3-031-21229-1_3">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20220713_bloc2022e.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="smar2022a">309</a>]
</td>
<td class="bibtexitem">
Mirco Soderi, Vignesh Kamath, and John G Breslin.
A demo of a software platform for ubiquitous big data engineering,
visualization, and analytics, via reconfigurable micro-services, in smart
factories.
In <em>The 8th IEEE International Conference on Smart Computing
(SMARTCOMP 2022)</em>, June 2022.
[ <a href="publications_bib.html#smar2022a">bib</a> |
<a href="http://dx.doi.org/10.1109/SMARTCOMP55677.2022.00041">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20220620_smar2022a.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="smar2022b">308</a>]
</td>
<td class="bibtexitem">
Mirco Soderi, Vignesh Kamath, and John G Breslin.
Toward an api-driven infinite cyber-screen for custom real-time
display of big data streams.
In <em>The 8th IEEE International Conference on Smart Computing
(SMARTCOMP 2022)</em>, June 2022.
[ <a href="publications_bib.html#smar2022b">bib</a> |
<a href="http://dx.doi.org/10.1109/SMARTCOMP55677.2022.00036">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20220620_smar2022b.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ekno2022a">307</a>]
</td>
<td class="bibtexitem">
Sweta Malik, Subhasis Thakur, John G Breslin, and Maeve Duffy.
Blockchain-based decentralized home energy management system using
double auction.
In <em>The 14th International Conference on Information, Process,
and Knowledge Management (eKNOW 2022)</em>, June 2022.
[ <a href="publications_bib.html#ekno2022a">bib</a> |
<a href="http://www.johnbreslin.com/files/publications/20220629_ekno2022a.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ekno2022b">306</a>]
</td>
<td class="bibtexitem">
Subhasis Thakur and John G Breslin.
A decentralised reputation management system for internet of things
data marketplace.
In <em>The 14th International Conference on Information, Process,
and Knowledge Management (eKNOW 2022)</em>, June 2022.
Best Paper Award.
[ <a href="publications_bib.html#ekno2022b">bib</a> |
<a href="http://www.johnbreslin.com/files/publications/20220629_ekno2022b.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ic__2022b">305</a>]
</td>
<td class="bibtexitem">
Bharath Sudharsan, John G Breslin, Mehreen Tahir, Muhammad I Ali, Omer Rana,
Schahram Dustdar, and Rajiv Ranjan.
Ota-tinyml: Over the air deployment of tinyml models and execution on
iot devices.
<em>Internet Computing</em>, pages 69--78, June 2022.
[ <a href="publications_bib.html#ic__2022b">bib</a> |
<a href="http://dx.doi.org/10.1109/MIC.2021.3133552">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20220630_ic__2022.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="eswc2022b">304</a>]
</td>
<td class="bibtexitem">
Muhammad Yahya, Baifan Zhou, Zhuoxun Zheng, Dongzhuoran Zhou, John G Breslin,
Muhammad I Ali, and Evgeny Kharlamov.
Towards generalized welding ontology in line with iso and knowledge
graph construction.
In <em>The 19th Extended Semantic Web Conference (ESWC 2022)</em>, May
2022.
[ <a href="publications_bib.html#eswc2022b">bib</a> |
<a href="http://dx.doi.org/10.1007/978-3-031-11609-4_16">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20220529_eswc2022b.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ipsn2022a">303</a>]
</td>
<td class="bibtexitem">
Bharath Sudharsan, Simone Salerno, Piyush Yadav, and John G Breslin.
Approach for remote, on-demand loading and execution of tensorflow
lite ml models on arduino iot boards.
In <em>The 21st ACM/IEEE International Conference on Information
Processing in Sensor Networks (IPSN 2022)</em>. ACM, May 2022.
[ <a href="publications_bib.html#ipsn2022a">bib</a> |
<a href="http://dx.doi.org/10.1109/IPSN54338.2022.00061">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20220504_ipsn2022a.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ipsn2022b">302</a>]
</td>
<td class="bibtexitem">
Dhruv Sheth, Bharath Sudharsan, John G Breslin, and Muhammad I Ali.
Embedded ml pipeline for precision agriculture.
In <em>The 21st ACM/IEEE International Conference on Information
Processing in Sensor Networks (IPSN 2022)</em>. ACM, May 2022.
[ <a href="publications_bib.html#ipsn2022b">bib</a> |
<a href="http://dx.doi.org/10.1109/IPSN54338.2022.00064">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20220504_ipsn2022b.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="eswc2022a">301</a>]
</td>
<td class="bibtexitem">
Muhammad Jaleed Khan, John G Breslin, and Edward Curry.
Expressive scene graph generation using commonsense knowledge
infusion for visual understanding and reasoning.
In <em>The 19th Extended Semantic Web Conference (ESWC 2022)</em>, May
2022.
[ <a href="publications_bib.html#eswc2022a">bib</a> |
<a href="http://dx.doi.org/10.1007/978-3-031-06981-9_6">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20220529_eswc2022a.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="enrc2022">300</a>]
</td>
<td class="bibtexitem">
Sweta Malik, Subhasis Thakur, Maeve Duffy, and John G Breslin.
Double auction mechanisms for peer-to-peer energy trading: A
comparative analysis.
In <em>The 7th IEEE International Energy Conference (ENERGYCON
2022)</em>, May 2022.
[ <a href="publications_bib.html#enrc2022">bib</a> |
<a href="http://dx.doi.org/10.1109/ENERGYCON53164.2022.9830460">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20220509_enrc2022.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ic__2022a">299</a>]
</td>
<td class="bibtexitem">
Muhammad Jaleed Khan, John G Breslin, and Edward Curry.
Common sense knowledge infusion for visual understanding and
reasoning: Approaches, challenges, and applications.
<em>Internet Computing</em>, pages 21--27, May 2022.
[ <a href="publications_bib.html#ic__2022a">bib</a> |
<a href="http://dx.doi.org/10.1109/MIC.2022.3176500">DOI</a> |
<a href="http://www.johnbreslin.com/files/publications/20220520_ic__2022.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="kisa2022">298</a>]
</td>
<td class="bibtexitem">
Shahid Hussain, Subhasis Thakur, Saurabh Shukla, John G Breslin, Qasim Jan,
Faisal Khan, and Yun-Su Kim.
A two-layer decentralized charging approach for residential electric
vehicles based on fuzzy data fusion.
<em>Journal of King Saud University - Computer and Information
Sciences</em>, May 2022.
[ <a href="publications_bib.html#kisa2022">bib</a> |
<a href="http://dx.doi.org/10.1016/j.jksuci.2022.04.019">DOI</a> |
<a href="https://www.sciencedirect.com/science/article/pii/S1319157822001471">http</a> |
<a href="http://www.johnbreslin.com/files/publications/20220511_kisa2022.pdf">.pdf</a> ]
</td>