-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyinghui-publication.html
More file actions
3441 lines (1247 loc) · 68.2 KB
/
yinghui-publication.html
File metadata and controls
3441 lines (1247 loc) · 68.2 KB
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 PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Language" content="en-us">
<title>Homepage of Yinghui Wu</title>
<style>
#circle
{
border-radius:50% 50% 50% 50%;
}
</style>
<style type="text/css">
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: small; }
table {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: small; }
a {
text-decoration: none;
}
a:link, a:visited {
color: blue;
}
a:hover {
color: red;
}
</style>
<style type="text/css"></style>
<link rel="stylesheet" type="text/css"
href="./files/widget014.top.svg.css" media="all">
<link rel="stylesheet" type="text/css" href="./files/layers077.css"
media="all">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
img {
border-radius: 50%;
}
</style>
</head>
<body>
<div id="_atssh" style="visibility: hidden; height: 1px; width: 1px;
position: absolute; top: -9999px; z-index: 100000;"><iframe
id="_atssh846" title="AddThis utility frame"
src="./files/sh200.html" style="border: 0px none ; height: 1px;
width: 1px; position: absolute; top: 0px; z-index: 100000; left:
0px;"></iframe></div>
<div style="width: 820px;">
<table style="width: 738px; height: 180px;" cellspacing="15">
<tbody>
<tr valign="top" align="left">
<td style="height: 169px; vertical-align: top;"> <img
style="width: 163px; height: 160px;" alt="yinghui wu"
src="0.jpg" id="circle"> </td>
<td style="white-space: nowrap; height: 169px;
vertical-align: top;"> <font size="5">Yinghui Wu</font><br>
<br>
Theodore L. and Dana J. Schroeder <br>
Associate Professor<br>
<a
href="https://engineering.case.edu/computer-and-data-sciences">Department
of Computer <br>
& Data Sciences</a><br>
<br>
<a href="https://engineering.case.edu/">Case School of
Engineering</a><br>
<a href="https://case.edu/">Case Western Reserve
University</a><br>
</td>
<td style="white-space: nowrap; height: 169px;
vertical-align: top;"><br>
<br>
Olin 515<br>
2101 Martin Luther King Jr Dr,<br>
Cleveland, OH 44106<br>
<br>
Office: 216.368.8829<br>
Email: yxw1650_at_case_dot_edu<br>
Homepage: <a href="https://yinghwu.github.io/">https://yinghwu.github.io/<br>
</a><br>
</td>
</tr>
</tbody>
</table>
<hr>
<p align="center"><big><a href="index.html">Home</a> | <a
href="yinghui-teaching.html">Teaching</a> | <a
href="yinghui-research.html">Research | </a><a
href="yinghui-service.html">Services</a> | <a
href="yinghui-students.html">Students</a> | <a
href="yinghui-publication.html">Publications</a> | <a
href="yinghui-talks.html">Talks</a> | <a
href="yinghui-bib.html">Bio</a> </big></p>
<hr><span style="font-weight: bold;">Full publication list</span>
[<a href="https://dblp.uni-trier.de/pid/32/6122-1.html"
moz-do-not-send="true">DBLP</a>] [<a
href="https://scholar.google.com/citations?user=9u7wNjUAAAAJ&hl=en">Google
Scholar</a>]<br>
<br>
<b>Selected</b>: View by [<a href="yinghui-publication-year.html">Year</a>] [<a
href="yinghui-publication.html">Type</a>] <br>
<br>
<span style="font-weight: bold;">Conference (selected)</span><br>
<ol>
<li>Training-free Counterfactual Explanation for Temporal Graph
Model Inference<br>
The Fourteenth International Conference on Learning
Representations (<i><b>ICLR</b></i>), 2026<br>
Mingjian Lu, Haolai Che, Yangxin Fan, Qu Liu, Fei Shao,
Tingjian Ge, Xusheng Xiao, Yinghui Wu</li>
<li>SliceGX: Layer-wise GNN Explanation with Model-slicing<br>
The ACM Web Conference (<i><b>WWW</b></i>), 2026<br>
Cibo Yu, Tingting Zhu, Tingyang Chen, Yinghui Wu, Arijit Khan
and Xiangyu Ke<br>
</li>
<li>Graph Query Generation with Constraint-guided Large Language
Agents<br>
<span style="font-style: italic;">Int.Conf.on Data Engineering</span>
(<span style="font-weight: bold; font-style: italic;">ICDE</span>),
<i>2026</i><br>
Mengying Wang, Nicolaas Jedema, Rahul Pandey, RaviKiran
Krishnan, Jens Lehmann, Yinghui Wu</li>
<li>nterpreting Graph Inference with Skyline Explanations<br>
<span style="font-style: italic;">Int.Conf.on Data Engineering</span>
(<span style="font-weight: bold; font-style: italic;">ICDE</span>)<i>,
2026<br>
</i>Dazhuo Qiu, Haolai Che, Arijit Khan, Yinghui Wu<i><br>
</i></li>
<li>Assessing LLMs for Serendipity Discovery in Knowledge
Graphs: A Case for Drug Repurposing<br>
The 40th Annual AAAI Conference (<i><b>AAAI</b></i>), 2026<br>
Mengying Wang, Chenhui Ma, Ao Jiao, Tuo Liang, Pengjun Lu,
Shrinidhi Hegde, Yu Yin, Evren Gurkan-Cavusoglu, Yinghui Wu</li>
<li>GNN Explainers 2.0: User-centric and Data-driven Insights [<a
href="https://gnn-explainers.github.io/">Website</a>]<br>
The 19th ACM International Conference on Web Search and Data
Mining (<i><b>WSDM</b></i>), 2026<br>
Arijit Khan, Xiangyu Ke, Yinghui Wu, Francesco Bonchi<br>
</li>
<li>KROMA: Ontology Matching with Knowledge Retrieval and Large
Language Models<br>
The 24th International Semantic Web Conference (<b>ISWC</b>),
2025<br>
Lam Nguyen, Erika Barcelos, Roger French and Yinghui Wu</li>
<li>GeoOutageKG: A Multimodal Geospatiotemporal Knowledge Graph
for Multiresolution Power Outage Analysis<br>
The 24th International Semantic Web Conference (<b>ISWC</b>),
2025<br>
Ethan Frakes, Yinghui Wu, Roger French and Mengjie Li<br>
</li>
<li>Position: Current Model Licensing Practices are Dragging Us
into a Quagmire of Legal Noncompliance (oral)<br>
The 42nd International Conference on Machine Learning (<b>ICML</b>),
2025<br>
Moming Duan, Mingzhe Du, Rui Zhao, Mengying Wang, Yinghui Wu,
Nigel Shadbolt, Bingsheng He<br>
</li>
<li>Inference-friendly Graph Compression for Graph Neural
Networks<br>
The 51st International Conference on Very Large Data Bases (<b>VLDB</b>),
2025<br>
Yangxin Fan, Haolai Che, Yinghui Wu<br>
</li>
<li>Graph Compression for Interpretable Graph Neural Network
Inference At Scale<br>
The 51st International Conference on Very Large Data Bases (<b>VLDB</b>),
2025<br>
Yangxin Fan, Haolai Che, Mingjian Lu, Yinghui Wu<br>
</li>
<li>ML-Asset Management: Curation, Discovery, and Utilization<br>
The 51st International Conference on Very Large Data Bases (<b>VLDB</b>),
2025<br>
Mengying Wang, Moming Duan, Yicong Huang, Chen Li, Bingsheng
He, Yinghui Wu<br>
</li>
<li><a href="https://arxiv.org/pdf/2502.11262">Generating
Skyline Datasets for Data Science Models</a> [<a
href="https://github.com/wang-mengying/modis">code</a>]<br>
<span style="font-style: italic;">The 28th International
Conference on Extending Database Technology</span> (<span
style="font-weight: bold; font-style: italic;">EDBT</span>)<i>,
2025</i><br>
Mengying Wang, Hanchao Ma, Yiyang Bian, Yangxin Fan and
Yinghui Wu </li>
<li>Integrating Multimodal Geospatiotemporal Data for Societal,
Economic, and Environmental (SEE) Analysis of Large
Agricultural Systems, IEEE International Conference on Big
Data (<b>BigData</b>), 2024<br>
Olatunde D Akanbi, Jiaqi Li, Vibha Mandayam, Arafath Nihar,
Yinghui Wu, Laura S Bruckman, Jeffrey M Yarus, Erika I
Barcelos, Roger French (<font color="#ff0000">Best Poster
Paper Award</font>)</li>
<li>Forecasting Nutrient Flows using Terrain Elevation-aware
Spatial-Temporal Graph Neural Networks<br>
IEEE International Conference on Big Data (<b>BigData</b>),
2024<br>
Jiaqi Li, Yinghui Wu, Alexandar Bradley, Olatunde Akanbi,
Erika I Barcelos, Laura S Bruckman, Roger H French<br>
</li>
<li>Parallel-friendly Spatio-Temporal Graph Learning for
Photovoltaic Degradation Analysis at Scale<br>
The 33rd ACM International Conference on Information and
Knowledge Management (<i><b>CIKM</b></i>), 2024<br>
Yangxin Fan, Raymond Wieser, Laura Bruckman, Roger French and
Yinghui Wu</li>
<li> <a href="https://dl.acm.org/doi/10.14778/3685800.3685899">ModsNet:
Performance-aware Top-k Model Search using Exemplar Datasets</a>
[<a
href="https://wangmengying.me/assets/posters/modsnet_demo.pdf">poster</a>]
[<a
href="https://wangmengying.me/assets/videos/modsnet_demo.mp4">video</a>]<br>
<span style="font-style: italic;">The 50th International
Conference on Very Large Data Bases</span> (<span
style="font-weight: bold; font-style: italic;">VLDB</span>)<i>,
demo track, 2024</i><br>
Mengying Wang, Hanchao Ma, Sheng Guan, Yiyang Bian, Haolai
Che, Abhishek Daundkar, Alp Sehirlioglu, Yinghui Wu </li>
<li>User-friendly, Interactive, and Configurable Explanations
for Graph Neural Networks with Graph Views<br>
<span style="font-style: italic;">ACM SIGMOD Conference on
Management of Data</span> (<span style="font-weight: bold;
font-style: italic;">SIGMOD</span>), <i>demo track, 2024</i><br>
Tingyang Ghen, Dazhuo Qiu, Yinghui Wu, Arijit Khan, Xiangyu
Ke, Yunjun Gao</li>
<li>View-based Explanations for Graph Neural Networks<br>
<span style="font-style: italic;">ACM SIGMOD Conference on
Management of Data</span> (<span style="font-weight: bold;
font-style: italic;">SIGMOD</span>), 2024<br>
Tingyang Ghen, Dazhuo Qiu, Yinghui Wu, Arijit Khan, Xiangyu
Ke, Yunjun Gao</li>
<li> <a href="https://ieeexplore.ieee.org/document/10597909">Generating
Robust Counterfactual Witnesses for Graph Neural Networks</a>
[<a href="https://wangmengying.me/assets/posters/robogexp.pdf">poster</a>]
[<a href="https://wangmengying.me/assets/slides/robogexp.pdf">slides</a>]
[<a href="https://github.com/DazhuoQ/RoboGExp">code</a>]<br>
<span style="font-style: italic;">Int.Conf.on Data Engineering</span>
(<span style="font-weight: bold; font-style: italic;">ICDE</span>),
<i>2024</i><br>
Dazhuo Qiu, Mengying Wang, Arijit Khan, Yinghui Wu </li>
<li> <a href="https://ieeexplore.ieee.org/document/10597884">GraphLingo:
Domain Knowledge Exploration by Synchronizing Knowledge
Graphs and Large Language Models</a><br>
[<a
href="https://wangmengying.me/assets/posters/graphlingo.pdf">poster</a>]
[<a
href="https://wangmengying.me/assets/videos/graphlingo.mp4">video</a>]
[<a href="https://github.com/Escanord/GraphLingo">code</a>]<br>
<span style="font-style: italic;">Int.Conf.on Data Engineering</span>
(<span style="font-weight: bold; font-style: italic;">ICDE</span>),
<i>demo track, 2024</i><br>
Duy Le, Kris Zhao, Mengying Wang, Yinghui Wu </li>
<li>View-based Explanations for Graph Neural Networks (extended
abstract)<br>
Tingyang Ghen, Dazhuo Qiu, Yinghui Wu, Arijit Khan, Xiangyu
Ke, Yunjun Gao<br>
<span style="font-style: italic;">The 3rd Workshop on Search,
Exploration, and Analysis in Heterogeneous Datastores: Graph
Edition</span> (SEA Graph) (<i>invited</i>), Co-located w.
ICDE 2024</li>
<li>Accelerating Time to Science using CRADLE: A Framework for
Materials Data Science<br>
The 30th IEEE Int. Conf. on High Performance Computing, Data,
and Analytics (<i><b>HiPC</b></i>), 2023 <span style="color:
rgb(253, 8, 45);">(</span><span style="color: rgb(253, 8,
45); font-style: italic; font-weight: bold;">Best Paper
Nominee</span>)<br>
Arafath Nihar, Thomas Ciardi, Rounak Chawla, Olatunde Akanbi,
Yinghui Wu, Vipin Chaudhary, Roger French</li>
<li> <a href="https://dl.acm.org/doi/10.1145/3583780.3615051">Selecting
Top-K Data Science Models by Example Dataset</a> [<a
href="https://wangmengying.me/assets/videos/modsnet.mp4">video</a>]
[<a href="https://wangmengying.me/assets/slides/modsnet.pdf">slides</a>]
[<a
href="https://github.com/crux-project/crux-recommendModels">code</a>]<br>
<span style="font-style: italic;">The 32nd ACM International
Conference on Information and Knowledge Management</span> (<span
style="font-weight: bold; font-style: italic;">CIKM</span>)),
<i>2023</i><br>
Mengying Wang, Sheng Guan, Hanchao Ma, Yiyang Bian, Haolai
Che, Abhishek Daundkar, Alp Sehirlioglu, Yinghui Wu </li>
<li>Demonstration of Geyser: Provenance Extraction and
Applications over Data Science Scripts<br>
<span style="font-style: italic;">ACM SIGMOD Conference on
Management of Data</span> (<span style="font-weight: bold;
font-style: italic;">SIGMOD</span>), 2023<br>
Fotis Psallidas, Megan Eileen Leszczynski, Mohammad Hossein
Namaki, Avrilia Floratou, Ashvin Agrawal, Konstantinos
Karanasos, Subru Krishnan, Pavle Subotic, Markus Weimer,
Yinghui Wu, Yiwen Zhu<br>
</li>
<li>Fair Group Summarization with Graph Patterns<br>
Int.Conf.on Data Engineering (<span style="font-weight: bold;
font-style: italic;">ICDE</span>), 2023<br>
<span style="color: rgb(34, 34, 34); font-family: "Google
Sans", Roboto, RobotoDraft, Helvetica, Arial,
sans-serif; font-size: 14px; font-style: normal;
font-variant-ligatures: normal; font-variant-caps: normal;
font-weight: 400; letter-spacing: normal; orphans: 2;
text-align: start; text-indent: 0px; text-transform: none;
white-space: normal; widows: 2; word-spacing: 0px;
-webkit-text-stroke-width: 0px; background-color: rgb(255,
255, 255); text-decoration-thickness: initial;
text-decoration-style: initial; text-decoration-color:
initial; display: inline !important; float: none;">Hanchao
Ma, Sheng Guan, Mengying Wang, Qi Song, Yinghui Wu</span></li>
<li>Spatio-Temporal Denoising Graph Autoencoders with Data
Augmentation for Photovoltaic Timeseries Data Imputation<br>
<span style="font-style: italic;">ACM SIGMOD Conference on
Management of Data</span> (<span style="font-weight: bold;
font-style: italic;">SIGMOD</span>), 2023<br>
Yangxin Fan, Xuanji Yu, Raymond Wieser, David Meakin, Avishai
Shaton, Jean-Nicolas Jaubert, Robert Flottemesch, Michael
Howell, Jennifer Braid, Laura Bruckman, Roger French, Yinghui
Wu<br>
</li>
<li>GALE: Active Adversarial Learning for Erroneous Node
Detection in Graphs<br>
Int.Conf.on Data Engineering (<span style="font-weight: bold;
font-style: italic;">ICDE</span>), 2023<br>
<span style="color: rgb(34, 34, 34); font-family: "Google
Sans", Roboto, RobotoDraft, Helvetica, Arial,
sans-serif; font-size: 14px; font-style: normal;
font-variant-ligatures: normal; font-variant-caps: normal;
font-weight: 400; letter-spacing: normal; orphans: 2;
text-align: start; text-indent: 0px; text-transform: none;
white-space: normal; widows: 2; word-spacing: 0px;
-webkit-text-stroke-width: 0px; background-color: rgb(255,
255, 255); text-decoration-thickness: initial;
text-decoration-style: initial; text-decoration-color:
initial; display: inline !important; float: none;">Sheng
Guan, Hanchao Ma, Mengying Wang, Yinghui Wu<br>
</span></li>
<li>Inconsistency Detection with Temporal Graph Functional
Dependencies<br>
Int.Conf.on Data Engineering (<span style="font-weight: bold;
font-style: italic;">ICDE</span>), 2023<br>
<meta charset="utf-8">
<span style="color: rgb(34, 34, 34); font-family: "Google
Sans", Roboto, RobotoDraft, Helvetica, Arial,
sans-serif; font-size: 14px; font-style: normal;
font-variant-ligatures: normal; font-variant-caps: normal;
font-weight: 400; letter-spacing: normal; orphans: 2;
text-align: start; text-indent: 0px; text-transform: none;
white-space: normal; widows: 2; word-spacing: 0px;
-webkit-text-stroke-width: 0px; background-color: rgb(255,
255, 255); text-decoration-thickness: initial;
text-decoration-style: initial; text-decoration-color:
initial; display: inline !important; float: none;">Morteza
Alipour Langouri</span>, Adam Mansfield, Fei Chiang, Yinghui
Wu<span style="color: rgb(34, 34, 34); font-family:
"Google Sans", Roboto, RobotoDraft, Helvetica,
Arial, sans-serif; font-size: 14px; font-style: normal;
font-variant-ligatures: normal; font-variant-caps: normal;
font-weight: 400; letter-spacing: normal; orphans: 2;
text-align: start; text-indent: 0px; text-transform: none;
white-space: normal; widows: 2; word-spacing: 0px;
-webkit-text-stroke-width: 0px; background-color: rgb(255,
255, 255); text-decoration-thickness: initial;
text-decoration-style: initial; text-decoration-color:
initial; display: inline !important; float: none;"><span></span></span></li>
<li> <a href="https://dl.acm.org/doi/10.1145/3511808.3557194">CRUX:
Crowdsourced Materials Science Resource and Workflow
Exploration</a> [<a
href="https://wangmengying.me/assets/posters/crux.pdf">poster</a>]
[<a href="https://github.com/crux-project/CRUX">code</a>] <br>
<span style="font-style: italic;">The 31st ACM International
Conference on Information and Knowledge Management</span> (<span
style="font-weight: bold; font-style: italic;">CIKM</span>)),
<i>2022</i><br>
Mengying Wang, Hanchao Ma, Abhishek Daundkar, Sheng Guan,
Yiyang Bian, Alp Sehirlioglu, Yinghui Wu<br>
</li>
<li>System-Auditing, Data Analysis and Characteristics of Cyber
Attacks for Big Data Systems<br>
The 31st ACM International Conference on Information and
Knowledge Management (<b>CIKM</b>), 2022<br>
Liangyi Huang, Sophia R.Hall, Fei Shao, Arafath Nihar, Vipin
Chaudhary, Yinghui Wu, Roger French, Xusheng Xiao<br>
</li>
<li>RoboGNN: Robustifying Node Classification under Link
Perturbation<br>
<i>The 31st International Joint Conference on Artificial
Intelligence</i><i> </i>(<b>IJCAI</b>), 2022<br>
Sheng Guan, Hanchao Ma, Yinghui Wu</li>
<li>Subgraph Query Generation with Fairness and Diversity
Constraints<br>
Int. Conf. on Data Engineering (<b>ICDE</b>), 2022<br>
Hanchao Ma, Sheng Guan, Mengying Wang, Yen-shuo Chang, Yinghui
Wu<br>
</li>
<li>Diversified Subgraph Query Generation with Group Fairness<br>
<i>The 15th International Conference on Web Search and Data
Mining</i> (<b>WSDM</b>), 2022<br>
Hanchao Ma, Sheng Guan, Christopher Toomey, Yinghui Wu <br>
<meta charset="utf-8">
</li>
<li>FAIRification, Quality Assessment, and Missingness Pattern
Discovery for Spatiotemporal Photovoltaic Data <br>
The 49th IEEE Photovoltaic Specialists Conference (<b>PVSC</b>),
2022<br>
William Oltjen, Yangxin Fan, Jiqi Liu, Liangyi Huang, Mingjie
Li, Hubert Seigneur, Xusheng Xiao, Kristopher Davis, Laura
Bruckman, Yinghui Wu, Roger French. <br>
</li>
<li>Learning Distributed Geometric Koopman Operator for Sparse
Networked Dyna</li>
<li>mical Systems, Learning on Graphs Conference (LoG). 2022<br>
Sayak Mukherjee, Sai Pushpack Nadanoori, Sheng Guan, Khushubu
Agarwal, Subhrajit Sinha, Soumya Kundu, Seemita Pal, Yinghui
Wu, Draguna L Vrabie, Sutanay Choudhury</li>
<li>GEDet: Detecting Erroneous Nodes with A Few Examples<br>
<span style="font-style: italic;">The 47rd International
Conference on Very Large Data Bases</span> (<span
style="font-weight: bold; font-style: italic;">VLDB</span>)
2021<br>
Sheng Guan, Hanchao Ma, Sutanay Choudhury, Yinghui Wu<br>
</li>
<li><a href="https://dl.acm.org/doi/abs/10.1145/3448016.3452758">GRIP:
Constraint-based Explanation of Missing Entities in Graph
Search</a><br>
<span style="font-style: italic;">ACM SIGMOD Conference on
Management of Data</span> (<span style="font-weight: bold;
font-style: italic;">SIGMOD</span>), 2021 [<a
style="font-style: italic;"
href="https://www.youtube.com/watch?v=OwGGCHWKLkk&list=PL3xUNnH4TdbsfndCMn02BqAAgGB0z7cwq&ab_channel=SIGMOD2021">Video]</a><br>
Qi Song, Peng Lin, Hanchao Ma, Yinghui Wu</li>
<li>Explaining Missing Data in Graphs: A Constraint-based
Approach<br>
Int.Conf.on Data Engineering (<span style="font-weight: bold;
font-style: italic;">ICDE</span>), 2021<br>
Qi Song, Peng Lin, Hanchao Ma, Yinghui Wu<br>
</li>
<li><a
href="https://ojs.aaai.org/index.php/AAAI/article/view/17799">Spatialtemporal
Graph Neural Network for Performance Prediction of
Photovoltaic Power Systems</a><br>
<span style="font-style: italic;">The 33rd Annual Conference
on Innovative Applications of Artificial Intelligence</span>
(<span style="font-weight: bold; font-style: italic;">AAAI-IAAI</span>),
2021<br>
Ahmad Maroof Karimi, Yinghui Wu, Mehmet Koyuturk, Roger French</li>
<li><a href="https://ieeexplore.ieee.org/document/9377897">GEDet:
Adversarially Learned Few-shot Detection of Erroneous Nodes
in Graphs</a><br>
<span style="font-style: italic;">IEEE International
Conference on Big Data</span> (<span style="font-weight:
bold; font-style: italic;">IEEE BigData</span>), 2020 <span
style="color: rgb(253, 8, 45);">(</span><span style="color:
rgb(253, 8, 45); font-style: italic; font-weight: bold;">Best
Paper Award</span><span style="color: rgb(253, 8, 45);">)</span><br>
Sheng Guan, Peng Lin, Hanchao Ma, Yinghui Wu<br>
</li>
<li><a
href="https://www.kdd.org/kdd2020/accepted-papers/view/vamsa-automated-provenance-tracking-in-data-science-scripts">Vamsa:Automated
Provenance Tracking in Data Science Scripts</a><br>
The 26th Int. Conf. on Knowledge Discovery and Data Mining<span
style="font-style: italic;">(</span><span
style="font-weight: bold; font-style: italic;">KDD</span><span
style="font-style: italic;">),</span>2020<br>
Mohammad Hossein Namaki, Avrilia Floratou, Fotis Psallidas,
Subru Krishnan, Ashvin Agrawal, Yinghui Wu</li>
<li><a href="https://ieeexplore.ieee.org/document/9101867">Kronos:
Lightweight Knowledge-based Event Analysis in Cyber-Physical
Data Streams</a><br>
Int.Conf.on Data Engineering (<span style="font-weight: bold;
font-style: italic;">ICDE</span>), 2020. Mohammad Hossein
Namaki, Xin Zhang, Sukhjinder Singh, Arman Ahmed, Armina
Foroutan, Yinghui Wu, Anurag Srivastava, Anton Kocheturov.</li>
<li><a href="https://ieeexplore.ieee.org/document/9101352">Repairing
Entities using Star Constraints in Multirelational Graphs. </a><br>
<span style="color: rgb(0, 0, 0); font-family:
Verdana,Geneva,Tahoma,sans-serif; font-size: small;
font-style: normal; font-variant: normal; font-weight:
normal; letter-spacing: normal; line-height: normal;
text-align: left; text-indent: 0px; text-transform: none;
white-space: normal; widows: 1; word-spacing: 0px; display:
inline ! important; float: none; background-color: rgb(255,
255, 255);">Int.Conf.on Data Engineering (<span
style="font-weight: bold; font-style: italic;">ICDE</span>),
2020.</span> <br>
<span style="color: rgb(0, 0, 0); font-family:
Verdana,Geneva,Tahoma,sans-serif; font-size: small;
font-style: normal; font-variant: normal; font-weight:
normal; letter-spacing: normal; line-height: normal;
text-align: left; text-indent: 0px; text-transform: none;
white-space: normal; widows: 1; word-spacing: 0px; display:
inline ! important; float: none; background-color: rgb(255,
255, 255);">Peng Lin, Qi Song, Yinghui Wu, Jiiaxing Pi.</span><br>
</li>
<li><a href="http://www.vldb.org/pvldb/vol12/p1195-ma.pdf">Ontology-based
Entity
Matching in Attributed Graphs.</a><br>
<span style="font-style: italic;">The 45rd International
Conference on Very Large Data Bases</span> (<span
style="font-weight: bold; font-style: italic;">VLDB</span>),
2019<br>
Hanchao Ma, Morteza Alipour Langouri, Yinghui Wu, Fei Chiang,
Jiaxing Pi</li>
<li><a
href="https://www.kdd.org/kdd2019/accepted-papers/view/attribute-driven-backbone-discovery">Attribute-Driven
Backbone
Discovery. </a><br>
The 25th Int. Conf. on Knowledge Discovery and Data Mining<span
style="font-style: italic;">(</span><span
style="font-weight: bold; font-style: italic;">KDD</span><span
style="font-style: italic;">),</span>2019<br>
Sheng Guan, Hanchao Ma, Yinghui Wu, Jiaxing Pi<br>
</li>
<li><a href="https://dl.acm.org/doi/10.1145/3299869.3320245">NAVIGATE:
Explainable
Visual Graph Exploration by Examples. </a><br>
ACM SIGMOD Conference on Management of Data <span
style="font-style: italic;">(</span><span
style="font-weight: bold; font-style: italic;">SIGMOD</span><span
style="font-style: italic;">),</span> demo, 2019<br>
Mohammad Hossein Namaki, Qi Song, Yinghui Wu<br>
</li>
<li><a href="https://dl.acm.org/doi/10.1145/3299869.3319890">Answering
Why-questions
by Exemplars in Attributed Graphs. </a><br>
<span style="font-style: italic;">ACM SIGMOD Conference on
Management of Data</span> (<span style="font-weight: bold;
font-style: italic;">SIGMOD</span>), 2019<br>
Mohammad Hossein Namaki, Qi Song, Yinghui Wu, Shengqi Yang<br>
</li>
<li><a href="https://ieeexplore.ieee.org/document/8731562">Answering
Why-Questions
for Subgraph Queries in Multi-Attributed Graphs.</a> <br>
<span style="color: rgb(0, 0, 0); font-family:
Verdana,Geneva,Tahoma,sans-serif; font-size: small;
font-style: normal; font-variant: normal; font-weight:
normal; letter-spacing: normal; line-height: normal;
text-align: left; text-indent: 0px; text-transform: none;
white-space: normal; widows: 1; word-spacing: 0px; display: