-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xml
1028 lines (904 loc) · 59.1 KB
/
index.xml
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
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Hua Xu</title>
<link>https://thu-xuhua.github.io/</link>
<atom:link href="https://thu-xuhua.github.io/index.xml" rel="self" type="application/rss+xml" />
<description>Hua Xu</description>
<generator>Source Themes Academic (https://sourcethemes.com/academic/)</generator><language>en-us</language><copyright>© Hua Xu 2022</copyright><lastBuildDate>Tue, 19 Jul 2022 16:24:04 +0800</lastBuildDate>
<image>
<url>https://thu-xuhua.github.io/images/icon_huf9441868456af88e4429501459a79a2b_153180_512x512_fill_lanczos_center_3.png</url>
<title>Hua Xu</title>
<link>https://thu-xuhua.github.io/</link>
</image>
<item>
<title>Natural Interaction for Tri-Co Robots (1) Human-machine Dialogue Intention Understanding</title>
<link>https://thu-xuhua.github.io/monograph/intent/</link>
<pubDate>Sun, 20 Mar 2022 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/monograph/intent/</guid>
<description></description>
</item>
<item>
<title>Data Mining: Methodology and Applications(2nd edition)</title>
<link>https://thu-xuhua.github.io/textbook/datamining-methodandapplication2/</link>
<pubDate>Wed, 02 Mar 2022 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/textbook/datamining-methodandapplication2/</guid>
<description></description>
</item>
<item>
<title>Data Mining: Methodology and Applications</title>
<link>https://thu-xuhua.github.io/textbook/datamining-methodandapplication/</link>
<pubDate>Mon, 01 Sep 2014 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/textbook/datamining-methodandapplication/</guid>
<description></description>
</item>
<item>
<title>Evolutionary Machine Learning</title>
<link>https://thu-xuhua.github.io/monograph/evolutionary-machine-learning/</link>
<pubDate>Mon, 01 Sep 2014 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/monograph/evolutionary-machine-learning/</guid>
<description></description>
</item>
<item>
<title>Petri Net: Theory and Applications</title>
<link>https://thu-xuhua.github.io/monograph/petrinettheoryandapplications/</link>
<pubDate>Fri, 01 Feb 2008 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/monograph/petrinettheoryandapplications/</guid>
<description></description>
</item>
<item>
<title>Data Mining: Methods and Applications - Application Cases</title>
<link>https://thu-xuhua.github.io/textbook/datamining-methodandapplication-case/</link>
<pubDate>Fri, 01 Sep 2017 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/textbook/datamining-methodandapplication-case/</guid>
<description></description>
</item>
<item>
<title>Big Data Technology and Industry Applications</title>
<link>https://thu-xuhua.github.io/textbook/bigdatatechnologyandindustryapplications/</link>
<pubDate>Mon, 01 Aug 2016 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/textbook/bigdatatechnologyandindustryapplications/</guid>
<description></description>
</item>
<item>
<title>Sentiment Analysis and Ontology Engineering</title>
<link>https://thu-xuhua.github.io/monograph/sentimentanalysisandontologyengineering/</link>
<pubDate>Mon, 01 Feb 2016 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/monograph/sentimentanalysisandontologyengineering/</guid>
<description></description>
</item>
<item>
<title>Recent Advances in Multi-robot Systems</title>
<link>https://thu-xuhua.github.io/monograph/recentadvancesinmulti-robotsystems/</link>
<pubDate>Fri, 01 Feb 2008 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/monograph/recentadvancesinmulti-robotsystems/</guid>
<description></description>
</item>
<item>
<title>Computational Geometry: Algorithms and Applications</title>
<link>https://thu-xuhua.github.io/textbook/%E8%AE%A1%E7%AE%97%E5%87%A0%E4%BD%95%E7%AE%97%E6%B3%95%E4%B8%8E%E5%BA%94%E7%94%A8/</link>
<pubDate>Tue, 01 Feb 2005 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/textbook/%E8%AE%A1%E7%AE%97%E5%87%A0%E4%BD%95%E7%AE%97%E6%B3%95%E4%B8%8E%E5%BA%94%E7%94%A8/</guid>
<description></description>
</item>
<item>
<title>Data Structures and Algorithms (Java Description)</title>
<link>https://thu-xuhua.github.io/textbook/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%B8%8E%E7%AE%97%E6%B3%95java%E8%AF%AD%E8%A8%80%E6%8F%8F%E8%BF%B0/</link>
<pubDate>Wed, 01 Feb 2006 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/textbook/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%B8%8E%E7%AE%97%E6%B3%95java%E8%AF%AD%E8%A8%80%E6%8F%8F%E8%BF%B0/</guid>
<description></description>
</item>
<item>
<title>Quality Software Management (Volume 1)-System Thinking</title>
<link>https://thu-xuhua.github.io/monograph/%E8%B4%A8%E9%87%8F%E8%BD%AF%E4%BB%B6%E7%AE%A1%E7%90%86/</link>
<pubDate>Sun, 01 Feb 2004 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/monograph/%E8%B4%A8%E9%87%8F%E8%BD%AF%E4%BB%B6%E7%AE%A1%E7%90%86/</guid>
<description></description>
</item>
<item>
<title>The Psychology of Computer Programming</title>
<link>https://thu-xuhua.github.io/monograph/%E7%A8%8B%E5%BA%8F%E5%BC%80%E5%8F%91%E5%BF%83%E7%90%86%E5%AD%A6%E9%93%B6%E5%B9%B4%E7%BA%AA%E5%BF%B5%E7%89%88/</link>
<pubDate>Sat, 01 Feb 2003 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/monograph/%E7%A8%8B%E5%BA%8F%E5%BC%80%E5%8F%91%E5%BF%83%E7%90%86%E5%AD%A6%E9%93%B6%E5%B9%B4%E7%BA%AA%E5%BF%B5%E7%89%88/</guid>
<description></description>
</item>
<item>
<title>Big Data Sentiment Analysis in Text</title>
<link>https://thu-xuhua.github.io/textbook/%E6%96%87%E6%9C%AC%E5%A4%A7%E6%95%B0%E6%8D%AE%E6%83%85%E6%84%9F%E5%88%86%E6%9E%90/</link>
<pubDate>Sat, 10 Oct 2020 11:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/textbook/%E6%96%87%E6%9C%AC%E5%A4%A7%E6%95%B0%E6%8D%AE%E6%83%85%E6%84%9F%E5%88%86%E6%9E%90/</guid>
<description></description>
</item>
<item>
<title>Based on the product review sensibility classification method and device that improve SVMs</title>
<link>https://thu-xuhua.github.io/patent/3000-based-on-the-product-review-sensibility-classification-method-and-device-that-improve-svms/</link>
<pubDate>Fri, 21 Feb 2020 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3000-based-on-the-product-review-sensibility-classification-method-and-device-that-improve-svms/</guid>
<description></description>
</item>
<item>
<title>Bank's background task runs the correlation analysis and device of batch time</title>
<link>https://thu-xuhua.github.io/patent/3001-banks-background-task-runs-the-correlation-analysis-and-device-of-batch-time/</link>
<pubDate>Mon, 21 Oct 2019 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3001-banks-background-task-runs-the-correlation-analysis-and-device-of-batch-time/</guid>
<description></description>
</item>
<item>
<title>The many emotions sorting technique extracted based on weight study and multiple features and device</title>
<link>https://thu-xuhua.github.io/patent/3002-the-many-emotions-sorting-technique-extracted-based-on-weight-study-and-multiple-features-and-device/</link>
<pubDate>Fri, 09 Aug 2019 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3002-the-many-emotions-sorting-technique-extracted-based-on-weight-study-and-multiple-features-and-device/</guid>
<description></description>
</item>
<item>
<title>Theme model based self-extendable type feature selecting method and system</title>
<link>https://thu-xuhua.github.io/patent/3003-theme-model-based-self-extendable-type-feature-selecting-method-and-system/</link>
<pubDate>Tue, 02 Jul 2019 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3003-theme-model-based-self-extendable-type-feature-selecting-method-and-system/</guid>
<description></description>
</item>
<item>
<title>The sampling accelerated method of Biterm topic models</title>
<link>https://thu-xuhua.github.io/patent/3004-the-sampling-accelerated-method-of-biterm-topic-models/</link>
<pubDate>Fri, 31 May 2019 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3004-the-sampling-accelerated-method-of-biterm-topic-models/</guid>
<description></description>
</item>
<item>
<title>Microblog social network based topic automated recommendation method and system</title>
<link>https://thu-xuhua.github.io/patent/3005-microblog-social-network-based-topic-automated-recommendation-method-and-system/</link>
<pubDate>Tue, 05 Feb 2019 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3005-microblog-social-network-based-topic-automated-recommendation-method-and-system/</guid>
<description></description>
</item>
<item>
<title>Text summarization generation system and method based on coding-decoding deep neural networks</title>
<link>https://thu-xuhua.github.io/patent/3006-text-summarization-generation-system-and-method-based-on-coding-decoding-deep-neural-networks/</link>
<pubDate>Tue, 05 Feb 2019 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3006-text-summarization-generation-system-and-method-based-on-coding-decoding-deep-neural-networks/</guid>
<description></description>
</item>
<item>
<title>Chinese microblogging mood sorting technique based on Markov logical network and system</title>
<link>https://thu-xuhua.github.io/patent/3007-chinese-microblogging-mood-sorting-technique-based-on-markov-logical-network-and-system/</link>
<pubDate>Tue, 02 Oct 2018 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3007-chinese-microblogging-mood-sorting-technique-based-on-markov-logical-network-and-system/</guid>
<description></description>
</item>
<item>
<title>Context sentiment classification method and system based on user comment text</title>
<link>https://thu-xuhua.github.io/patent/3008-context-sentiment-classification-method-and-system-based-on-user-comment-text/</link>
<pubDate>Tue, 10 Apr 2018 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3008-context-sentiment-classification-method-and-system-based-on-user-comment-text/</guid>
<description></description>
</item>
<item>
<title>TPS trading volumes predict the method for visualizing and system with threshold range prediction</title>
<link>https://thu-xuhua.github.io/patent/3009-tps-trading-volumes-predict-the-method-for-visualizing-and-system-with-threshold-range-prediction/</link>
<pubDate>Fri, 09 Feb 2018 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3009-tps-trading-volumes-predict-the-method-for-visualizing-and-system-with-threshold-range-prediction/</guid>
<description></description>
</item>
<item>
<title>Method and system for excavating interest of microblog users based on LDA theme model</title>
<link>https://thu-xuhua.github.io/patent/3010-method-and-system-for-excavating-interest-of-microblog-users-based-on-lda-theme-model/</link>
<pubDate>Thu, 19 Dec 2019 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3010-method-and-system-for-excavating-interest-of-microblog-users-based-on-lda-theme-model/</guid>
<description></description>
</item>
<item>
<title>Microblog user interest finding method and system based on microblog texts</title>
<link>https://thu-xuhua.github.io/patent/3011-microblog-user-interest-finding-method-and-system-based-on-microblog-texts/</link>
<pubDate>Tue, 21 Nov 2017 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3011-microblog-user-interest-finding-method-and-system-based-on-microblog-texts/</guid>
<description></description>
</item>
<item>
<title>Bank's backstage TPS transaction events trend forecasting method and system</title>
<link>https://thu-xuhua.github.io/patent/3012-banks-backstage-tps-transaction-events-trend-forecasting-method-and-system/</link>
<pubDate>Tue, 24 Oct 2017 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3012-banks-backstage-tps-transaction-events-trend-forecasting-method-and-system/</guid>
<description></description>
</item>
<item>
<title>Emotion classification and emotion component analyzing method and system based on microblog texts</title>
<link>https://thu-xuhua.github.io/patent/3013-emotion-classification-and-emotion-component-analyzing-method-and-system-based-on-microblog-texts/</link>
<pubDate>Fri, 22 Sep 2017 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3013-emotion-classification-and-emotion-component-analyzing-method-and-system-based-on-microblog-texts/</guid>
<description></description>
</item>
<item>
<title>Microblog text level subject finding method and system based on seed words</title>
<link>https://thu-xuhua.github.io/patent/3014-microblog-text-level-subject-finding-method-and-system-based-on-seed-words/</link>
<pubDate>Wed, 19 Apr 2017 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3014-microblog-text-level-subject-finding-method-and-system-based-on-seed-words/</guid>
<description></description>
</item>
<item>
<title>The dispatching method of multiple robot devices of film trasport cooperation and system</title>
<link>https://thu-xuhua.github.io/patent/3015-the-dispatching-method-of-multiple-robot-devices-of-film-trasport-cooperation-and-system/</link>
<pubDate>Wed, 23 Mar 2016 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3015-the-dispatching-method-of-multiple-robot-devices-of-film-trasport-cooperation-and-system/</guid>
<description></description>
</item>
<item>
<title>Parameter variation law simulation system oriented to function simulation of semiconductor manufacturing apparatus</title>
<link>https://thu-xuhua.github.io/patent/3016-parameter-variation-law-simulation-system-oriented-to-function-simulation-of-semiconductor-manufacturing-apparatus/</link>
<pubDate>Wed, 02 Dec 2015 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3016-parameter-variation-law-simulation-system-oriented-to-function-simulation-of-semiconductor-manufacturing-apparatus/</guid>
<description></description>
</item>
<item>
<title>A kind of skin Forecasting Methodology and prognoses system thereof</title>
<link>https://thu-xuhua.github.io/patent/3017-a-kind-of-skin-forecasting-methodology-and-prognoses-system-thereof/</link>
<pubDate>Wed, 12 Aug 2015 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3017-a-kind-of-skin-forecasting-methodology-and-prognoses-system-thereof/</guid>
<description></description>
</item>
<item>
<title>General control kernel system used for integrated circuit manufacturing equipment</title>
<link>https://thu-xuhua.github.io/patent/3018-general-control-kernel-system-used-for-integrated-circuit-manufacturing-equipment/</link>
<pubDate>Wed, 09 Apr 2014 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3018-general-control-kernel-system-used-for-integrated-circuit-manufacturing-equipment/</guid>
<description></description>
</item>
<item>
<title>Method and device for configuring and parsing dynamic protocol</title>
<link>https://thu-xuhua.github.io/patent/3019-method-and-device-for-configuring-and-parsing-dynamic-protocol/</link>
<pubDate>Wed, 08 Jan 2014 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3019-method-and-device-for-configuring-and-parsing-dynamic-protocol/</guid>
<description></description>
</item>
<item>
<title>Universal control system for integrated circuit manufacturing equipment</title>
<link>https://thu-xuhua.github.io/patent/3020-universal-control-system-for-integrated-circuit-manufacturing-equipment/</link>
<pubDate>Wed, 31 Jul 2013 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3020-universal-control-system-for-integrated-circuit-manufacturing-equipment/</guid>
<description></description>
</item>
<item>
<title>Semiconductor manufacturing equipment functional simulation-oriented communication protocol mode configuration method</title>
<link>https://thu-xuhua.github.io/patent/3022-semiconductor-manufacturing-equipment-functional-simulation-oriented-communication-protocol-mode-configuration-method/</link>
<pubDate>Wed, 12 Jun 2013 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3022-semiconductor-manufacturing-equipment-functional-simulation-oriented-communication-protocol-mode-configuration-method/</guid>
<description></description>
</item>
<item>
<title>Internal interlocking management method and device for simulation system</title>
<link>https://thu-xuhua.github.io/patent/3021-internal-interlocking-management-method-and-device-for-simulation-system/</link>
<pubDate>Wed, 22 May 2013 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3021-internal-interlocking-management-method-and-device-for-simulation-system/</guid>
<description></description>
</item>
<item>
<title>Parallelized simulation multithread management method</title>
<link>https://thu-xuhua.github.io/patent/3023-parallelized-simulation-multithread-management-method/</link>
<pubDate>Wed, 10 Apr 2013 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3023-parallelized-simulation-multithread-management-method/</guid>
<description></description>
</item>
<item>
<title>Method and apparatus for predicting antibiotic performance or critical ingredient content of detergent</title>
<link>https://thu-xuhua.github.io/patent/3024-method-and-apparatus-for-predicting-antibiotic-performance-or-critical-ingredient-content-of-detergent/</link>
<pubDate>Wed, 27 Mar 2013 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3024-method-and-apparatus-for-predicting-antibiotic-performance-or-critical-ingredient-content-of-detergent/</guid>
<description></description>
</item>
<item>
<title>Communication mode management method and system for emulating semiconductor manufacturing equipment</title>
<link>https://thu-xuhua.github.io/patent/3025-communication-mode-management-method-and-system-for-emulating-semiconductor-manufacturing-equipment/</link>
<pubDate>Wed, 19 Dec 2012 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3025-communication-mode-management-method-and-system-for-emulating-semiconductor-manufacturing-equipment/</guid>
<description></description>
</item>
<item>
<title>Method and device for constructing and managing prototype device library</title>
<link>https://thu-xuhua.github.io/patent/3026-method-and-device-for-constructing-and-managing-prototype-device-library/</link>
<pubDate>Wed, 10 Oct 2012 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3026-method-and-device-for-constructing-and-managing-prototype-device-library/</guid>
<description></description>
</item>
<item>
<title>Simulated batch configuration document management method oriented to semiconductor manufacturing equipment function</title>
<link>https://thu-xuhua.github.io/patent/3027-simulated-batch-configuration-document-management-method-oriented-to-semiconductor-manufacturing-equipment-function/</link>
<pubDate>Wed, 18 Jul 2012 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3027-simulated-batch-configuration-document-management-method-oriented-to-semiconductor-manufacturing-equipment-function/</guid>
<description></description>
</item>
<item>
<title>Method and device for storing and managing configuration data of simulation system</title>
<link>https://thu-xuhua.github.io/patent/3028-method-and-device-for-storing-and-managing-configuration-data-of-simulation-system/</link>
<pubDate>Wed, 26 Nov 2008 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3028-method-and-device-for-storing-and-managing-configuration-data-of-simulation-system/</guid>
<description></description>
</item>
<item>
<title>Etchingmachine cluster controller and process module controller communication system and method</title>
<link>https://thu-xuhua.github.io/patent/3029-etchingmachine-cluster-controller-and-process-module-controller-communication-system-and-method/</link>
<pubDate>Wed, 29 Oct 2008 15:43:29 +0800</pubDate>
<guid>https://thu-xuhua.github.io/patent/3029-etchingmachine-cluster-controller-and-process-module-controller-communication-system-and-method/</guid>
<description></description>
</item>
<item>
<title>Continual Machine Reading Comprehension via Uncertainty-aware Fixed Memory and Adversarial Domain Adaptation </title>
<link>https://thu-xuhua.github.io/publication/continual-machine-reading-comprehension-via-uncertainty-aware-fixed-memory-and-adversarial-domain-adaptation/</link>
<pubDate>Tue, 19 Jul 2022 16:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/continual-machine-reading-comprehension-via-uncertainty-aware-fixed-memory-and-adversarial-domain-adaptation/</guid>
<description></description>
</item>
<item>
<title>MFENAS: Multifactorial Evolution for Neural Architecture Search</title>
<link>https://thu-xuhua.github.io/publication/mfenas/</link>
<pubDate>Tue, 19 Jul 2022 16:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/mfenas/</guid>
<description></description>
</item>
<item>
<title>High-dimensional expensive multi-objective optimization via additive structure</title>
<link>https://thu-xuhua.github.io/publication/high-dimensional-expensive-multi-objective-optimization-via-additive-structure/</link>
<pubDate>Sun, 01 May 2022 16:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/high-dimensional-expensive-multi-objective-optimization-via-additive-structure/</guid>
<description></description>
</item>
<item>
<title>M-SENA: An Integrated Platform for Multimodal Sentiment Analysis</title>
<link>https://thu-xuhua.github.io/publication/m-sena/</link>
<pubDate>Wed, 16 Mar 2022 15:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/m-sena/</guid>
<description></description>
</item>
<item>
<title>Consistent Representation Learning for Continual Relation Extraction</title>
<link>https://thu-xuhua.github.io/publication/crl/</link>
<pubDate>Tue, 15 Mar 2022 15:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/crl/</guid>
<description></description>
</item>
<item>
<title>GAR-Net: A Graph Attention Reasoning Network for Conversation Understanding</title>
<link>https://thu-xuhua.github.io/publication/gar-net/</link>
<pubDate>Tue, 15 Feb 2022 16:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/gar-net/</guid>
<description></description>
</item>
<item>
<title>An End-to-End Traditional Chinese Medicine Constitution Assessment System Based on Multimodal Clinical Feature Representation and Fusion</title>
<link>https://thu-xuhua.github.io/publication/an-end-to-end-traditional-chinese-medicine-constitution-assessment-system-based-on-multimodal-clinical-feature-representation-and-fusion/</link>
<pubDate>Wed, 12 Jan 2022 15:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/an-end-to-end-traditional-chinese-medicine-constitution-assessment-system-based-on-multimodal-clinical-feature-representation-and-fusion/</guid>
<description></description>
</item>
<item>
<title>Co-attentive multi-task convolutional neural network for facial expression recognition</title>
<link>https://thu-xuhua.github.io/publication/co-attentive-multi-task-convolutional-neural-network-for-facial-expression-recognition/</link>
<pubDate>Mon, 01 Nov 2021 16:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/co-attentive-multi-task-convolutional-neural-network-for-facial-expression-recognition/</guid>
<description></description>
</item>
<item>
<title>Transformer-based Feature Reconstruction Network for Robust Multimodal Sentiment Analysis</title>
<link>https://thu-xuhua.github.io/publication/transformer-based-feature-reconstruction-network-for-robust-multimodal-sentiment-analysis/</link>
<pubDate>Wed, 20 Oct 2021 16:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/transformer-based-feature-reconstruction-network-for-robust-multimodal-sentiment-analysis/</guid>
<description></description>
</item>
<item>
<title>TEXTOIR: An Integrated and Visualized Platform for Text Open Intent Recognition</title>
<link>https://thu-xuhua.github.io/publication/textoir/</link>
<pubDate>Sat, 08 May 2021 16:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/textoir/</guid>
<description></description>
</item>
<item>
<title>Discovering New Intents with Deep Aligned Clustering</title>
<link>https://thu-xuhua.github.io/publication/deepaligned-clustering/</link>
<pubDate>Wed, 17 Feb 2021 18:38:46 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/deepaligned-clustering/</guid>
<description></description>
</item>
<item>
<title>Deep Open Intent Classification with Adaptive Decision Boundary</title>
<link>https://thu-xuhua.github.io/publication/adaptive-decision-boundary/</link>
<pubDate>Tue, 16 Feb 2021 18:38:46 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/adaptive-decision-boundary/</guid>
<description></description>
</item>
<item>
<title>Learning Modality-Specific Representations with Self-Supervised Multi-Task Learning for Multimodal Sentiment Analysis</title>
<link>https://thu-xuhua.github.io/publication/self-mm/</link>
<pubDate>Mon, 15 Feb 2021 18:38:46 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/self-mm/</guid>
<description></description>
</item>
<item>
<title>Representation Iterative Fusion Based on Heterogeneous Graph Neural Network for Joint Entity and Relation Extraction</title>
<link>https://thu-xuhua.github.io/publication/rifre/</link>
<pubDate>Mon, 01 Feb 2021 15:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/rifre/</guid>
<description></description>
</item>
<item>
<title>CM-BERT: Cross-Modal BERT for Text-Audio Sentiment Analysis</title>
<link>https://thu-xuhua.github.io/publication/cmbert/</link>
<pubDate>Mon, 12 Oct 2020 16:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/cmbert/</guid>
<description></description>
</item>
<item>
<title>A joint model of extended LDA and IBTM over streaming Chinese short texts</title>
<link>https://thu-xuhua.github.io/publication/a-joint-model-of-extended-lda-and-ibtm-over-streaming-chinese-short-texts/</link>
<pubDate>Mon, 31 Aug 2020 15:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/a-joint-model-of-extended-lda-and-ibtm-over-streaming-chinese-short-texts/</guid>
<description></description>
</item>
<item>
<title>Deep Reinforcement Learning for Robust Emotional Classification in Facial Expression Recognition</title>
<link>https://thu-xuhua.github.io/publication/deep-reinforcement-learning-for-robust-emotional-classification-in-facial-expression-recognition/</link>
<pubDate>Mon, 31 Aug 2020 15:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/deep-reinforcement-learning-for-robust-emotional-classification-in-facial-expression-recognition/</guid>
<description></description>
</item>
<item>
<title>FastBTM: Reducing the Sampling Time for Biterm Topic Model</title>
<link>https://thu-xuhua.github.io/publication/fastbtm-reducing-the-sampling-time-for-biterm-topic-model/</link>
<pubDate>Mon, 31 Aug 2020 15:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/fastbtm-reducing-the-sampling-time-for-biterm-topic-model/</guid>
<description></description>
</item>
<item>
<title>HGFM : A Hierarchical Grained and Feature Model for Acoustic Emotion Recognition</title>
<link>https://thu-xuhua.github.io/publication/hgfm/</link>
<pubDate>Mon, 31 Aug 2020 15:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/hgfm/</guid>
<description></description>
</item>
<item>
<title>Improving the Robustness of Machine Reading Comprehension Model with Hierarchical Knowledge and Auxiliary Unanswerability Prediction</title>
<link>https://thu-xuhua.github.io/publication/improving-the-robustness-of-machine-reading-comprehension-model-with-hierarchical-knowledge-and-auxiliary-unanswerability-prediction/</link>
<pubDate>Mon, 31 Aug 2020 15:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/improving-the-robustness-of-machine-reading-comprehension-model-with-hierarchical-knowledge-and-auxiliary-unanswerability-prediction/</guid>
<description></description>
</item>
<item>
<title>Objective Reduction in Many-Objective Optimization: Evolutionary Multiobjective Approaches and Comprehensive Analysis</title>
<link>https://thu-xuhua.github.io/publication/objective-reduction-in-many-objective-optimization-evolutionary-multiobjective-approaches-and-comprehensive-analysis/</link>
<pubDate>Mon, 31 Aug 2020 15:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/objective-reduction-in-many-objective-optimization-evolutionary-multiobjective-approaches-and-comprehensive-analysis/</guid>
<description></description>
</item>
<item>
<title>CH-SIMS: A Chinese Multimodal Sentiment Analysis Dataset with Fine-grained Annotation of Modality</title>
<link>https://thu-xuhua.github.io/publication/chsims/</link>
<pubDate>Sun, 12 Jul 2020 15:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/chsims/</guid>
<description></description>
</item>
<item>
<title>Heterogeneous graph neural networks for noisy few-shot relation classification</title>
<link>https://thu-xuhua.github.io/publication/heterogeneous-graph-neural-networks-for-noisy-few-shot-relation-classification/</link>
<pubDate>Wed, 01 Jan 2020 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/heterogeneous-graph-neural-networks-for-noisy-few-shot-relation-classification/</guid>
<description></description>
</item>
<item>
<title>Discovering New Intents via Constrained Deep Adaptive Clustering with Cluster Refinement</title>
<link>https://thu-xuhua.github.io/publication/discovering-new-intents-via-constrained-deep-adaptive-clustering-with-cluster-refinement/</link>
<pubDate>Sat, 31 Aug 2019 15:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/discovering-new-intents-via-constrained-deep-adaptive-clustering-with-cluster-refinement/</guid>
<description></description>
</item>
<item>
<title>Multi-Channel Convolutional Neural Networks with Adversarial Training for Few-Shot Relation Classification</title>
<link>https://thu-xuhua.github.io/publication/multi-channel-convolutional-neural-networks-with-adversarial-training-for-few-shot-relation-classification/</link>
<pubDate>Sat, 31 Aug 2019 15:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/multi-channel-convolutional-neural-networks-with-adversarial-training-for-few-shot-relation-classification/</guid>
<description></description>
</item>
<item>
<title>Deep Unknown Intent Detection with Margin Loss</title>
<link>https://thu-xuhua.github.io/publication/deep-unknown-intent-detection-with-margin-loss/</link>
<pubDate>Mon, 01 Jul 2019 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/deep-unknown-intent-detection-with-margin-loss/</guid>
<description></description>
</item>
<item>
<title>A post-processing method for detecting unknown intent of dialogue system via pre-trained deep neural network classifier</title>
<link>https://thu-xuhua.github.io/publication/a-post-processing-method-for-detecting-unknown-intent-of-dialogue-system-via-pre-trained-deep-neural-network-classifier/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/a-post-processing-method-for-detecting-unknown-intent-of-dialogue-system-via-pre-trained-deep-neural-network-classifier/</guid>
<description></description>
</item>
<item>
<title>Balancing Exploration and Exploitation in Multiobjective Batch Bayesian Optimization</title>
<link>https://thu-xuhua.github.io/publication/balancing-exploration-and-exploitation-in-multiobjective-batch-bayesian-optimization/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/balancing-exploration-and-exploitation-in-multiobjective-batch-bayesian-optimization/</guid>
<description></description>
</item>
<item>
<title>Noisy Multiobjective Black-Box Optimization Using Bayesian Optimization</title>
<link>https://thu-xuhua.github.io/publication/noisy-multiobjective-black-box-optimization-using-bayesian-optimization/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/noisy-multiobjective-black-box-optimization-using-bayesian-optimization/</guid>
<description></description>
</item>
<item>
<title>Internet Product Design</title>
<link>https://thu-xuhua.github.io/talk/internet-product-design/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0800</pubDate>
<guid>https://thu-xuhua.github.io/talk/internet-product-design/</guid>
<description><p>Course Classification: Public Elective Courses of Tsinghua University</p>
<p>Lecturer: Hua Xu</p>
<p>Target Audience: All Undergraduate Students</p>
<p>Teaching Time:2019 - Today</p>
</description>
</item>
<item>
<title>Two-Stage Attention Network for Aspect-Level Sentiment Classification</title>
<link>https://thu-xuhua.github.io/publication/two-stage-attention-network-for-aspect-level-sentiment-classification/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/two-stage-attention-network-for-aspect-level-sentiment-classification/</guid>
<description></description>
</item>
<item>
<title>Suggest what to tag: Recommending more precise hashtags based on users’ dynamic interests and streaming tweet content</title>
<link>https://thu-xuhua.github.io/publication/suggest-what-to-tag-recommending-more-precise-hashtags-based-on-users-dynamic-interests-and-streaming-tweet-content/</link>
<pubDate>Wed, 31 Aug 2016 15:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/suggest-what-to-tag-recommending-more-precise-hashtags-based-on-users-dynamic-interests-and-streaming-tweet-content/</guid>
<description></description>
</item>
<item>
<title>BitHash: An efficient bitwise Locality Sensitive Hashing method with applications</title>
<link>https://thu-xuhua.github.io/publication/bithash/</link>
<pubDate>Fri, 01 Jan 2016 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/bithash/</guid>
<description></description>
</item>
<item>
<title>Finding overlapping community from social networks based on community forest model</title>
<link>https://thu-xuhua.github.io/publication/finding-overlapping-community-from-social-networks-based-on-community-forest-model/</link>
<pubDate>Fri, 01 Jan 2016 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/finding-overlapping-community-from-social-networks-based-on-community-forest-model/</guid>
<description></description>
</item>
<item>
<title>User-IBTM: An Online Framework for Hashtag Suggestion in Twitter</title>
<link>https://thu-xuhua.github.io/publication/user-ibtm/</link>
<pubDate>Fri, 01 Jan 2016 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/user-ibtm/</guid>
<description></description>
</item>
<item>
<title>Intelligent Mobile Robot: Design, Programming and Practice</title>
<link>https://thu-xuhua.github.io/talk/intelligent-mobile-robot/</link>
<pubDate>Fri, 01 Jan 2016 00:00:00 +0800</pubDate>
<guid>https://thu-xuhua.github.io/talk/intelligent-mobile-robot/</guid>
<description><p>Course Classification: Public Elective Courses of Tsinghua University</p>
<p>Lecturer: Hua Xu</p>
<p>Target Audience: All Undergraduate Students</p>
<p>Teaching Time:2016 - Today</p>
</description>
</item>
<item>
<title>A novel disjoint community detection algorithm for social networks based on backbone degree and expansion</title>
<link>https://thu-xuhua.github.io/publication/a-novel-disjoint-community-detection-algorithm-for-social-networks-based-on-backbone-degree-and-expansion/</link>
<pubDate>Thu, 01 Jan 2015 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/a-novel-disjoint-community-detection-algorithm-for-social-networks-based-on-backbone-degree-and-expansion/</guid>
<description></description>
</item>
<item>
<title>A rule-based approach to emotion cause detection for Chinese micro-blogs</title>
<link>https://thu-xuhua.github.io/publication/a-rule-based-approach-to-emotion-cause-detection-for-chinese-micro-blogs/</link>
<pubDate>Thu, 01 Jan 2015 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/a-rule-based-approach-to-emotion-cause-detection-for-chinese-micro-blogs/</guid>
<description></description>
</item>
<item>
<title>An Experimental Investigation of Variation Operators in Reference-Point Based Many-Objective Optimization</title>
<link>https://thu-xuhua.github.io/publication/an-experimental-investigation-of-variation-operators-in-reference-point-based-many-objective-optimization/</link>
<pubDate>Thu, 01 Jan 2015 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/an-experimental-investigation-of-variation-operators-in-reference-point-based-many-objective-optimization/</guid>
<description></description>
</item>
<item>
<title>Chinese comments sentiment classification based on word2vec and SVMperf</title>
<link>https://thu-xuhua.github.io/publication/chinese-comments-sentiment-classification-based-on-word2vec-and-svmperf/</link>
<pubDate>Thu, 01 Jan 2015 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/chinese-comments-sentiment-classification-based-on-word2vec-and-svmperf/</guid>
<description></description>
</item>
<item>
<title>Emotion Cause Detection for Chinese Micro-Blogs Based on ECOCC Model</title>
<link>https://thu-xuhua.github.io/publication/emotion-cause-detection-for-chinese-micro-blogs-based-on-ecocc-model/</link>
<pubDate>Thu, 01 Jan 2015 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/emotion-cause-detection-for-chinese-micro-blogs-based-on-ecocc-model/</guid>
<description></description>
</item>
<item>
<title>Hierarchical emotion classification and emotion component analysis on chinese micro-blog posts</title>
<link>https://thu-xuhua.github.io/publication/hierarchical-emotion-classification-and-emotion-component-analysis-on-chinese-micro-blog-posts/</link>
<pubDate>Thu, 01 Jan 2015 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/hierarchical-emotion-classification-and-emotion-component-analysis-on-chinese-micro-blog-posts/</guid>
<description></description>
</item>
<item>
<title>Implicit feature identification in Chinese reviews using explicit topic mining model</title>
<link>https://thu-xuhua.github.io/publication/implicit-feature-identification-in-chinese-reviews-using-explicit-topic-mining-model/</link>
<pubDate>Thu, 01 Jan 2015 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/implicit-feature-identification-in-chinese-reviews-using-explicit-topic-mining-model/</guid>
<description></description>
</item>
<item>
<title>A Two-Level Hierarchical EDA Using Conjugate Priori</title>
<link>https://thu-xuhua.github.io/publication/a-two-level-hierarchical-eda-using-conjugate-priori/</link>
<pubDate>Wed, 01 Jan 2014 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/a-two-level-hierarchical-eda-using-conjugate-priori/</guid>
<description></description>
</item>
<item>
<title>An Improved NSGA-III Procedure for Evolutionary Many-Objective Optimization</title>
<link>https://thu-xuhua.github.io/publication/an-improved-nsga-iii-procedure-for-evolutionary-many-objective-optimization/</link>
<pubDate>Wed, 01 Jan 2014 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/an-improved-nsga-iii-procedure-for-evolutionary-many-objective-optimization/</guid>
<description></description>
</item>
<item>
<title>Box office prediction based on microblog</title>
<link>https://thu-xuhua.github.io/publication/box-office-prediction-based-on-microblog/</link>
<pubDate>Wed, 01 Jan 2014 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/box-office-prediction-based-on-microblog/</guid>
<description></description>
</item>
<item>
<title>Constrained-hLDA for Topic Discovery in Chinese Microblogs</title>
<link>https://thu-xuhua.github.io/publication/constrained-hlda-for-topic-discovery-in-chinese-microblogs/</link>
<pubDate>Wed, 01 Jan 2014 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/constrained-hlda-for-topic-discovery-in-chinese-microblogs/</guid>
<description></description>
</item>
<item>
<title>Evolutionary Many-Objective Optimization Using Ensemble Fitness Ranking</title>
<link>https://thu-xuhua.github.io/publication/evolutionary-many-objective-optimization-using-ensemble-fitness-ranking/</link>
<pubDate>Wed, 01 Jan 2014 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/evolutionary-many-objective-optimization-using-ensemble-fitness-ranking/</guid>
<description></description>
</item>
<item>
<title>Text-based emotion classification using emotion cause extraction</title>
<link>https://thu-xuhua.github.io/publication/text-based-emotion-classification-using-emotion-cause-extraction/</link>
<pubDate>Wed, 01 Jan 2014 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/text-based-emotion-classification-using-emotion-cause-extraction/</guid>
<description></description>
</item>
<item>
<title>Implicit Feature Detection via a Constrained Topic Model and SVM</title>
<link>https://thu-xuhua.github.io/publication/implicit-feature-detection-via-a-constrained-topic-model-and-svm/</link>
<pubDate>Tue, 01 Oct 2013 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/implicit-feature-detection-via-a-constrained-topic-model-and-svm/</guid>
<description></description>
</item>
<item>
<title>A hybrid harmony search algorithm for the flexible job shop scheduling problem</title>
<link>https://thu-xuhua.github.io/publication/a-hybrid-harmony-search-algorithm-for-the-flexible-job-shop-scheduling-problem/</link>
<pubDate>Tue, 01 Jan 2013 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/a-hybrid-harmony-search-algorithm-for-the-flexible-job-shop-scheduling-problem/</guid>
<description></description>
</item>
<item>
<title>A Memetic Algorithm for the Multi-Objective Flexible Job Shop Scheduling Problem</title>
<link>https://thu-xuhua.github.io/publication/a-memetic-algorithm-for-the-multi-objective-flexible-job-shop-scheduling-problem/</link>
<pubDate>Tue, 01 Jan 2013 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/a-memetic-algorithm-for-the-multi-objective-flexible-job-shop-scheduling-problem/</guid>
<description></description>
</item>
<item>
<title>An integrated search heuristic for large-scale flexible job shop scheduling problems</title>
<link>https://thu-xuhua.github.io/publication/an-integrated-search-heuristic-for-large-scale-flexible-job-shop-scheduling-problems/</link>
<pubDate>Tue, 01 Jan 2013 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/an-integrated-search-heuristic-for-large-scale-flexible-job-shop-scheduling-problems/</guid>
<description></description>
</item>
<item>
<title>Effective search for genetic-based machine learning systems via estimation of distribution algorithms and embedded feature reduction techniques</title>
<link>https://thu-xuhua.github.io/publication/effective-search-for-genetic-based-machine-learning-systems-via-estimation-of-distribution-algorithms-and-embedded-feature-reduction-techniques/</link>
<pubDate>Tue, 01 Jan 2013 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/effective-search-for-genetic-based-machine-learning-systems-via-estimation-of-distribution-algorithms-and-embedded-feature-reduction-techniques/</guid>
<description></description>
</item>
<item>
<title>Flexible job shop scheduling using hybrid differential evolution algorithms</title>
<link>https://thu-xuhua.github.io/publication/flexible-job-shop-scheduling-using-hybrid-differential-evolution-algorithms/</link>
<pubDate>Tue, 01 Jan 2013 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/flexible-job-shop-scheduling-using-hybrid-differential-evolution-algorithms/</guid>
<description></description>
</item>
<item>
<title>Implicit feature identification via hybrid association rule mining</title>
<link>https://thu-xuhua.github.io/publication/implicit-feature-identification-via-hybrid-association-rule-mining/</link>
<pubDate>Tue, 01 Jan 2013 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/implicit-feature-identification-via-hybrid-association-rule-mining/</guid>
<description></description>
</item>
<item>
<title>Industrial Data Mining</title>
<link>https://thu-xuhua.github.io/talk/industrial-data-mining/</link>
<pubDate>Tue, 01 Jan 2013 00:00:00 +0800</pubDate>
<guid>https://thu-xuhua.github.io/talk/industrial-data-mining/</guid>
<description><p>Course Classification: Public Elective Courses of Tsinghua University</p>
<p>Lecturer: Hua Xu</p>
<p>Target Audience: All Graduate and Undergraduate Students</p>
<p>Teaching Time:2013 - Today</p>
</description>
</item>
<item>
<title>Effective search for Pittsburgh learning classifier systems via estimation of distribution algorithms</title>
<link>https://thu-xuhua.github.io/publication/effective-search-for-pittsburgh-learning-classifier-systems-via-estimation-of-distribution-algorithms/</link>
<pubDate>Sun, 01 Jan 2012 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/effective-search-for-pittsburgh-learning-classifier-systems-via-estimation-of-distribution-algorithms/</guid>
<description></description>
</item>
<item>
<title>Weakness Finder: Find product weakness from Chinese reviews by using aspects based sentiment analysis</title>
<link>https://thu-xuhua.github.io/publication/weakness-finder/</link>
<pubDate>Sun, 01 Jan 2012 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/weakness-finder/</guid>
<description></description>
</item>
<item>
<title>A heuristic-based hybrid genetic-variable neighborhood search algorithm for task scheduling in heterogeneous multiprocessor system</title>
<link>https://thu-xuhua.github.io/publication/a-heuristic-based-hybrid-genetic-variable-neighborhood-search-algorithm-for-task-scheduling-in-heterogeneous-multiprocessor-system/</link>
<pubDate>Sat, 01 Jan 2011 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/a-heuristic-based-hybrid-genetic-variable-neighborhood-search-algorithm-for-task-scheduling-in-heterogeneous-multiprocessor-system/</guid>
<description></description>
</item>
<item>
<title>An Elman neural network-based model for predicting anti-germ performances and ingredient levels with limited experimental data</title>
<link>https://thu-xuhua.github.io/publication/an-elman-neural-network-based-model-for-predicting-anti-germ-performances-and-ingredient-levels-with-limited-experimental-data/</link>
<pubDate>Sat, 01 Jan 2011 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/an-elman-neural-network-based-model-for-predicting-anti-germ-performances-and-ingredient-levels-with-limited-experimental-data/</guid>
<description></description>
</item>
<item>
<title>Clustering Product Features for Opinion Mining</title>
<link>https://thu-xuhua.github.io/publication/clustering-product-features-for-opinion-mining/</link>
<pubDate>Sat, 01 Jan 2011 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/clustering-product-features-for-opinion-mining/</guid>
<description></description>
</item>
<item>
<title>Constrained LDA for Grouping Product Features in Opinion Mining</title>
<link>https://thu-xuhua.github.io/publication/constrained-lda-for-grouping-product-features-in-opinion-mining/</link>
<pubDate>Sat, 01 Jan 2011 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/constrained-lda-for-grouping-product-features-in-opinion-mining/</guid>
<description></description>
</item>
<item>
<title>Exploiting effective features for Chinese sentiment classification</title>
<link>https://thu-xuhua.github.io/publication/exploiting-effective-features-for-chinese-sentiment-classification/</link>
<pubDate>Sat, 01 Jan 2011 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/exploiting-effective-features-for-chinese-sentiment-classification/</guid>
<description></description>
</item>
<item>
<title>Identifying Evaluative Sentences in Online Discussions</title>
<link>https://thu-xuhua.github.io/publication/identifying-evaluative-sentences-in-online-discussions/</link>
<pubDate>Sat, 01 Jan 2011 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/identifying-evaluative-sentences-in-online-discussions/</guid>
<description></description>
</item>
<item>
<title>Questionnaires-based skin attribute prediction using Elman neural network</title>
<link>https://thu-xuhua.github.io/publication/questionnaires-based-skin-attribute-prediction-using-elman-neural-network/</link>
<pubDate>Sat, 01 Jan 2011 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/questionnaires-based-skin-attribute-prediction-using-elman-neural-network/</guid>
<description></description>
</item>
<item>
<title>Task scheduling using Bayesian optimization algorithm for heterogeneous computing environments</title>
<link>https://thu-xuhua.github.io/publication/task-scheduling-using-bayesian-optimization-algorithm-for-heterogeneous-computing-environments/</link>
<pubDate>Sat, 01 Jan 2011 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/task-scheduling-using-bayesian-optimization-algorithm-for-heterogeneous-computing-environments/</guid>
<description></description>
</item>
<item>
<title>Data Mining: Methods and Applications</title>
<link>https://thu-xuhua.github.io/talk/data-mining-method-and-application/</link>
<pubDate>Sat, 01 Jan 2011 00:00:00 +0800</pubDate>
<guid>https://thu-xuhua.github.io/talk/data-mining-method-and-application/</guid>
<description><p>Course Classification: Public Elective Courses of Tsinghua University</p>
<p>Lecturer: Hua Xu</p>
<p>Target Audience: All Undergraduate Students</p>
<p>Teaching Time:2011 - Today</p>
</description>
</item>
<item>
<title>Grouping Product Features Using Semi-Supervised Learning with Soft-Constraints</title>
<link>https://thu-xuhua.github.io/publication/grouping-product-features-using-semi-supervised-learning-with-soft-constraints/</link>
<pubDate>Sun, 01 Aug 2010 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/grouping-product-features-using-semi-supervised-learning-with-soft-constraints/</guid>
<description></description>
</item>
<item>
<title>A Heuristic-Based Hybrid Genetic Algorithm for Heterogeneous Multiprocessor Scheduling</title>
<link>https://thu-xuhua.github.io/publication/a-heuristic-based-hybrid-genetic-algorithm-for-heterogeneous-multiprocessor-scheduling/</link>
<pubDate>Fri, 01 Jan 2010 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/a-heuristic-based-hybrid-genetic-algorithm-for-heterogeneous-multiprocessor-scheduling/</guid>
<description></description>
</item>
<item>
<title>An Empirical Study of Unsupervised Sentiment Classification of Chinese Reviews</title>
<link>https://thu-xuhua.github.io/publication/an-empirical-study-of-unsupervised-sentiment-classification-of-chinese-reviews/</link>
<pubDate>Fri, 01 Jan 2010 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/an-empirical-study-of-unsupervised-sentiment-classification-of-chinese-reviews/</guid>
<description></description>
</item>
<item>
<title>Effective Structure Learning for EDA via L1-Regularizedbayesian Networks</title>
<link>https://thu-xuhua.github.io/publication/effective-structure-learning-for-eda-via-l1-regularizedbayesian-networks/</link>
<pubDate>Fri, 01 Jan 2010 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/effective-structure-learning-for-eda-via-l1-regularizedbayesian-networks/</guid>
<description></description>
</item>
<item>
<title>Feature Subsumption for Sentiment Classification in Multiple Languages</title>
<link>https://thu-xuhua.github.io/publication/feature-subsumption-for-sentiment-classification-in-multiple-languages/</link>
<pubDate>Fri, 01 Jan 2010 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/feature-subsumption-for-sentiment-classification-in-multiple-languages/</guid>
<description></description>
</item>
<item>
<title>Balancing Convergence and Diversity in Decomposition-Based Many-Objective Optimizers</title>
<link>https://thu-xuhua.github.io/publication/balancing-convergence-and-diversity-in-decomposition-based-many-objective-optimizers/</link>
<pubDate>Mon, 31 Aug 2009 15:24:04 +0800</pubDate>
<guid>https://thu-xuhua.github.io/publication/balancing-convergence-and-diversity-in-decomposition-based-many-objective-optimizers/</guid>
<description></description>
</item>
<item>
<title>Cross Entropy and Adaptive Variance Scaling in Continuous EDA</title>
<link>https://thu-xuhua.github.io/publication/cross-entropy-and-adaptive-variance-scaling-in-continuous-eda/</link>
<pubDate>Mon, 01 Jan 2007 00:00:00 +0000</pubDate>
<guid>https://thu-xuhua.github.io/publication/cross-entropy-and-adaptive-variance-scaling-in-continuous-eda/</guid>
<description></description>
</item>
<item>
<title>Data Strcture</title>
<link>https://thu-xuhua.github.io/talk/data-structure-cs/</link>
<pubDate>Mon, 01 Jan 2001 00:00:00 +0800</pubDate>
<guid>https://thu-xuhua.github.io/talk/data-structure-cs/</guid>
<description><p>Course Classification: Tsinghua University Computer Department Undergraduate Professional Basic Course</p>
<p>Lecturer:Junhui Deng</p>
<p>Target Audience: Computer Science Undergraduate</p>
<p>Teaching Time:2001 - 2006</p>
</description>
</item>
<item>
<title>Data Strcture</title>
<link>https://thu-xuhua.github.io/talk/data-structure/</link>
<pubDate>Mon, 01 Jan 2001 00:00:00 +0800</pubDate>
<guid>https://thu-xuhua.github.io/talk/data-structure/</guid>
<description><p>Course Classification: Public Elective Courses of Tsinghua University</p>