Newer
Older
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
% Encoding: UTF-8
@article{ex1,
author = "A. Cisneros",
journal = "Astrophys. Space Sci.",
volume = 10,
pages = 87,
year = 1971
}
@article{ex2,
author = "S. Carlip and R. Vera",
journal = "Phys. Rev. D",
section = "D",
volume = 58,
pages = 011345,
year = 1998
}
@article{ex3,
author = "K. Davies and G. Brown",
journal = "J. High Energy Phys.",
pages = "JHEP12(1997)002",
year = 1997
}
@article{ex4,
author = "D. Neilson and M. Choptuik",
journal = "Class. Quantum Grav.",
volume = 17,
pages = 761,
year = 2000,
eprint = "gr-qc/9812053"
}
@unpublished{ex5,
author = "M. Harrison",
title = "Dipheomorphism-invariant manifolds",
year = 1999,
eprint = "hep-th/9909196"
}
@inbook{ex6,
author = "L. I. Dorman",
title = "Variations of Galactic Cosmic Rays",
publisher = "Moscow State University Press",
address = "Moscow",
year = 1975,
pages = 103
}
@inbook{ex7,
author = "R. Caplar and P. Kulisic",
title = "Proc. Int. Conf. on Nuclear Physics (Munich)",
publisher = "North-Holland/American Elsevier",
address = "Amsterdam",
year = 1973,
volume = 1,
pages = 517
}
@incollection{ex8,
author = "M. Morse",
title = "Supersonic beam sources",
booktitle = "Atomic Molecular and Optical Physics",
editor = "F. B. Dunning and R. Hulet",
series = "Experimental Methods in the Physical Sciences",
volume = 29,
publisher = "Academic",
address = "San Diego",
year = 1996
}
@article{bardeen1957:bcs,
author = "J. Bardeen and L. N. Cooper and J. R. Schrieffer",
journal = "Phys. Rev.",
volume = 108,
number = 5,
pages = 1175,
year = 1957
}
@article{caprio2005:coherent,
author = "M. A. Caprio",
journal = "J. Phys. A",
section = "A",
volume = 38,
number = 28,
pages = 6385,
year = 2005
}
@article{zamfir2005:132te-beta-enam04,
author = "N. V. Zamfir and others",
journal = "Eur. Phys. J. A",
section = "A",
volume = 25,
number = "s01",
issue = "s01",
year = 2005,
pages = 389
}
@book{rose1957:am,
author = "M. E. Rose",
title = "Elementary Theory of Angular Momentum",
publisher = "Wiley",
address = "New York",
year = 1957,
}
@book{dirac1958:qm,
author = "P. A. M. Dirac",
title = "The Principles of Quantum Mechanics",
series = "The International Series of Monographs on Physics",
number = 27,
edition = 4,
publisher = "Clarendon Press",
address = "Oxford",
year = 1967
}
@book{siegbahn1965:v1,
editor = "K. Siegbahn",
title = "Alpha-, Beta-, and Gamma-Ray Spectroscopy",
booktitle = "Alpha-, Beta-, and Gamma-Ray Spectroscopy",
publisher = "North-Holland",
address = "Amsterdam",
year = 1965,
volume = 1
}
@incollection{bell1965:coin-lifetime,
author = "R. E. Bell",
title = "Coincidence Techniques and the Measurement of Short Mean Lives",
editor = "K. Siegbahn",
booktitle = "Alpha-, Beta-, and Gamma-Ray Spectroscopy",
publisher = "North-Holland",
address = "Amsterdam",
year = 1965,
volume = 2,
pages = 905
}
@phdthesis{caprio2003:diss,
author = "M. A. Caprio",
school = "Yale University",
year = 2003,
eprint = "nucl-ex/0502004",
archive = "arXiv"
}
@misc{doePC,
author = "J. Doe",
year = 2006,
note = "private communication"
}
@Article{wenaus,
author = {T. Wenaus},
title = {The {HEP} {S}oftware and {C}omputing {K}nowledge {B}ase},
journal = {J. Phys.: Conf. Ser.},
year = {2017},
volume = {898},
number = {102018},
pages = {1-6},
doi = {10.1088/1742-6596/898/10/102018},
}
@Article{Briand1995,
author = {L. C. Briand and V. R. Basili and C. J. Hetmanski},
title = {Developing Interpretable Models with Optimized Set Reduction for Identifying High-Risk Software Components},
journal = {IEEE Trans. Softw. Eng.},
year = {1995},
volume = {19},
number = {11},
pages = {1028--1044},
month = nov,
__markedentry = {[marco:6]},
}
@Article{Emam2001,
author = {K. El Emam and S. Benlarbi and N. Goel and S. N. Rai},
title = {Comparing case-based reasoning classifiers for predicting high risk software components},
journal = {The Journal of Systems and Software},
year = {2001},
volume = {55},
number = {3},
pages = {301--320},
__markedentry = {[marco:6]},
}
@Article{Ganesan2000,
author = {K. Ganesan and T. M. Khoshgoftaar and E. B. Allen},
title = {Case-Based Software Quality Prediction},
journal = {INT J SOFTW ENG KNOW},
year = {2000},
volume = {10},
number = {2},
pages = {139--152},
__markedentry = {[marco:6]},
}
@Article{Khoshgoftaar1995,
author = {T. M. Khoshgoftaar and A. S. Pandya and D. L. Lanning},
title = {Application of neural networks for predicting program faults},
journal = {Annals of Software Engineering},
year = {1995},
volume = {1},
number = {1},
pages = {141--154},
__markedentry = {[marco:6]},
}
@Article{Lanubile1997,
author = {F. Lanubile and G. Visaggio},
title = {Evaluating predictive quality models derived from software measures: lessons learned},
journal = {J. Syst. Softw.},
year = {1997},
volume = {38},
number = {225--234},
__markedentry = {[marco:6]},
}
@Article{Porter1990,
author = {A. A. Porter and R. W. Selby},
title = {Empirically guided software development using metric-based classification trees},
journal = {IEEE Softw.},
year = {1990},
volume = {7},
number = {2},
pages = {46--54},
__markedentry = {[marco:6]},
}
@Article{Dwivedi2016,
author = {V. K. Dwivedi and M K. Singh},
title = {Software Defect Prediction Using Data Mining Classification Approach},
journal = {Int. J. Tech. Res. Appl.},
year = {2016},
volume = {4},
number = {6},
pages = {31--35},
__markedentry = {[marco:6]},
}
@Article{Almeida1999,
author = {M. A. De Almeida and H. Lounis and W. Melo},
title = {An investigation on the use of machine learned models for estimating software correctability},
journal = {Int. J. Softw. Eng. Knowl. Eng.},
year = {1999},
__markedentry = {[marco:6]},
}
@Article{Suresh2014,
author = {Y. Suresh and L. Kumar and S. Ku Rath},
title = {{Statistical and Machine Learning Methods for Software Fault Prediction Using CK Metric Suite: A Comparative Study}},
journal = {ISRN Software Engineering},
year = {2014},
volume = {2014},
number = {251083},
pages = {15},
__markedentry = {[marco:6]},
url = {http://dx.doi.org/10.1155/2014/251083},
}
@Article{Arisholm2010,
author = {E. Arisholm and L. C. Briand and E. B. Johannessen},
title = {A systematic and comprehensive investigation of methods to build and evaluate fault prediction models},
journal = {J. Syst. Softw.},
year = {2010},
volume = {83},
number = {1},
pages = {2--17},
__markedentry = {[marco:6]},
}
@Article{Gondra2008,
author = {I. Gondra},
title = {Applying machine learning to software fault-proneness prediction},
journal = {Journal of Systems and Software},
year = {2008},
volume = {81},
number = {1},
pages = {186--195},
__markedentry = {[marco:6]},
}
@Article{Malhotra2015,
author = {R. Malhotra},
title = {A systematic review of machine learning techniques for software fault prediction},
journal = {Appl. Soft. Comput.},
year = {2015},
volume = {27},
pages = {504--518},
__markedentry = {[marco:6]},
}
@Article{Whiteson2009,
author = {S. Whiteson and D. Whiteson},
title = {Machine learning for event selection in high energy physics},
journal = {Engineering Applications of Artificial Intelligence},
year = {2009},
volume = {22},
number = {8},
pages = {1203-1217},
month = dec,
__markedentry = {[marco:6]},
}
@Article{Denby1988,
author = {B. H. Denby},
title = {Neural networks and cellular automata in experimental high energy physics},
journal = {Comput. Phys. Commun.},
year = {1988},
volume = {49},
number = {3},
pages = {429--448},
month = jun,
__markedentry = {[marco:6]},
}
@Article{Peterson1994,
author = {C. Peterson and T. Rognvaldsson and L. Lonnbladb},
title = {JETNET 3.0—A versatile artificial neural network package},
journal = {Comput. Phys. Commun.},
year = {1994},
volume = {81},
number = {1--2},
pages = {185--220},
month = jun,
__markedentry = {[marco:6]},
}
@Article{Baldi2016,
author = {P. Baldi and K. Cranmer and T. Faucett and P. Sadowski and D. Whiteson},
title = {Parameterized neural networks for high-energy physics},
journal = {Eur. Phys. J. C.},
year = {2016},
volume = {76},
number = {235},
__markedentry = {[marco:6]},
doi = {https://doi.org/10.1140/epjc/s10052-016-4099-4},
}
@Article{Kolanoski1995,
author = {H. Kolanoski},
title = {Application of artificial neural networks in particle physics},
journal = {Nucl. Instrum. Methods Phys. Res. A},
year = {1995},
volume = {367},
number = {1--3},
pages = {14--20},
month = dec,
__markedentry = {[marco:6]},
}
@Article{Collaboration2014,
author = {The ALTAS Collaboration},
title = {A neural network clustering algorithm for the ATLAS silicon pixel detector},
journal = {J. Instrum.},
year = {2014},
volume = {9},
month = sep,
__markedentry = {[marco:6]},
}
@Article{Denby1990,
author = {B. H. Denby and M. Campbell and F. Bedeschi and N. Chriss and C. Bowers and F. Nesti},
title = {Neural Betworks for Triggering},
journal = {IEEE Trans. Nucl. Sci.},
year = {1990},
volume = {37},
number = {2},
pages = {248--254},
month = apr,
__markedentry = {[marco:6]},
}
@Article{McCabe1976,
author = {T. McCabe},
title = {A Complexity Measure},
journal = {IEEE Trans. Softw. Eng.},
year = {1976},
volume = {Se-2},
number = {4},
pages = {308--320},
month = dec,
__markedentry = {[marco:6]},
}
@Book{Halstead1977,
title = {Elements of Software Science (Operating and programming systems series)},
publisher = {Elsevier Science Inc.},
year = {1977},
author = {M. H. Halstead},
address = {New York, NY, USA},
__markedentry = {[marco:6]},
}
@Article{Chidamber1994,
author = {S. R. Chidamber and C. F. Kemerer},
title = {Metrics suite for Object Oriented Design},
journal = {IEEE Trans. Softw. Eng.},
year = {1994},
volume = {20},
number = {6},
pages = {476--493},
month = jun,
__markedentry = {[marco:6]},
}
@Article{Azar2009,
author = {D. Azar and H. Harmanani and R. Korkmaz},
title = {A hubrid heuristic approach to optimize rule-based software quality estimation models},
journal = {Inf. Softw. Technol.},
year = {2009},
volume = {51},
number = {1},
pages = {1365--1376},
month = jun,
__markedentry = {[marco:6]},
}
@Article{Xie2009,
author = {T. Xie and S. Thummalapenta and D. Lo and C. Liu},
title = {Data mining for software engineering},
journal = {IEEE Computer},
year = {2009},
volume = {42},
number = {1},
pages = {55--62},
__markedentry = {[marco:6]},
}
@Book{Hofmann2013,
title = {RapidMiner: Data Mining Use Cases and Business Analytics Applications},
publisher = {CRC Press},
year = {2013},
author = {M. Hofmann and R. Klinkenberg},
address = {Boca Raton},
__markedentry = {[marco:6]},
}
@Book{Zhao2012,
title = {R and Data Mining},
publisher = {Avademic Press},
year = {2012},
author = {Y. Zhao},
address = {San Diego},
__markedentry = {[marco:6]},
}
@Article{Hall2009,
author = {M. Hall and E. Frank and G. Holmes and B. Pfahringer and P. Reutemann and I. H. Witten},
title = {The WEKA data mining software: an update},
journal = {SIGKDD Explorations},
year = {2009},
volume = {11},
number = {1},
pages = {10--18},
__markedentry = {[marco:6]},
}
@Article{Pedregosa2011,
author = {F. Pedregosa and G. Varoquaux and A. Gramfort and V. Michel and B. Thirion and O. Grisel et al.},
title = {Scikit-learn: Machine Learning in Python},
journal = {J. Mach. Learn. Res.},
year = {2011},
volume = {12},
number = {1},
pages = {2825--2830},
__markedentry = {[marco:6]},
}
@Book{Fenton2014,
title = {Software {M}etrics: {A} {R}igorous and {P}ractical {A}pproach, Third Edition},
publisher = {CRC Press},
year = {2014},
author = {N. Fenton and J. Bieman},
edition = {third},
month = nov,
__markedentry = {[marco:6]},
}
@Article{McCabe1989,
author = {T. J. McCabe and C.W. Butler},
title = {Design Complexity Measurement and Testing},
journal = {Artificial Intelligence and Language Processing},
year = {1989},
volume = {32},
number = {12},
pages = {1415-1425},
month = dec,
__markedentry = {[marco:6]},
}
@InProceedings{Conde2017,
author = {P. P. Conde and I. S. Carrillo},
title = {Comparison of {C}lassifiers {B}ased on {N}eural {N}etworks and {S}upport {V}ector {M}achines},
booktitle = {5th {I}nternational {C}onference in {S}oftware {E}ngineering {R}esearch and {I}nnovation (CONISOFT)},
year = {2017},
month = apr,
publisher = {IEEE},
__markedentry = {[marco:6]},
doi = {10.1109/CONISOFT.2017.00020},
}
@Article{Burges1998,
author = {C. J. C. Burges},
title = {A {T}utorial on {S}upport {V}ector {M}achines for {P}attern {R}ecognition},
journal = {Data Min. Knowl. Discov.},
year = {1998},
volume = {2},
number = {2},
pages = {121-167},
month = jun,
__markedentry = {[marco:6]},
}
@Book{Haykin1999,
title = {Neural {N}etworks: {A} {C}omprehensive {F}oundation},
year = {1999},
author = {S. Haykin},
editor = {Prentice Hall International},
__markedentry = {[marco:6]},
}
@InProceedings{Vlahovic2016,
author = {N. Vlahovic},
title = {An {E}valuation {F}ramwork and a {B}rief {S}urvey of {D}ecision {T}ree {T}ools},
booktitle = {39th {I}nternational {C}onference on {I}nformation and {C}ommunication {T}echnology, {E}lettronics and {M}icroelettronics},
year = {2016},
pages = {1299-1304},
month = jun,
__markedentry = {[marco:6]},
}
@InProceedings{Liu2016,
author = {j. Liu and Z. Tian and P. Liu and J. Jiang and Z. Li},
title = {An {A}pproach of {S}ematic {W}eb {S}ervice {C}lassification {B}ased on {N}aive {B}ayes},
booktitle = {IEEE International Conference on Services Computing},
year = {2016},
pages = {356-362},
publisher = {IEEE},
__markedentry = {[marco:6]},
doi = {DOI 10.1109/SCC.2016.53},
}
@Book{Han2006,
title = {Data Mining Concepts and Techniques},
publisher = {Morgan Kauffman},
year = {2006},
author = {J. Han and M. Kamber},
__markedentry = {[marco:6]},
}
@InProceedings{Santos2014,
author = {C. N. dos Santos and M. Gatti},
title = {Deep {C}onvolutional {N}eural {N}etworks for {S}entiment {A}nalysis of {S}hort {T}exts},
booktitle = {25th International Conference on Computational Linguistics (COLING)},
year = {2014},
pages = {69-78},
month = aug,
__markedentry = {[marco:6]},
}
@InProceedings{Kim2014,
author = {Y. Kim},
title = {Convolutional {N}eural {N}etworks for {S}entence {C}lassification},
booktitle = {{C}onference on {E}mpirical {M}ethods in {N}atural {L}anguage {P}rocessing ({EMNLP})},
year = {2014},
pages = {1746-1751},
month = oct,
__markedentry = {[marco:6]},
}
@Article{Polikar2006,
author = {R. Polikar},
title = {Ensemble {B}ased {S}ystems in {D}ecision {M}aking},
journal = {{IEEE} {C}ircuits and {S}ystems {M}agazine},
year = {2006},
volume = {6},
number = {3},
pages = {21-45},
month = sep,
__markedentry = {[marco:6]},
doi = {10.1109/MCAS.2006.1688199},
}
@InProceedings{Wong2010,
author = {S. Wong and M. Aaron and J. Segall and K. Lynch and S. Mancoridis},
title = {Reverse {E}ngineering {U}tility {F}unctions using {G}enetic {P}rogramming to {D}etect {A}nomalous {B}ehavior in {S}oftware},
booktitle = {17th {W}orking {C}onference on {R}everse {E}ngineering},
year = {2010},
pages = {141-149},
publisher = {IEEE Computer Society},
__markedentry = {[marco:6]},
doi = {DOI 10.1109/WCRE.2010.23},
}
@InProceedings{Bartsch-Spoerl1999,
author = {B. Bartsch-Sp\"{o}rl and M. Lenz and A. H\"{u}bner},
title = {Case-Based Reasoning - Survey and Future Directions},
booktitle = {Lecture Notes in Artificial Intelligence},
year = {1999},
editor = {F. Puppe},
pages = {67-89},
month = mar,
publisher = {Springer},
__markedentry = {[marco:6]},
}
@Article{Ali2013,
author = {N. S. Ali and V.P. Pawar},
title = {The use of data {M}ining {T}echniques for {I}mproving {S}oftware {R}eliability},
journal = {International {J}ournal of {A}dvanced {R}esearch in {C}omputer {S}cience},
year = {2013},
volume = {4},
number = {4},
pages = {172-178},
month = mar,
__markedentry = {[marco:6]},
}
@InProceedings{Conde2013,
author = {P. P. Conde and J. de la Calleja and A. Benitez and Ma. A. Medina},
title = {Image-based classification of diabetic retinopathy using machine learning},
booktitle = {12th {I}nternational {C}onference on {I}ntelligence {S}ystem {D}esign and {A}pplications (ISDA)},
year = {2013},
pages = {826-830},
publisher = {IEEE},
__markedentry = {[marco:6]},
}
@Article{Shepperd2013,
author = {M. Shepperd and Q. Song and Z. Sun and C. Mair},
title = {Data {Q}uality: {S}ome {C}omments on the {NASA} {S}oftware {D}efect {D}atasets},
journal = {IEEE Trans. Softw. Eng.},
year = {2013},
volume = {39},
number = {9},
pages = {1208-1215},
month = sep,
__markedentry = {[marco:6]},
}
@Article{Aleem2015,
author = {S. Aleem and L. F. Capretz and F. Ahmed},
title = {{BENCHMARKING MACHINE LEARNING TECHNIQUES FOR SOFTWARE DEFECT DETECTION}},
journal = {International Journal of Software Engineering \& Applications (IJSEA)},
year = {2015},
volume = {6},
number = {3},
pages = {11-23},
month = may,
__markedentry = {[marco:6]},
}
@InProceedings{Gray2011,
author = {D. Gray and D. Bowes and N. Davey},
title = {The miuse of the {NASA} metrics data program data sets for automated software defect prediction},
booktitle = {15th {A}nnual {C}onference on {E}valuation \& {A}ssessment in {S}oftware {E}ngineering ({EASE})},
year = {2011},
publisher = {IET},
__markedentry = {[marco:6]},
doi = {10.1049/ic.2011.0012},
}
@Article{kaur,
author = {A. Kaur and I. Kaur},
title = {An empirical evaluation of classification algorithms for fault prediction in open source projects},
journal = {Journal of {K}ing {S}aud {U}niversity - {C}omputer and {I}nformation {S}ciences},
year = {2016},
volume = {30},
pages = {2-17},
month = apr,
}
@Article{taylor,
author = {Q. Taylor and C. Giraud-Carrier},
title = {Applications of data mining in software engineering},
journal = {International Journal of Data Analysis Techniques and Strategies},
year = {2010},
volume = {2},
number = {3},
pages = {243-257},
month = jul,
doi = {10.1504/IJDATS.2010.034058},
}
@Article{bengio,
author = {Y. Bengio},
title = {Learning {D}eep {A}rchitecture for {AI}},
journal = {Foundations and Trends® in Machine Learning},
year = {2009},
volume = {2},
number = {1},
pages = {1-127},
doi = {http://dx.doi.org/10.1561/2200000006},
}
@Article{lecun,
author = {Y. LeCun and Y. Bengio and G. Hinton},
title = {Deep {L}earning},
journal = {{N}ature},
year = {2015},
volume = {521},
pages = {436–444},
month = may,
}
@InProceedings{deshmukh,
author = {J. Deshmukh and K. M. Annervaz and S. Podder},
title = {Towards {A}ccurate {D}uplicate {B}ug {R}etrieval {U}sing {D}eep {L}earning {T}echniques},
booktitle = {{IEEE} {I}nternational {C}onference on {S}oftware {M}aintenance and {E}volution ({ICSME})},
year = {2017},
pages = {115-124},
publisher = {IEEE},
doi = {10.1109/ICSME.2017.69},
}
@Article{zhang,
author = {Z. Zhang and X. Jing and T. Wang},
title = {Laber propagation based semi-supervised learning for software defect prediction},
journal = {Autom. Softw. Eng.},
year = {2017},
volume = {24},
number = {1},
pages = {47-69},
month = mar,
}
@Article{song,
author = {Q. Song and Z. Jia and M. Shepperd and S. Ying and J. Liu},
title = {A {G}eneral {S}oftware {D}efect-{P}roneness {P}rediction {F}ramework},
journal = {IEEE Trans. Softw. Eng.},
year = {2011},
volume = {37},
number = {3},
pages = {356 - 370},
month = may,
}
@Article{zhou,
author = {Y. Zhou and H. Leung},
title = {Empirical {A}nalysis of {O}bject-{O}riented {D}esign {M}etrics for {P}redicting {H}igh and {L}ow {S}everity {F}aults},
journal = {IEEE TRANSACTIONS ON SOFTWARE ENGINEERING},
year = {2006},
volume = {32},
number = {10},
pages = {771-789},
month = oct,
}
@InProceedings{mccallum,
author = {A. McCallum and K. Nigam},
title = {A comparison of {E}vent {M}odels for {N}aives {B}ayes {T}ext {C}lassification},
booktitle = {Learning for Text Categorization: Papers from the 1998 {AAAI} Workshop},
year = {1998},
pages = {41--48},
url = {http://www.kamalnigam.com/papers/multinomial-aaaiws98.pdf},
}
@Book{vapnik,
title = {The {N}ature of {S}tatistical {L}earning {T}heory},
year = {2000},
author = {V.N. Vapnik},
editor = {Springer},
edition = {Second},
isbn = {978-0387987804},
}
@Book{campbell,
title = {Learning with {S}upport {V}ector {M}achine},
publisher = {Morgan \& Claypool Publishers},
year = {2011},
author = {C. Campbell and Y. Ying},
isbn = {1608456161 9781608456161},
}
@InBook{dietterich,
pages = {405--408},
title = {"Ensemble Learning" {T}he {H}andbook of {B}rain {T}heory and {N}eural {N}etworks},
year = {2002},
author = {T. G. Dietterich},
editor = {TLFeBOOK},
volume = {2},
edition = {Second},
isbn = {0-262-01197-2},
}
@InProceedings{he,
author = {Q. He and B. Shen and Y. Chen},
title = {Software {D}efect {P}rediction {U}sing {S}emi-{S}upervised {L}earning with {C}hange {B}urst {I}nformation},
booktitle = {IEEE 40th Annual Computer Software and Applications Conference ({COMPSAC})},
year = {2016},
pages = {113--122},
month = aug,
publisher = {IEEE},
doi = {10.1109/COMPSAC.2016.193},
}
@TechReport{breiman,
author = {L. Breiman},
title = {Bagging {P}redictors},
institution = {Department of Statistics, University of California, Berkley, California 94720},
year = {1994},
month = sep,
url = {https://www.stat.berkeley.edu/~breiman/bagging.pdf},
}
@Article{breiman2,
author = {L. Breiman},
title = {Random {F}orests},
journal = {Machine Learning},
year = {2001},
volume = {45},
number = {1},
pages = {5--32},
month = oct,
doi = {10.1007/978-0-387-30164-8_695},
}
@Article{freund,
author = {Y. Freund and R. E. Schapire},
title = {A {D}ecision-{T}heoretic {G}eneralization of {O}n-{L}ine {L}earning and an {A}pplication to {B}oosting},
journal = {J. Comput. Syst. Sci.},
year = {1997},
volume = {55},
pages = {119--139},
}
@InProceedings{raina,
author = {R.Raina and A. Battle and H. Lee and B. Packer and A. Y. Ng},
title = {Self-taught learning: transfer learning from unlabeled data},
booktitle = {Proceedings of the 24th international conference on Machine Learning},
year = {2007},
pages = {759--766},
doi = {10.1145/1273496.1273592},
}
@InProceedings{collobert,
author = {R. Collobert and J. Weston},
title = {A {U}nified {A}rchitecture for {N}atural {L}anguage {P}rocessing: {D}eep {N}eural {N}etworks with {M}ultitask {L}earning},
booktitle = {Proceedings of the 25th International Conference on Machine Learning},
year = {2008},
}
@TechReport{shen,
author = {V. Y. Shen and S. D. Conte},
title = {{S}oftware {S}cience {R}ivisited: {A} {C}ritical {A}nalysis of the {T}heory and Its {E}mpirical {S}upport},
institution = {Department of Computer Science - Purdue University},
year = {1981},
}
@Book{,
title = {Elements of {S}oftware {S}cience ({O}perating and programming systems series)},
publisher = {Elsevier Science},
year = {1977},
author = {M. H. Halstead},
}
@InProceedings{li,
author = {W. Li and S. Henry},
title = {Maintenance {M}etrics for the {O}bject {O}riented {P}aradigm},
booktitle = {First International Software Metrics Symposium},
year = {1993},
publisher = {IEEE},
doi = {10.1109/METRIC.1993.263801},
}
@Article{catal,
author = {C. Catal and B. Diri},
title = {A systematic review of software fault prediction studies},
journal = {Expert Systems with Applications},
year = {2009},
volume = {36},
pages = {7346--7354},
doi = {10.1016/j.eswa.2008.10.027},
}
@Article{xu,
author = {J. Xu and D. Ho and L. F. Capretz},
title = {An {E}mpirical {S}tudy on the {P}rocedure to {D}erive {S}oftware {Q}uality {E}stimation {M}odels},
journal = {International Journal of Computer Science \& Information Technology ({IJCSIT})},
year = {2010},
volume = {2},
number = {4},
pages = {1--16},
month = aug,
}
@Article{kumaresh,
author = {S. Kumaresh and R. Baskaran},
title = {Defect {A}nalysis and {P}revention for {S}oftware {P}rocess {Q}uality {I}mprovement},
journal = {International Journal of Computer Applications},
year = {2010},
volume = {8},
number = {7},
pages = {42--47},
month = oct,
}
@Article{ahmad,
author = {K. Ahmad and N. Varshney},
title = {On {M}inimizing {S}oftware {D}efects during {N}ew {P}roduct {D}evelopment {U}sing {E}nhanced {P}reventive {A}pproach},
journal = {International Journal of Soft Computing and Engineering (IJSCE)},
year = {2012},
volume = {2},
number = {5},
pages = {9--12},
}
@Article{andersson,
author = {C. Andersson},
title = {A replicated empirical study of a selection method for software reliability growth models},
journal = {Empirical Software Engineering},
year = {2007},
volume = {12},
number = {2},
pages = {161--182},
}
@Article{fenton,
author = {N. E. Fenton and N. Ohlsson},
title = {Quantitative analysis of faults and failures in a complex software system},
journal = {IEEE Trans. Softw. Eng.},
year = {2000},
volume = {26},
number = {8},
pages = {797--814},
doi = {10.1109/32.879815},
}
@InProceedings{dam,
author = {H. K. Dam and T. Tran and A. Ghose},
title = {Explainable {S}oftware {A}nalytics},
booktitle = {40th International Conference on Software Engineering: New Ideas and Emerging Results (ICSE-NIER)},
year = {2018},
pages = {53--56},
address = {New York, NY, USA},
publisher = {ACM},
doi = {10.1145/3183399.3183424},
}
@Misc{weka,
title = {Weka 3: {D}ata {M}ining {S}oftware in {J}ava},
url = {https://www.cs.waikato.ac.nz/ml/weka/},
}
@Misc{scikit,
title = {scikit-learn, {M}achine {L}earning in {P}ython},
url = {http://scikit-learn.org/stable/},
}
@Misc{r,
title = {The {R} {P}roject for {S}tatistical {C}omputing},
url = {https://www.r-project.org/},
}
@Misc{AR,
title = {Machine {L}earning \& {D}ata {M}ining {A}lgorithms},
url = {http://tunedit.org/repo/PROMISE/DefectPrediction},
}
@Misc{nasadataset,
title = {NASA {D}efect {D}ataset},
url = {https://github.com/klainfo/NASADefectDataset},
}
@Misc{eclipsedataset,
title = {Bug prediction dataset, {E}valuate your bug prediction approach on our benchmark},
url = {http://bug.inf.usi.ch},
}
@Misc{androiddataset,
url = {http://www.inf.u-szeged.hu/$\sim$ferenc/papers/GitHubBugDataSet},
}
@InProceedings{joulin,
author = {A. Joulin and T. Mikonov},
title = {Inferring algorithmic patterns with stack-augmented recurrent nets},
booktitle = {Proceedings of 28th International Conference on Neural Information Processing Systems},
year = {(2015)},
volume = {1},
pages = {190-198},
publisher = {MIT Press Cambridge, MA, USA},
comment = {arXiv:1503.01007},
}
@Article{tong,
author = {H. Tong and B. Liu and S. Wang},
title = {Software defect prediction using stacked denoising autoencoders and two-stage ensemble learning},
journal = {Information and Software Technology},
year = {2018},
volume = {96},
}
@InProceedings{canaparo,
author = {M. Canaparo and E. Ronchieri},