-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1954 lines (1945 loc) · 130 KB
/
index.html
File metadata and controls
1954 lines (1945 loc) · 130 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//EN">
<html>
<head>
<base target="_self">
<title>Quan Deng's Homepage</title>
<meta name="author" content="Quan Deng">
<meta name="description" content="Personal Homepage">
<meta name="classification" content="Personal Homepage">
<meta name="generator" content="Namo WebEditor v5.0">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<p>
<hr>
<table border bgcolor="white" bordercolor="white" bordercolordark="white" bordercolorlight="white" width="1061" height="226">
<tr>
<td width="145" bordercolor="white" style="margin-right:10mm;" rowspan="4" valign="middle" height="220">
<p><font face="Times New Roman" size="6"><b><img src="zhouzh.files/Zhi-Hua.jpg"
width="120" height="179" border="0"></b></font></p>
</td>
<td width="742" colspan="3" bordercolor="white" align="left" height="17"><font size="1"> </font></td>
<td width="152" height="138" rowspan="3" bordercolor="white" align="center"
style="line-height:100%; margin-top:0; margin-bottom:0;" valign="bottom">
<p style="margin-top:0; margin-bottom:0;"><a href="http://www.nju.edu.cn" target="_blank"><img src="zhouzh.files/nju_name.jpg" width="91"
height="32" border="0"></a></p>
<a href="http://www.nju.edu.cn" target="_blank"><img src="zhouzh.files/nju_badge.jpg" width="92"
height="109" border="0"></a></p>
</td>
</tr>
<tr>
<td width="259" height="47" bordercolor="white" align="left"><font
face="黑体" size="7"><b><img src="zhouzh.files/Zhi-Hua_name.jpg"
width="139" height="50" border="0"></b></font></td>
<td width="136" height="47" bordercolor="white"><a href="zhouzh.files/resume_cn.htm" target="_blank"><font
face="Times New Roman" size="3"><img src="zhouzh.files/resume_cn.jpg"
width="82" height="28" border="0"></font></a></td>
<td width="335" height="47" bordercolor="white"><a href="zhouzh.files/resume_en.htm" target="_blank"><font face="Times New Roman"
size="4">Brief CV</font></a></td>
</tr>
<tr>
<td width="259" bordercolor="white" align="left" height="59">
<p style="margin-top:1mm; margin-bottom:0mm;"><font face="Times New Roman" size="6"><b>Zhi-Hua Zhou</b></font></p>
</td>
<td width="477" colspan="2" bordercolor="white" align="left" height="59">
<p style="margin-top:1mm; margin-bottom:0mm;"><font
face="Georgia" size="2"> can
be pronounced simply as [Jihua Joe]</font></p>
</td>
</tr>
<tr>
<td width="900" colspan="4" bordercolor="white" align="left" height="21">
<p style="margin-top:1mm; margin-bottom:1mm;"><font face="Times New Roman" size="4"><b>Professor, </b></font><font face="Times New Roman" size="3">Computer Science and Artificial Intelligence, </font><a href="http://www.nju.edu.cn" target="_blank"><font
face="Times New Roman" size="3">Nanjing University</font></a><font face="Times New Roman" size="3">, China</font></p>
<p style="margin-top:2mm; margin-bottom:1mm;"><font size="2" face="Times New Roman">Fellow
of the ACM, AAAI, AAAS, IEEE, IAPR, IET/IEE, CCF, CAAI</font></p>
</td>
</tr>
</table>
<p>
<hr>
<table border bgcolor="white" bordercolor="white" width="1262" bordercolordark="white" bordercolorlight="white">
<tr>
<td width="469" bordercolor="white" colspan="2" valign="top">
<p style="line-height:100%; margin-bottom:0;"><font face="Times New Roman" size="4"><b>Correspondence</b></font> </td>
<td width="58" bordercolor="white" align="left"> </td>
<td width="713" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;" align="center"><a href="zhouzh.files/EMS.htm" target="_blank"><img src="zhouzh.files/EMS.JPG" width="125" height="32" border="0"></a></p>
</td>
</tr>
<tr bordercolor="white" bordercolordark="white" bordercolorlight="white">
<td width="42" bordercolor="white" align="left" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"
size="2"><b>Mail:</b></font></p>
</td>
<td width="421" bordercolor="white" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">Zhi-Hua
Zhou</font></p>
</td>
<td width="58" bordercolor="white" align="left" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"
size="2"><b>Office:</b></font></p>
</td>
<td width="713" bordercolor="white" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">Rm 920,
Computer Science Building, Nanjing University Xianlin Campus </font></p>
</td>
</tr>
<tr bordercolor="white" bordercolordark="white" bordercolorlight="white">
<td width="42" bordercolor="white" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"> </p>
</td>
<td width="421" bordercolor="white" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">National
Key Laboratory for Novel Software Technology</font></p>
</td>
<td width="58" bordercolor="white" align="left" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"
size="2"><b>Tel:</b></font></p>
</td>
<td width="713" bordercolor="white" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">+86-25-8968-6268</font></p>
</td>
</tr>
<tr bordercolor="white" bordercolordark="white" bordercolorlight="white">
<td width="42" bordercolor="white" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"> </p>
</td>
<td width="421" bordercolor="white" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">Nanjing
University, Xianlin Campus Mailbox 603</font></p>
</td>
<td width="58" bordercolor="white" align="left" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"
size="2"><b>Fax:</b></font></p>
</td>
<td width="713" bordercolor="white" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">+86-25-8968-6268</font></p>
</td>
</tr>
<tr bordercolor="white" bordercolordark="white" bordercolorlight="white">
<td width="42" bordercolor="white" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"> </p>
</td>
<td width="421" bordercolor="white" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">163
Xianlin Avenue, Qixia District</font></p>
</td>
<td width="58" bordercolor="white" align="left" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"
size="2"><b>URL:</b></font></p>
</td>
<td width="713" bordercolor="white" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><a href="http://cs.nju.edu.cn/zhouzh/"><font
face="Times New Roman" size="2">http://cs.nju.edu.cn/zhouzh/</font></a></p>
</td>
</tr>
<tr bordercolor="white" bordercolordark="white" bordercolorlight="white">
<td width="42" bordercolor="white" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"> </p>
</td>
<td width="421" valign="top" bordercolor="white" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">Nanjing 210023, China</font></p>
</td>
<td width="58" valign="top" bordercolor="white" align="left" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"
size="2"><b>Email:</b></font></p>
</td>
<td width="713" bordercolor="white" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2"><u>zhouzh
at nju dot edu dot cn</u>
or <u>zhouzh
at lamda dot nju dot edu dot cn</u> or </font><u><font size="2" face="Times New Roman" color="black">zhouzh.gm
at gmail.com</font></u></p>
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><i><font size="2" face="Times New Roman" color="red"> (if
email to my university account lost, please cc to my Gmail which
can be occasionally checked)</font></i></p>
</td>
</tr>
</table>
<hr>
<font face="Times New Roman" size="3">[</font><a href="#Interest" target="_self"><font
face="Times New Roman" size="3">Interest</font></a><font face="Times New Roman" size="3">] [</font><a href="index.htm#Career"><font face="Times New Roman" size="3">Career</font></a><font face="Times New Roman" size="3">] {</font><a href="zhouzh.files/education.htm"
target="_self"><font face="Times New Roman" size="3">Education</font></a><font face="Times New Roman" size="3">} [</font><a href="#Award"><font face="Times New Roman"
size="3">Award</font></a><font face="Times New Roman" size="3">] [</font><a href="index.htm#Activity"
target="_self"><font face="Times New Roman" size="3">Activity</font></a><font face="Times New Roman" size="3">] {</font><a href="zhouzh.files/publication/publication.htm"
target="_self"><font face="Times New Roman" size="3">Publication</font></a><font face="Times New Roman" size="3">} [</font><a href="index.htm#Course" target="_self"><font
face="Times New Roman" size="3">Course</font></a><font face="Times New Roman" size="3">] {</font><a href="zhouzh.files/student-postdoc.htm" target="_self"><font
face="Times New Roman" size="3">Student and Postdoc</font></a><font face="Times New Roman" size="3">} {</font><a href="http://lamda.nju.edu.cn" target="_blank"><font face="Times New Roman"
size="3">LAMDA Group</font></a><font face="Times New Roman" size="3">}
</font><hr>
<p><a name="Interest"><font face="Times New Roman" size="4"><b>Research Interest</b></font></a></p>
<p style="margin-right:1cm; margin-left:0mm;"><font face="Times New Roman" size="3">I have wide
research interests, mainly including <i>artificial
intelligence, machine learning</i>,
<i>data mining, pattern recognition,
evolutionary computation </i>and <i>multimedia retrieval</i>, among which <b>machine learning</b> and <b>data mining</b> are my core research areas. I am particularly
interested in the problem of how to enable computing machines to handle "ambiguity".</font></p>
<table width="1089" bordercolor="white" bordercolordark="white" bordercolorlight="white" cellpadding="0" cellspacing="0" height="450" bgcolor="white">
<tr valign="baseline" height="230">
<td width="640" height="662" rowspan="4">
<p style="margin-top:0; margin-right:1cm; margin-bottom:2mm;"><font face="Times New Roman" size="3">Currently I am interested in the following ML/DM topics:</font> </p>
<ul type="disc">
<li style="line-height:100%; margin-top:0mm; margin-right:1cm; margin-bottom:0;"><a href="zhouzh.files/publication/publication_toc.htm#Multi-Label Learning"
target="_blank"><font face="Times New Roman" size="3">Multi-label learning</font></a> <li style="margin-right:1cm;"><a href="zhouzh.files/publication/publication_toc.htm#Multi-Instance Learning"
target="_blank"><font face="Times New Roman" size="3">Multi-instance learning</font></a> <li style="margin-right:1cm;"><a href="zhouzh.files/publication/publication_toc.htm#Multi-View Learning"
target="_blank"><font face="Times New Roman" size="3">Mult-view learning</font></a>
<li style="margin-right:1cm;"><a href="zhouzh.files/publication/publication_toc.htm#Semi-Supervised and Active Learning"
target="_blank"><font face="Times New Roman" size="3">Semi-supervised and active learning</font></a></li>
<li style="margin-right:1cm;"><a href="zhouzh.files/publication/publication_toc.htm#Cost-Sensitive and Class-Imbalance Learning"
target="_blank"><font face="Times New Roman" size="3">Cost-sensitive and class-imbalance learning</font></a> <li style="margin-right:1cm;"><a href="zhouzh.files/publication/publication_toc.htm#Metric Learning, Dimensionality Reduction and Feature Selection"
target="_blank"><font face="Times New Roman" size="3">Metric learning, dimensionality reduction and feature selection</font></a> <li style="margin-right:1cm;"><a href="zhouzh.files/publication/publication_toc.htm#Ensemble Learning"
target="_blank"><font face="Times New Roman" size="3">Ensemble learning</font></a> <li style="margin-right:1cm; margin-bottom:0;"><a href="zhouzh.files/publication/publication_toc.htm#Structure Learning and Clustering"
target="_blank"><font face="Times New Roman" size="3">Structure learning and clustering</font></a> <li style="margin-right:1cm;"><a href="zhouzh.files/publication/publication_toc.htm#Crowdsourcing Learning"
target="_blank"><font face="Times New Roman" size="3">Crowdsourcing learning</font></a> <li style="margin-right:1cm;"><a href="zhouzh.files/publication/publication_toc.htm#Logic Learning"
target="_blank"><font face="Times New Roman" size="3">Logic learning</font></a>
</ul>
<p style="margin-top:0; margin-right:1cm; margin-bottom:2mm;" align="left"><font face="Times New Roman" size="3">For applications, I am mainly interested in the following areas:</font></p>
<ul>
<li style="margin-right:1cm;"><a href="zhouzh.files/publication/publication_toc.htm#Image Retrieval"
target="_blank"><font face="Times New Roman" size="3">Image retrieval</font></a></li>
<li style="margin-right:1cm;"><a href="zhouzh.files/publication/publication_toc.htm#Web Search and Mining"
target="_blank"><font face="Times New Roman" size="3">Web search and mining</font></a></li>
<li style="margin-right:1cm;"><a href="zhouzh.files/publication/publication_toc.htm#Face Recognition"
target="_blank"><font face="Times New Roman" size="3">Face recognition</font></a></li>
<li style="margin-right:1cm;"><a href="zhouzh.files/publication/publication_toc.htm#Computer-Aided Medical Diagnosis"
target="_blank"><font face="Times New Roman" size="3">Computer-aided medical diagnosis</font></a></li>
<li style="margin-right:1cm;"><a href="zhouzh.files/publication/publication_toc.htm#Bioinformatics"
target="_blank"><font face="Times New Roman" size="3">Bioinformatics</font></a></li>
<li style="margin-right:1cm;"><font face="Times New Roman" size="3"><a href="zhouzh.files/publication/publication_toc.htm#SoftwareMining"
target="_blank">Software Mining</a></font></li>
</ul>
<p style="margin-top:0; margin-bottom:2mm;"><font face="Times New Roman" size="3">I am also interested in:</font></p>
<ul type="disc">
<li><a href="zhouzh.files/publication/publication_toc.htm#Theoretical Aspects of Evolutionary Computation"
target="_blank"><font face="Times New Roman" size="3">Theoretical aspects of evolutionary computation</font></a><li><a href="zhouzh.files/publication/publication_toc.htm#Improving Comprehensibility"
target="_blank"><font face="Times New Roman" size="3">Improving comprehensibility</font></a><a
target="_blank"><font face="Times New Roman" size="3"> (of complicated learning systems)</font></a>
</ul>
<p style="margin-top:5mm; margin-right:5mm; margin-left:5mm;"><font
face="Times New Roman" size="3"><i>Research is for fun. If I am interested in some other things, the above list will
grow; if something in the list does not attract me any more, the above list
will shrink. In short, these are just my </i><b><i>current</i></b><i>
interests.</i></font></p>
</td>
<td width="449" valign="top" colspan="2" height="235">
<ul>
<p align="center" style="margin-top:0; margin-right:35mm; margin-bottom:0; margin-left:0;"><a href="zhouzh.files/publication/MLbook2016.htm" target="_blank"><img src="zhouzh.files/publication/cover-ml2016.jpg" width="204" height="200" border="0" align="top"></a></p>
<p style="line-height:100%; margin-top:0; margin-right:30mm; margin-bottom:0; margin-left:0;" align="center"><font size="2" face="仿宋">周志华
著.<a href="zhouzh.files/publication/MLbook2016.htm" target="_blank">机器学习</a>,北京:清华大学出版社,2016.</font><font size="2" face="Times New Roman"> (ISBN 978-7-302-42328-7)</font></p>
</ul>
</td>
</tr>
<tr valign="top" align="center" height="200">
<td width="449" valign="top" colspan="2" height="211">
<ul>
<p style="text-indent:0; line-height:100%; margin:0;" align="left"> <a href="http://www.amazon.com/Ensemble-Methods-Foundations-Algorithms-Recognition/dp/1439830037"><img src="zhouzh.files/publication/cover-emfa.jpg" width="129" height="200" border="0" align="texttop"></a>
<a href="https://www.amazon.com/Evolutionary-Learning-Advances-Theories-Algorithms/dp/9811359555/ref=sr_1_1?__mk_zh_CN=%E4%BA%9A%E9%A9%AC%E9%80%8A%E7%BD%91%E7%AB%99&crid=1R3PGD848OKDU&keywords=evolutionary+learning+advances+in+theories+and+algorithms&qid=1561958147&s=books&sprefix=Evolutio%2Cstripbooks-intl-ship%2C384&sr=1-1" target="_blank"><img src="zhouzh.files/publication/cover-elata.JPG" width="132" height="200" border="0" align="texttop"></a></p>
</ul>
</td>
</tr>
<tr valign="top">
<td width="208" valign="top" height="111">
<p style="text-indent:0; line-height:100%; margin:0;" align="center"><font size="2" face="Times New Roman">Z.-H. Zhou. <a href="http://www.amazon.com/Ensemble-Methods-Foundations-Algorithms-Recognition/dp/1439830037">Ensemble Methods: Foundations and Algorithms</a>, Boca Raton, FL: Chapman & Hall/CRC, 2012. (ISBN 978-1-439-830031),
with </font><a href="https://www.amazon.co.jp/%E3%82%A2%E3%83%B3%E3%82%B5%E3%83%B3%E3%83%96%E3%83%AB%E6%B3%95%E3%81%AB%E3%82%88%E3%82%8B%E6%A9%9F%E6%A2%B0%E5%AD%A6%E7%BF%92-%E5%9F%BA%E7%A4%8E%E3%81%A8%E3%82%A2%E3%83%AB%E3%82%B4%E3%83%AA%E3%82%BA%E3%83%A0-Zhi%E2%80%90Hua-Zhou/dp/476490537X/ref=pd_lpo_sbs_14_img_0/355-4431748-6825944?_encoding=UTF8&psc=1&refRID=9GFW2AQZZNEXGHWDZCK9"><font size="2" face="Times New Roman" color="teal">Japanese
translation</font></a><font size="2" face="Times New Roman">
</font></p>
</td>
<td width="241" valign="top" height="111">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:0; margin-bottom:0; margin-left:1mm;" align="center"><font size="2" face="Times New Roman">Z.-H. Zhou,
Y. Yu, C. Qian. <a href="https://www.amazon.com/Evolutionary-Learning-Advances-Theories-Algorithms/dp/9811359555/ref=sr_1_1?__mk_zh_CN=%E4%BA%9A%E9%A9%AC%E9%80%8A%E7%BD%91%E7%AB%99&crid=1R3PGD848OKDU&keywords=evolutionary+learning+advances+in+theories+and+algorithms&qid=1561958147&s=books&sprefix=Evolutio%2Cstripbooks-intl-ship%2C384&sr=1-1">Evoluionary
Learning: Advances in Theories and Algorithms</a>, Berlin: Springer, 2019. (ISBN 978-981-13-5955-2)</font></p>
</td>
</tr>
<tr valign="top">
<td width="449" valign="top" height="54" colspan="2">
<p> </p>
</td>
</tr>
</table>
<p> <font
face="Times New Roman">[</font><a href="index.htm#top"
target="_self"><font face="Times New Roman">go top</font></a><font
face="Times New Roman">]</font></p>
<p align="left"> </p>
<p><a name="Career"><font face="Times New Roman" size="4"><b>Career</b></font></a>
<table border bgcolor="white" bordercolor="white" width="1097" bordercolordark="white" bordercolorlight="white">
<tr>
<td width="282" height="16" valign="top" bordercolordark="white" bordercolorlight="white"><font face="Times New Roman"><b>Main
Positions:</b></font></td>
<td width="598" height="16" bordercolordark="white" bordercolorlight="white"> </td>
<td width="195" height="16" valign="top" bordercolordark="white" bordercolorlight="white"> </td>
</tr>
<tr>
<td width="282" height="16" valign="top" style="line-height:100%; margin-top:0; margin-bottom:0;" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="3">Cheung Kong Professor</font></p>
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font
face="Times New Roman" size="1">(appointed by the </font><a href="http://www.moe.gov.cn/"
target="_blank"><font face="Times New Roman" size="1">Ministry
of Education of China</font></a><font
face="Times New Roman" size="1">)</font></p>
</td>
<td width="598" height="16" valign="top" align="left" style="line-height:100%; margin-bottom:0;" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><a href="http://cs.nju.edu.cn"
target="_blank"><font face="Times New Roman" size="2">Department
of Computer Science & Technology</font></a><font face="Times New Roman" size="2">, </font><a href="http://www.nju.edu.cn" target="_blank"><font
face="Times New Roman" size="2">Nanjing University</font></a><font face="Times New Roman" size="2">, China</font></p>
</td>
<td width="195" height="16" valign="top" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">Mar. 2007 - </font></p>
</td>
</tr>
<tr>
<td width="282" height="16" valign="top" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="3">Professor</font></p>
</td>
<td width="598" height="16" align="left" style="line-height:100%; margin-bottom:0;" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><a href="http://cs.nju.edu.cn"
target="_blank"><font face="Times New Roman" size="2">Department
of Computer Science & Technology</font></a><font face="Times New Roman" size="2">, </font><a href="http://www.nju.edu.cn" target="_blank"><font
face="Times New Roman" size="2">Nanjing University</font></a><font face="Times New Roman" size="2">, China</font></p>
</td>
<td width="195" height="16" valign="top" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">Nov. 2003 - </font></p>
</td>
</tr>
<tr>
<td width="282" height="16" valign="top" bordercolordark="white" bordercolorlight="white"> </td>
<td width="598" height="16" bordercolordark="white" bordercolorlight="white"> </td>
<td width="195" height="16" valign="top" bordercolordark="white" bordercolorlight="white"> </td>
</tr>
<tr>
<td width="282" height="9" valign="top" bordercolordark="white" bordercolorlight="white"><font face="Times New Roman"><b>Administrative
Positions:</b></font></td>
<td width="598" height="9" bordercolordark="white" bordercolorlight="white"> </td>
<td width="195" height="9" valign="top" bordercolordark="white" bordercolorlight="white"> </td>
</tr>
<tr>
<td width="282" height="16" valign="top" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font
face="Times New Roman">Dean </font></td>
<td width="598" height="16" align="left" bordercolordark="white" bordercolorlight="white" style="line-height:100%; margin-bottom:0;">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2"><a href="http://ai.nju.edu.cn/"
target="_blank">School of Artificial Intelligence</a>, </font><a href="http://www.nju.edu.cn" target="_blank"><font
face="Times New Roman" size="2">Nanjing University</font></a><font face="Times New Roman" size="2">, China</font></td>
<td width="195" height="16" valign="top" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">Mar. 2018 - </font></td>
</tr>
<tr>
<td width="282" height="16" valign="top" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font
face="Times New Roman">Head </font></td>
<td width="598" height="16" align="left" bordercolordark="white" bordercolorlight="white" style="line-height:100%; margin-bottom:0;">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2"><a href="http://cs.nju.edu.cn/"
target="_blank">Department of Computer Science and Technology</a>, </font><a href="http://www.nju.edu.cn" target="_blank"><font
face="Times New Roman" size="2">Nanjing University</font></a><font face="Times New Roman" size="2">, China</font></td>
<td width="195" height="16" valign="top" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">Jan. 2018 - </font></td>
</tr>
<tr>
<td width="282" height="16" valign="top" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font
face="Times New Roman">Deputy Head </font></td>
<td width="598" height="16" align="left" bordercolordark="white" bordercolorlight="white" style="line-height:100%; margin-bottom:0;">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2"><a href="http://cs.nju.edu.cn/"
target="_blank">Department of Computer Science and Technology</a>, </font><a href="http://www.nju.edu.cn" target="_blank"><font
face="Times New Roman" size="2">Nanjing University</font></a><font face="Times New Roman" size="2">, China</font></td>
<td width="195" height="16" valign="top" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">May 2013 - Jan.
2018</font></td>
</tr>
<tr>
<td width="282" height="16" valign="top" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font
face="Times New Roman">Standing Deputy Director </font></td>
<td width="598" height="16" align="left" style="line-height:100%; margin-bottom:0;" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><a href="http://keysoftlab.nju.edu.cn"
target="_blank"><font face="Times New Roman" size="2">National Key Laboratory for Novel Software Technology</font></a><font face="Times New Roman" size="2">, </font><a href="http://www.nju.edu.cn" target="_blank"><font
face="Times New Roman" size="2">Nanjing University</font></a><font face="Times New Roman" size="2">, China</font></td>
<td width="195" height="16" valign="top" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">Nov. 2010 - </font></td>
</tr>
<tr>
<td width="282" height="16" valign="top" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font
face="Times New Roman">Founding
Director</font></td>
<td width="598" height="16" align="left" style="line-height:100%; margin-bottom:0;" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><a href="http://lamda.nju.edu.cn"
target="_blank"><font face="Times New Roman" size="2">Institute
of Machine Learning and Data Mining (LAMDA)</font></a><font face="Times New Roman" size="2">, </font><a href="http://www.nju.edu.cn" target="_blank"><font
face="Times New Roman" size="2">Nanjing University</font></a><font face="Times New Roman" size="2">, China</font></td>
<td width="195" height="16" valign="top" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">Nov. 2007 - </font></td>
</tr>
<tr>
<td width="282" height="16" valign="top" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font
face="Times New Roman">Director</font></td>
<td width="598" height="16" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><a href="http://ai.nju.edu.cn" target="_blank"><font
face="Times New Roman" size="2">AI Lab</font></a><font face="Times New Roman" size="2">, </font><a href="http://cs.nju.edu.cn"
target="_blank"><font face="Times New Roman" size="2">Department of Computer Science
& Technology</font></a><font face="Times New Roman" size="2">,
</font><a href="http://www.nju.edu.cn" target="_blank"><font
face="Times New Roman" size="2">Nanjing University</font></a><font face="Times New Roman" size="2">, China</font></td>
<td width="195" height="16" valign="top" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">May 2002 - </font></td>
</tr>
<tr>
<td width="282" height="16" valign="top" bordercolordark="white" bordercolorlight="white"> </td>
<td width="598" height="16" bordercolordark="white" bordercolorlight="white"> </td>
<td width="195" height="16" valign="top" bordercolordark="white" bordercolorlight="white"> </td>
</tr>
<tr>
<td width="282" bordercolordark="white" bordercolorlight="white"><font face="Times New Roman"><b>Honorary Positions:</b></font></td>
<td width="598" bordercolordark="white" bordercolorlight="white"> </td>
<td width="195" bordercolordark="white" bordercolorlight="white"> </td>
</tr>
<tr>
<td width="282" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="3">Adjunct Professor</font></td>
<td width="598" style="line-height:100%; margin-top:0; margin-bottom:0;" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><a href="http://www.scu.edu.cn/"
target="_blank"><font face="Times New Roman" size="2">Sichuan University</font></a><font face="Times New Roman" size="2">, China</font></td>
<td width="195" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">Jan. 2009 -
Dec. 2012</font></td>
</tr>
<tr>
<td width="282" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="3">Adjunct Professor</font></td>
<td width="598" style="line-height:100%; margin-top:0; margin-bottom:0;" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><a href="http://www.cse.ust.hk/"
target="_blank"><font face="Times New Roman" size="2">Hong Kong
University of Science & Technology</font></a><font face="Times New Roman" size="2">, China</font></td>
<td width="195" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">Jan. 2009 -
Dec. 2010</font></td>
</tr>
<tr>
<td width="282" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="3">Adjunct Professor</font></td>
<td width="598" style="line-height:100%; margin-top:0; margin-bottom:0;" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><a href="http://www.nuaa.edu.cn/"
target="_blank"><font face="Times New Roman" size="2">Nanjing University
of Aeronautics and Astronautics</font></a><font face="Times New Roman" size="2">, China</font></td>
<td width="195" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">Jun.2004 - May
2008</font></td>
</tr>
<tr>
<td width="282" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="3">Honorary Fellow</font></td>
<td width="598" style="line-height:100%; margin-top:0; margin-bottom:0;" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><a href="http://www.deakin.edu.au/"
target="_blank"><font face="Times New Roman" size="2">Deakin University</font></a><font face="Times New Roman" size="2">, Australia</font></td>
<td width="195" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman" size="2">Nov.2002 -
Oct.2006</font></td>
</tr>
</table>
<p align="left"><font
face="Times New Roman">[</font><a href="index.htm#top"
target="_self"><font face="Times New Roman">go top</font></a><font
face="Times New Roman">]</font></p>
<p> </p>
<p><a name="Award"><font face="Times New Roman" size="4"><b>Award & Honor</b></font></a><font face="Times New Roman" size="4"><b> </b></font><font size="3" face="Times New Roman"><i>(international only)</i></font><font
face="Times New Roman">
</font><table border bordercolor="white" width="1347" bordercolordark="white" bordercolorlight="white">
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white"><font
face="Times New Roman" size="3"><b>Award </b></font><i><font size="2" face="Times New Roman">(incomplete)</font></i><font
face="Times New Roman" size="3"><b>:</b></font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><a href="https://www.computer.org/press-room/2019-news/2019-edward-j-mccluskey-technical-achievement-award-zhi-hua-zhou"
target="_blank">IEEE Computer Society Edward J. McCluskey Technical
Achievement Award</a><b> (2019)</b></font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><a href="http://www.ae-info.org/ae/"
target="_blank">Academy of Europe</a> <b>Foreign Member (2017)</b></font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><a href="https://cis.ieee.org/publications/ci-magazine"
target="_blank">IEEE Computational Intelligence Magazine</a> <b>2017
Outstanding Paper Award</b> (with <a href="https://engineering.nd.edu/profiles/nchawla">Nitesh
V. Chawla</a>, <a href="https://www.surrey.ac.uk/people/yaochu-jin">Yaochu
Jin</a>, and <a href="https://togaware.com/about/graham-williams/">Graham
Williams</a>)</font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><a href="http://www.acm.org"
target="_blank">ACM</a> <b>Fellow (2016)</b></font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font
face="Times New Roman"><a href="http://cs.uvm.edu/~icdm/">IEEE ICDM</a><b>
Outstanding Service Award (2016)</b></font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><a href="http://www.aaas.org"
target="_blank">AAAS</a> <b>Fellow (2016)</b></font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font
face="Times New Roman"><a href="http://pakdd.togaware.com/scmembers.html">PAKDD</a><b>
Distinguished Contributions Award (2016)</b></font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><a href="http://www.aaai.org"
target="_blank">AAAI</a> <b>Fellow (2016)</b></font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><a href="http://www.acm.org/press-room/news-releases/2013/distinguished-2013"
target="_blank">ACM Distinguished Scientist</a><b> (2013)</b></font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><a href="http://cis.ieee.org/cis-awards.html#bb"
target="_blank">IEEE Computational Intelligence Society</a> <b>Outstanding Early Career Award (2013)</b></font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><a href="http://www.ieee.org"
target="_blank">IEEE</a> <b>Fellow (2013)</b></font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><a href="http://www.iapr.org"
target="_blank">IAPR</a> <b>Fellow (2012)</b></font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-right:5mm; margin-bottom:0;"><font face="Times New Roman"><a href="http://fit.mmu.edu.my/pakdd2012/dmcomp.html#open_win"
target="_blank">PAKDD 2012 Data Mining Competition</a> (Open Category) <b>Grand Prize Winner</b> Team Leader (Members: <a href="http://lamda.nju.edu.cn/lin/">Nan Li</a>, <a href="http://lamda.nju.edu.cn/qianc/">Chao Qian</a>, <a href="http://lamda.nju.edu.cn/lisy/">Shao-Yuan Li</a>, <a href="http://lamda.nju.edu.cn/zhuy/">Yue Zhu</a>, <a href="http://lamda.nju.edu.cn/daq/">Qing Da</a>)</font></p>
</td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><u><a href="http://www.journals.elsevier.com/pattern-recognition/">Pattern Recognition Journal</a> 2006-2010</u></font><u><font face="Times New Roman"> </font></u><font face="Times New Roman"><b><u>Most Cited Article</u></b> (with </font><a href="http://parnec.nuaa.edu.cn/xtan/" target="_blank"><font
face="Times New Roman">Xiaoyang Tan</font></a><font
face="Times New Roman">, </font><a href="http://parnec.nuaa.edu.cn/"><font face="Times New Roman">Songcan Chen</font></a><font
face="Times New Roman">, and Fuyan Zhang)</font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><a href="http://www.theiet.org"
target="_blank">IET/IEE</a> <b>Fellow (2010)</b></font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><a href="http://www.isibm.net/award.htm"
target="_blank"><font face="Times New Roman">ISIBM</font></a><font
face="Times New Roman"> <b>Outstanding
Achievement Award (2009)</b></font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white"> </td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white"> <font
face="Times New Roman" size="3"><b>Keynote/Plenary Speaker </b></font><i><font size="2" face="Times New Roman">(recent
incomplete)</font></i><font
face="Times New Roman" size="3"><b>:</b></font></td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><u>IJCAI'19</u> </font><font face="Times New Roman" size="2">(<u>28th International
Joint Conference on Artificial Intelligence</u>, Aug. 2019, Macao,
China)</font></p>
</td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><u>AISTATS'19</u> </font><font face="Times New Roman" size="2">(<u>22nd International
Conference on Artificial Intelligence and Statistics</u>, Apr. 2019, Naha,
Japan)</font></p>
</td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><u>ICPR'18</u> </font><font face="Times New Roman" size="2">(<u>24th International
Conference on Pattern Recognition</u>, Aug. 2018, Beijing,
China)</font></p>
</td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><u>KSEM'17</u> </font><font face="Times New Roman" size="2">(<u>10th International
Conference on Knowledge Science, Engineering and Management</u>, Aug. 2017, Melbourne,
Australia)</font></p>
</td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><u>AusAI'16</u></font><font face="Times New Roman" size="2"> (<u>29th Australasian
Joint
Conference on Artificial Intelligence</u>, Dec. 2016, Hobart,
Austrlia)</font></p>
</td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><u>ISNN'16</u> </font><font face="Times New Roman" size="2">(<u>13th International
Symposium on Neural Networks</u>, Jul. 2016, Saint Petersburgh, Russia)</font></p>
</td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><u>ICMLA'15</u> </font><font face="Times New Roman" size="2">(<u>14th IEEE
International
Conference on Machine Learning and Applications</u>, Dec. 2015, Miami,
FL, USA)</font></p>
</td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><u>ANNPR'14</u> </font><font face="Times New Roman" size="2">(<u>6th IAPR International Workshop on Artificial Neural Networks in Pattern Recognition</u>, Oct. 2014, Montreal, Canada)</font></p>
</td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"><font face="Times New Roman"><u>ECDA'14</u> </font><font face="Times New Roman" size="2">(<u>European Conference on Data Analysis</u>, Jul. 2014, Bremen, Germany)</font></p>
</td>
</tr>
<tr>
<td width="1337" bordercolordark="white" bordercolorlight="white"> <p align="left"><font
face="Times New Roman">[</font><a href="index.htm#top"
target="_self"><font face="Times New Roman">go top</font></a><font
face="Times New Roman">]</font></td>
</tr>
</table>
<p><a name="Activity"><font face="Times New Roman" size="4"><b>Professional
Activity</b></font></a>
<table bgcolor="white" width="1276" bordercolordark="white" bordercolorlight="white" height="1917" cellpadding="0" cellspacing="0">
<tr>
<td width="996" colspan="2" bordercolor="white">
<p style="margin-top:0; margin-bottom:0;"><font face="Times New Roman"><b>Professional
Organization Services:</b></font></p>
</td>
<td width="280" bordercolor="white">
<p style="margin-top:0; margin-bottom:0;"> </p>
</td>
</tr>
<tr>
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><i>President</i></font></p>
</td>
<td width="666" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><u>JSAI (JiangSu
association of Artificial Intelligence)</u></font></p>
</td>
<td width="280" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="2">2017 - </font></p>
</td>
</tr>
<tr>
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><i>Vice President</i></font></p>
</td>
<td width="666" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><u>JSCS (Jiangsu
Computer Society)</u></font></p>
</td>
<td width="280" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="2">2015 - </font></p>
</td>
</tr>
<tr>
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><i>Founding
Chair</i></font></p>
</td>
<td width="666" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><u>IEEE
Computer Society Nanjing Chapter</u></font></p>
</td>
<td width="280" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="2">2008 - 2017</font></p>
</td>
</tr>
<tr>
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><i>Chair</i></font></p>
</td>
<td width="666" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="3"><a href="http://cis.ieee.org/data-mining-tc.html">IEEE-CIS-DMTC
(IEEE Computational Intelligence Society Data Mining Technical Committee)</a></font></p>
</td>
<td width="280" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="2">2015 - 2016</font></p>
</td>
</tr>
<tr>
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"> <font
face="Times New Roman" size="3"><i>Chair</i></font></p>
</td>
<td width="666" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><a href="http://cit.bjtu.edu.cn/aipr/index.htm"
target="_blank"><font face="Times New Roman" size="3">CCF-AI (CCF Artificial
Intelligence and Pattern Recognition Technical Committee)</font></a></p>
</td>
<td width="280" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="2">2012 - </font></p>
</td>
</tr>
<tr>
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><i>Chair</i></font></p>
</td>
<td width="666" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><u>CA</u></font><font face="Times New Roman"><u>A</u></font><font
face="Times New Roman" size="3"><u>I Machine Learning Technical Committee</u></font></p>
</td>
<td width="280" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="2">2006 - 2015</font></p>
</td>
</tr>
<tr>
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><i>Vice Chair</i></font></p>
</td>
<td width="666" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><u>IEEE Nanjing Section</u></font></p>
</td>
<td width="280" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="2">2011 - </font></p>
</td>
</tr>
<tr>
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><i>Vice Chair</i></font></p>
</td>
<td width="666" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><u>ACM SIGKDD China Chapter</u></font></p>
</td>
<td width="280" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="2">2016 - </font></p>
</td>
</tr>
<tr>
<td width="330" bordercolor="white">
<p style="margin-top:0; margin-bottom:0;"> </p>
</td>
<td width="946" colspan="2" bordercolor="white">
<p style="margin-top:0; margin-bottom:0;"> </p>
</td>
</tr>
<tr>
<td width="330" bordercolor="white" align="left">
<p style="margin-top:0; margin-bottom:0;"><font
face="Times New Roman">[</font><a href="index.htm#top"
target="_self"><font face="Times New Roman">go top</font></a><font
face="Times New Roman">]</font></p>
</td>
<td width="946" colspan="2" bordercolor="white">
<p style="margin-top:0; margin-bottom:0;"> </p>
</td>
</tr>
<tr>
<td width="330" bordercolor="white">
<p style="margin-top:0; margin-bottom:0;"> </p>
</td>
<td width="666" bordercolor="white">
<p style="margin-top:0; margin-bottom:0;"> </p>
</td>
<td width="280" bordercolor="white">
<p style="margin-top:0; margin-bottom:0;"> </p>
</td>
</tr>
<tr>
<td width="996" colspan="2" bordercolor="white">
<p style="margin-top:0; margin-bottom:0;"><font face="Times New Roman"><b>Journal
Services:</b></font></p>
</td>
<td width="280" bordercolor="white">
<p style="margin-top:0; margin-bottom:0;"> </p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><i>Advisory
Board Member</i></font></p>
</td>
<td width="666" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><a href="http://www.springer.com/engineering/journal/13042"
target="_blank"><font face="Times New Roman" size="3">International
Journal of Machine Learning and Cybernetics</font></a><font face="Times New Roman" size="2"> (Springer)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="2">2010 - </font></p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"> </p>
</td>
<td width="666" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"> </p>
</td>
<td width="280" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"> </p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><i>Executive Editor-in-Chief</i></font></p>
</td>
<td width="666" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="3"><a href="http://journal.hep.com.cn/fcs/EN/2095-2228/current.shtml"
target="_blank">Frontiers of Computer Science</a></font><font face="Times New Roman" size="2"> (Springer)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="2">2013 - </font></p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><i>Associate
Editor-in-Chief</i></font></p>
</td>
<td width="666" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="3"><a href="http://csb.scichina.com/english/"
target="_blank">Chinese Science
Bulletin</a></font><font face="Times New Roman" size="2"> (Springer)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="2">2008 - 2014</font></p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"> </p>
</td>
<td width="666" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="3"><a href="http://info.scichina.com/english/"
target="_blank">Science China: Information Science</a></font><font face="Times New Roman" size="2"> (Science in China Press)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font face="Times New Roman" size="2">2015 - </font></p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white"> </td>
<td width="666" bordercolor="white"> </td>
<td width="280" bordercolor="white"> </td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><i>Associate Editor/Action Editor/ </i></font></p>
</td>
<td width="666" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><a href="http://tist.acm.org"
target="_blank"><font face="Times New Roman" size="3">ACM Transactions
on Intelligent Systems and Technology</font></a><font face="Times New Roman" size="2"> (ACM)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="2">2009 - 2017</font></p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"><font
face="Times New Roman" size="3"><i>Editorial Board Member</i></font><i><font size="2" face="Times New Roman"> (incomplete)</font></i></p>
</td>
<td width="666" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><a href="http://tkdd.acm.org"
target="_blank"><font face="Times New Roman" size="3">ACM Transactions
on Knowledge Discovery from Data</font></a><font face="Times New Roman" size="3"> </font><font face="Times New Roman" size="2">(ACM)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="2">2018- </font></p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"> </td>
<td width="666" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="3"><a href="http://www.springer.com/business+%26+management/journal/40745"
target="_blank">Annals of Data Science</a></font><font face="Times New Roman" size="2"> (Springer)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="2">2014- </font></p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"> </td>
<td width="666" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="3"><a href="http://www.applied-informatics-j.com/"
target="_blank">Applied Informatics</a></font><font face="Times New Roman" size="2"> (Springer)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="2">2013- </font></p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"> </td>
<td width="666" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="3"><a href="http://www.springer.com/computer/ai/journal/10489"
target="_blank">Applied Intelligence</a></font><font face="Times New Roman" size="2"> (Springer)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="2">2011 - 2014</font></p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"> </p>
</td>
<td width="666" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><a href="http://www.elsevier.com/locate/issn/09333657"
target="_blank"><font face="Times New Roman" size="3">Artificial Intelligence in Medicine</font></a><font face="Times New Roman" size="2"> (Elsevier)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="2">2002 - 2016</font></p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"> </td>
<td width="666" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="3"><a href="http://aimsciences.org/journals/BDIA.jsp?journalID=27"
target="_blank">Big Data and Information Analytics</a></font><font face="Times New Roman" size="2"> (AIMS)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="2">2015 - </font></p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"> </td>
<td width="666" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="3"><a href="http://www.springer.com/computer/database+management+%26+information+retrieval/journal/41019"
target="_blank">Data Science and Engineering</a></font><font face="Times New Roman" size="2"> (Springer)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="2">2015 - </font></p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"> </td>
<td width="666" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="3"><a href="http://cis.ieee.org/tnnls"
target="_blank">IEEE Transactions on Cognitive and Developmental Systems</a></font><font face="Times New Roman" size="2"> (IEEE)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="2">2015 - 2018</font></p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0;"> </p>
</td>
<td width="666" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><a href="http://computer.org/tkde/"
target="_blank"><font face="Times New Roman" size="3">IEEE Transactions
on Knowledge and Data Engineering</font></a><font face="Times New Roman" size="2"> (IEEE)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="2">2008 - 2012</font></p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"> </td>
<td width="666" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="3"><a href="http://cis.ieee.org/tnnls"
target="_blank">IEEE Transactions on Neural Networks and Learning Systems</a></font><font face="Times New Roman" size="2"> (IEEE)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="2">2014 - 2017</font></p>
</td>
</tr>
<tr valign="middle">
<td width="330" bordercolor="white">
<p style="line-height:100%; margin-top:0; margin-bottom:0;"> </td>
<td width="666" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="3"><a href="http://computer.org/tpami/"
target="_blank">IEEE Transactions on Pattern Analysis and Machine
Intelligence</a></font><font face="Times New Roman" size="2"> (IEEE)</font></p>
</td>
<td width="280" bordercolor="white">
<p style="text-indent:0; line-height:100%; margin-top:0; margin-right:2mm; margin-bottom:0; margin-left:0;"><font face="Times New Roman" size="2">2018 - </font></p>