-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnlp-nocera_journals.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 487.
1844 lines (1844 loc) · 154 KB
/
nlp-nocera_journals.csv
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
id term label count
0 Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics) relevant 316
1 CEUR Workshop Proceedings relevant 158
2 Advances in Intelligent Systems and Computing relevant 112
3 Journal of Biomedical Informatics 110
4 BMC Bioinformatics 106
5 ACM International Conference Proceeding Series 103
6 Communications in Computer and Information Science relevant 71
7 Studies in Health Technology and Informatics 50
8 IEEE Access relevant 41
9 Bioinformatics 38
10 Expert Systems with Applications relevant 37
11 Journal of the American Medical Informatics Association 32
12 Procedia Computer Science 31
13 International Conference on Information and Knowledge Management, Proceedings 30
14 IEEE/ACM Transactions on Computational Biology and Bioinformatics 28
15 PLoS ONE 22
16 Knowledge-Based Systems relevant 22
17 IEEE Transactions on Knowledge and Data Engineering relevant 20
18 Proceedings of the ACM SIGKDD International Conference on Knowledge Discovery and Data Mining 19
19 International Journal of Medical Informatics 18
20 Information Sciences relevant 17
21 Information Processing and Management relevant 15
22 Database relevant 15
23 BMC Medical Informatics and Decision Making 15
24 Briefings in Bioinformatics 15
25 Frontiers in Artificial Intelligence and Applications relevant 14
26 Smart Innovation, Systems and Technologies relevant 14
27 Journal of Physics: Conference Series 14
28 Decision Support Systems relevant 13
29 Data and Knowledge Engineering relevant 13
30 Journal of Medical Internet Research 13
31 Journal of Computational Information Systems relevant 12
32 Journal of Biomedical Semantics 12
33 AMIA ... Annual Symposium proceedings / AMIA Symposium. AMIA Symposium 12
34 Information (Switzerland) relevant 12
35 Artificial Intelligence in Medicine 12
36 Lecture Notes in Electrical Engineering 11
37 Lecture Notes in Business Information Processing 11
38 Journal of the Association for Information Science and Technology relevant 11
39 Lecture Notes in Networks and Systems 10
40 Computer Methods and Programs in Biomedicine 10
41 Proceedings of the ACM Symposium on Applied Computing 10
42 Journal of the American Society for Information Science and Technology relevant 9
43 Artificial Intelligence Review 9
44 Proceedings - IEEE International Conference on Data Mining, ICDM relevant 9
45 Journal of Theoretical and Applied Information Technology relevant 9
46 IEEE International Conference on Data Mining Workshops, ICDMW 9
47 Journal of Advanced Research in Dynamical and Control Systems relevant 9
48 Methods in Molecular Biology 9
49 PLoS Computational Biology 9
50 Journal of Intelligent Information Systems relevant 8
51 Proceedings - 2019 IEEE International Conference on Bioinformatics and Biomedicine, BIBM 2019 8
52 Journal of Cheminformatics 8
53 Advances in Intelligent and Soft Computing 8
54 Multimedia Tools and Applications relevant 8
55 Proceedings of the ACM/IEEE Joint Conference on Digital Libraries 8
56 Lecture Notes in Artificial Intelligence (Subseries of Lecture Notes in Computer Science) 8
57 IOP Conference Series: Materials Science and Engineering 8
58 International Journal of Innovative Technology and Exploring Engineering relevant 8
59 International Conference Recent Advances in Natural Language Processing, RANLP 8
60 Pacific Symposium on Biocomputing 8
61 Proceedings of the 10th International Conference on Language Resources and Evaluation, LREC 2016 7
62 IFIP Advances in Information and Communication Technology 7
63 LREC 2018 - 11th International Conference on Language Resources and Evaluation 7
64 Intelligent Data Analysis relevant 7
65 Neurocomputing relevant 7
66 Proceedings of the International Joint Conference on Neural Networks 7
67 Journal of Digital Information Management relevant 7
68 Proceedings - International Computer Software and Applications Conference 7
69 Studies in Computational Intelligence relevant 7
70 Future Generation Computer Systems relevant 7
71 Neural Computing and Applications relevant 7
72 Industrial Management and Data Systems relevant 7
73 Automation in Construction 7
74 Soft Computing relevant 7
75 IEEE Journal of Biomedical and Health Informatics 7
76 IEICE Transactions on Information and Systems relevant 7
77 Proceedings - 2019 IEEE International Conference on Big Data, Big Data 2019 6
78 Social Network Analysis and Mining relevant 6
79 Proceedings of the Annual Hawaii International Conference on System Sciences 6
80 Proceedings - 2018 IEEE International Conference on Big Data, Big Data 2018 6
81 KDIR 2010 - Proceedings of the International Conference on Knowledge Discovery and Information Retrieval 6
82 Journal of Chemical Information and Modeling 6
83 Journal of Bioinformatics and Computational Biology 6
84 Procesamiento de Lenguaje Natural relevant 6
85 Technological Forecasting and Social Change 6
86 Proceedings of the International Conference on Artificial Intelligence and Law 6
87 Wiley Interdisciplinary Reviews: Data Mining and Knowledge Discovery relevant 6
88 Journal of King Saud University - Computer and Information Sciences relevant 6
89 Proceedings - 2015 IEEE International Conference on Big Data, IEEE Big Data 2015 6
90 Proceedings - International Conference on Software Engineering 6
91 Proceedings - 2018 IEEE International Conference on Bioinformatics and Biomedicine, BIBM 2018 6
92 Sustainability (Switzerland) 6
93 Conferences in Research and Practice in Information Technology Series relevant 6
94 Knowledge and Information Systems relevant 6
95 Studies in Classification, Data Analysis, and Knowledge Organization 5
96 ACM Transactions on Information Systems relevant 5
97 Proceedings - 2015 IEEE International Conference on Bioinformatics and Biomedicine, BIBM 2015 5
98 Journal of Digital Imaging 5
99 Advanced Engineering Informatics 5
100 Tien Tzu Hsueh Pao/Acta Electronica Sinica 5
101 Proceedings of the 5th International Conference on Language Resources and Evaluation, LREC 2006 5
102 Proceedings - 2019 8th International Congress on Advanced Applied Informatics, IIAI-AAI 2019 5
103 Frontiers in Neuroinformatics 5
104 Computers in Biology and Medicine 5
105 2015 Americas Conference on Information Systems, AMCIS 2015 5
106 Proceedings of the ASME Design Engineering Technical Conference 5
107 Proceedings - International Conference on Tools with Artificial Intelligence, ICTAI 5
108 Lecture Notes of the Institute for Computer Sciences, Social-Informatics and Telecommunications Engineering, LNICST 5
109 Scientometrics relevant 5
110 Computational Intelligence relevant 5
111 Computational Linguistics relevant 5
112 Encyclopedia of Bioinformatics and Computational Biology: ABC of Bioinformatics 5
113 Applied Clinical Informatics 5
114 International Journal of Recent Technology and Engineering relevant 5
115 KDIR 2014 - Proceedings of the International Conference on Knowledge Discovery and Information Retrieval 5
116 Engineering Applications of Artificial Intelligence relevant 5
117 Proceedings - SocialCom/PASSAT/BigData/EconCom/BioMedCom 2013 5
118 Proceedings - 2017 IEEE International Conference on Bioinformatics and Biomedicine, BIBM 2017 5
119 International Journal on Semantic Web and Information Systems relevant 4
120 Pattern Recognition Letters relevant 4
121 International Journal of Applied Engineering Research relevant 4
122 Turkish Journal of Electrical Engineering and Computer Sciences relevant 4
123 Expert Systems relevant 4
124 Information Systems relevant 4
125 Proceedings - 2016 IEEE International Conference on Big Data, Big Data 2016 4
126 Proceedings of the 9th International Conference on Language Resources and Evaluation, LREC 2014 4
127 IJCAI International Joint Conference on Artificial Intelligence 4
128 Synthesis Lectures on Human Language Technologies relevant 4
129 International Journal of Engineering and Advanced Technology relevant 4
130 Journal of Intelligent and Fuzzy Systems relevant 4
131 Applied Sciences (Switzerland) 4
132 Language Resources and Evaluation relevant 4
133 International Journal of Engineering and Technology(UAE) relevant 4
134 LREC 2020 - 12th International Conference on Language Resources and Evaluation, Conference Proceedings 4
135 Proceedings of SPIE - The International Society for Optical Engineering 4
136 Lecture Notes on Data Engineering and Communications Technologies relevant 4
137 2018 International Conference on Artificial Intelligence and Data Processing, IDAP 2018 4
138 8th International Conference on Computing, Communications and Networking Technologies, ICCCNT 2017 4
139 Applied Intelligence 4
140 3rd International Symposium on Semantic Mining in Biomedicine, SMBM 2008 - Proceedings 4
141 BioMed Research International 4
142 KDIR 2009 - 1st International Conference on Knowledge Discovery and Information Retrieval, Proceedings 4
143 Conference Proceedings - IEEE International Conference on Systems, Man and Cybernetics 4
144 Database : the journal of biological databases and curation 4
145 ICIC Express Letters 4
146 Cluster Computing relevant 4
147 AAAI Fall Symposium - Technical Report 4
148 Computers in Industry 4
149 ACM Transactions on Intelligent Systems and Technology relevant 4
150 International Journal of Semantic Computing relevant 4
151 Journal of Information Science relevant 4
152 Proceedings of the 24th Pacific Asia Conference on Information Systems: Information Systems (IS) for the Future, PACIS 2020 4
153 Pacific Symposium on Biocomputing 2008, PSB 2008 4
154 Proceedings of the ACM Symposium on Document Engineering 2018, DocEng 2018 4
155 WIT Transactions on Information and Communication Technologies 4
156 Jisuanji Xuebao/Chinese Journal of Computers relevant 4
157 Proceedings - 2017 IEEE International Conference on Big Data, Big Data 2017 4
158 Natural Language Processing and Text Mining relevant 4
159 International Journal of Production Research relevant 4
160 Proceedings - 15th IEEE International Conference on Data Mining Workshop, ICDMW 2015 4
161 ACM Transactions on Management Information Systems relevant 3
162 2019 International Conference on Information and Communications Technology, ICOIACT 2019 3
163 Lecture Notes in Computer Science 3
164 2018 Systems and Information Engineering Design Symposium, SIEDS 2018 3
165 New Generation Computing relevant 3
166 International Journal of Electrical and Computer Engineering relevant 3
167 Proceedings - 2014 IEEE International Conference on Healthcare Informatics, ICHI 2014 3
168 2009 8th International Symposium on Natural Language Processing, SNLP '09 3
169 Procedia CIRP 3
170 Proceedings - 2013 IEEE/WIC/ACM International Joint Conference on Web Intelligence and Intelligent Agent Technology - Workshops, WI-IATW 2013 3
171 IEEE Transactions on Fuzzy Systems relevant 3
172 Proceedings of 2017 International Conference on Innovations in Information, Embedded and Communication Systems, ICIIECS 2017 3
173 Proceedings of the 2016 International Conference on Asian Language Processing, IALP 2016 3
174 Proceedings of the 2016 IEEE/ACM International Conference on Advances in Social Networks Analysis and Mining, ASONAM 2016 3
175 Procedia Engineering 3
176 ICWET 2010 - International Conference and Workshop on Emerging Trends in Technology 2010, Conference Proceedings 3
177 Genome Biology 3
178 Asian Journal of Information Technology relevant 3
179 JCO Clinical Cancer Informatics 3
180 Web Intelligence relevant 3
181 Test Engineering and Management 3
182 Souvenir of the 2014 IEEE International Advance Computing Conference, IACC 2014 3
183 Semantic Web: Revolutionizing Knowledge Discovery in the Life Sciences relevant 3
184 Genomics and Informatics 3
185 Xitong Gongcheng Lilun yu Shijian/System Engineering Theory and Practice relevant 3
186 IAENG International Journal of Computer Science relevant 3
187 Computers in Human Behavior relevant 3
188 International Journal of Information Technology and Decision Making relevant 3
189 Jisuanji Yanjiu yu Fazhan/Computer Research and Development relevant 3
190 Journal of Information Science and Engineering relevant 3
191 Journal of Intelligent Systems relevant 3
192 Methods of Information in Medicine 3
193 Proceedings - IEEE Symposium on Computer-Based Medical Systems 3
194 Lecture Notes in Informatics (LNI), Proceedings - Series of the Gesellschaft fur Informatik (GI) 3
195 International Journal of Computational Intelligence Systems relevant 3
196 SIGIR 2017 - Proceedings of the 40th International ACM SIGIR Conference on Research and Development in Information Retrieval 3
197 Applied Mechanics and Materials 3
198 Proceedings - International Workshop on Database and Expert Systems Applications, DEXA 3
199 Proceedings - 2010 IEEE 4th International Conference on Semantic Computing, ICSC 2010 3
200 ICCTD 2010 - 2010 2nd International Conference on Computer Technology and Development, Proceedings 3
201 International Journal of Speech Technology relevant 3
202 International Journal of Data Mining and Bioinformatics 3
203 Natural Language Engineering relevant 3
204 Concurrency Computation 3
205 International Arab Journal of Information Technology relevant 3
206 2017 International Conference on Energy, Communication, Data Analytics and Soft Computing, ICECDS 2017 3
207 Proceedings - 2016 IEEE 10th International Conference on Semantic Computing, ICSC 2016 3
208 International Journal of Scientific and Technology Research relevant 3
209 Proceedings - 2020 IEEE International Conference on Bioinformatics and Biomedicine, BIBM 2020 3
210 Advances in Science, Technology and Engineering Systems relevant 3
211 Drug Discovery Today 3
212 Journal of Internet Technology relevant 3
213 21st Saudi Computer Society National Computer Conference, NCC 2018 3
214 Arabian Journal for Science and Engineering relevant 3
215 Cognitive Computation relevant 3
216 Applied Soft Computing Journal relevant 3
217 Journal of Computer Science and Technology relevant 3
218 International Journal of Metadata, Semantics and Ontologies relevant 3
219 Computer Speech and Language relevant 3
220 IEEE Transactions on Affective Computing relevant 3
221 Document Numerique 3
222 SMBM 2014 - Proceedings of the 6th International Symposium on Semantic Mining in Biomedicine 3
223 International Conference on Electrical, Electronics, and Optimization Techniques, ICEEOT 2016 3
224 Drug Safety 3
225 2017 International Conference on Advances in Computing, Communications and Informatics, ICACCI 2017 3
226 Proceedings - 2015 IEEE International Conference on Systems, Man, and Cybernetics, SMC 2015 3
227 Proceedings of the 8th International Conference on Language Resources and Evaluation, LREC 2012 3
228 14th International World Wide Web Conference, WWW2005 3
229 Advances in Experimental Medicine and Biology 3
230 2019 Systems and Information Engineering Design Symposium, SIEDS 2019 3
231 Transactions of the Japanese Society for Artificial Intelligence relevant 3
232 Proceedings - 2013 International Symposium on Computational and Business Intelligence, ISCBI 2013 3
233 Computational Biology and Chemistry 3
234 SN Applied Sciences relevant 3
235 Enterprise Information Systems relevant 3
236 Informatica (Ljubljana) relevant 3
237 Research Synthesis Methods relevant 3
238 Information and Management relevant 3
239 Proceedings of the IEEE International Conference on Systems, Man and Cybernetics relevant 3
240 Health Informatics Journal 3
241 Handbook of Natural Language Processing, Second Edition relevant 3
242 Iberian Conference on Information Systems and Technologies, CISTI 3
243 PeerJ Computer Science 3
244 International Conference on Intelligent Systems Design and Applications, ISDA 3
245 Lecture Notes in Engineering and Computer Science 3
246 Journal of Advanced Computational Intelligence and Intelligent Informatics relevant 3
247 Mining Text Data relevant 3
248 F1000Research 3
249 Journal of Universal Computer Science relevant 3
250 2015 12th International Conference on Fuzzy Systems and Knowledge Discovery, FSKD 2015 3
251 Proceedings - 2016 IEEE International Conference on Bioinformatics and Biomedicine, BIBM 2016 3
252 IC3K 2015 - Proceedings of the 7th International Joint Conference on Knowledge Discovery, Knowledge Engineering and Knowledge Management 3
253 Indonesian Journal of Electrical Engineering and Computer Science relevant 3
254 Scientific Data relevant 3
255 ICEIS 2003 - Proceedings of the 5th International Conference on Enterprise Information Systems 3
256 Proceedings - 2016 4th International Conference on Future Internet of Things and Cloud Workshops, W-FiCloud 2016 3
257 Journal of Loss Prevention in the Process Industries 3
258 AMCIS 2017 - America's Conference on Information Systems: A Tradition of Innovation 3
259 Collaborative Filtering Using Data Mining and Analysis 2
260 Proceedings - Pacific Asia Conference on Information Systems, PACIS 2012 2
261 CiSt 2012 - Proceedings: 2012 Colloquium in Information Science and Technology 2
262 ACM Transactions on Asian and Low-Resource Language Information Processing relevant 2
263 Proceedings of the 2017 12th International Conference on Intelligent Systems and Knowledge Engineering, ISKE 2017 2
264 Computer Systems Science and Engineering relevant 2
265 WikiSym 2012 Conference Proceedings - 8th Annual International Symposium on Wikis and Open Collaboration 2
266 ACM Transactions on Multimedia Computing, Communications and Applications relevant 2
267 Evolving Systems relevant 2
268 Yearbook of medical informatics 2
269 Proceedings of the ACM Symposium on Document Engineering, DocEng 2019 2
270 HEALTHINF 2016 - 9th International Conference on Health Informatics, Proceedings; Part of 9th International Joint Conference on Biomedical Engineering Systems and Technologies, BIOSTEC 2016 2
271 Advanced Materials Research 2
272 Journal of Software relevant 2
273 BCB 2015 - 6th ACM Conference on Bioinformatics, Computational Biology, and Health Informatics 2
274 IEEE Transactions on Evolutionary Computation relevant 2
275 IFAC-PapersOnLine 2
276 Wireless Personal Communications relevant 2
277 Proceedings of the Knowledge Capture Conference, K-CAP 2017 2
278 Artificial Intelligence: Concepts, Methodologies, Tools, and Applications relevant 2
279 Journal of Cleaner Production 2
280 WEBIST 2017 - Proceedings of the 13th International Conference on Web Information Systems and Technologies 2
281 Proceedings - 2012 International Conference on Asian Language Processing, IALP 2012 2
282 Portland International Conference on Management of Engineering and Technology 2
283 Proceedings - 2014 International Conference on Intelligent Computing Applications, ICICA 2014 2
284 IEEE Transactions on Systems, Man and Cybernetics Part C: Applications and Reviews relevant 2
285 Colloquium in Information Science and Technology, CIST 2
286 Proceedings of the IEEE relevant 2
287 2016 International Conference on Information Systems, ICIS 2016 2
288 Proceedings - 2016 IEEE 17th International Conference on Information Reuse and Integration, IRI 2016 2
289 2nd International Conference on Computer Science and Engineering, UBMK 2017 2
290 Information (Japan) relevant 2
291 2017 6th International Conference on Reliability, Infocom Technologies and Optimization: Trends and Future Directions, ICRITO 2017 2
292 Knowledge-Based Bioinformatics: From Analysis to Interpretation 2
293 IEEE Transactions on Visualization and Computer Graphics 2
294 Sadhana - Academy Proceedings in Engineering Sciences relevant 2
295 2010 The 2nd International Conference on Computer and Automation Engineering, ICCAE 2010 2
296 2020 Joint 11th International Conference on Soft Computing and Intelligent Systems and 21st International Symposium on Advanced Intelligent Systems, SCIS-ISIS 2020 2
297 International Journal of Business Information Systems 2
298 Proceedings - 2017 IEEE 26th International Conference on Enabling Technologies: Infrastructure for Collaborative Enterprises, WETICE 2017 2
299 Journal of Legal Affairs and Dispute Resolution in Engineering and Construction 2
300 International Journal of Advanced Trends in Computer Science and Engineering relevant 2
301 IHI'12 - Proceedings of the 2nd ACM SIGHIT International Health Informatics Symposium 2
302 Telkomnika (Telecommunication Computing Electronics and Control) 2
303 International Journal of Pattern Recognition and Artificial Intelligence relevant 2
304 Chemical Information Mining: Facilitating Literature-Based Discovery 2
305 International Journal of Data Mining, Modelling and Management relevant 2
306 Proceedings of the 2013 IEEE/ACM International Conference on Advances in Social Networks Analysis and Mining, ASONAM 2013 2
307 World Wide Web relevant 2
308 Proceedings - 2018 IEEE 19th International Conference on Information Reuse and Integration for Data Science, IRI 2018 2
309 IET Software relevant 2
310 23rd European Conference on Information Systems, ECIS 2015 2
311 Proceedings of the 7th International Conference Confluence 2017 on Cloud Computing, Data Science and Engineering 2
312 Proceedings - UKSim-AMSS 16th International Conference on Computer Modelling and Simulation, UKSim 2014 2
313 2013 21st Signal Processing and Communications Applications Conference, SIU 2013 2
314 Innovative Document Summarization Techniques: Revolutionizing Knowledge Understanding relevant 2
315 KDIR 2011 - Proceedings of the International Conference on Knowledge Discovery and Information Retrieval 2
316 Proceedings - 2018 International Seminar on Application for Technology of Information and Communication: Creative Technology for Human Life, iSemantic 2018 2
317 Proceedings of the 2019 Federated Conference on Computer Science and Information Systems, FedCSIS 2019 2
318 IEEE International Conference on Electro Information Technology 2
319 Proceedings - 26th IEEE International Conference on Advanced Information Networking and Applications Workshops, WAINA 2012 2
320 International Journal on Document Analysis and Recognition relevant 2
321 Proceedings - 2017 5th International Conference in Software Engineering Research and Innovation, CONISOFT 2017 2
322 Statistical Analysis and Data Mining relevant 2
323 2018 9th International Conference on Information and Communication Systems, ICICS 2018 2
324 Proceedings - 18th IEEE International Conference on Machine Learning and Applications, ICMLA 2019 2
325 2015 5th International Workshop on Computer Science and Engineering: Information Processing and Control Engineering, WCSE 2015-IPCE 2
326 ICIIECS 2015 - 2015 IEEE International Conference on Innovations in Information, Embedded and Communication Systems 2
327 2015 IEEE International Conference on Computational Intelligence and Computing Research, ICCIC 2015 2
328 Proceedings - 2019 5th International Conference on Computing, Communication Control and Automation, ICCUBEA 2019 2
329 Proceedings of the 2nd International Conference on Computing Methodologies and Communication, ICCMC 2018 2
330 IEEE Conference on Intelligent Transportation Systems, Proceedings, ITSC 2
331 Journal of Cyber Security and Mobility 2
332 ACM Computing Surveys relevant 2
333 Molecular Biology Reports 2
334 IEEE Transactions on Information Technology in Biomedicine 2
335 Frontiers of Computer Science relevant 2
336 Proceedings - 18th IEEE/ACIS International Conference on Computer and Information Science, ICIS 2019 2
337 Archives of Metallurgy and Materials 2
338 2018 International Conference on Information and Communications Technology, ICOIACT 2018 2
339 Computers and Security 2
340 Proceedings of the 2013 International Conference on Advances in Computing, Communications and Informatics, ICACCI 2013 2
341 2018 8th International Conference on Computer and Knowledge Engineering, ICCKE 2018 2
342 Transportation Research Procedia 2
343 AMCIS 2016: Surfing the IT Innovation Wave - 22nd Americas Conference on Information Systems 2
344 Proceedings - International Conference on Data Engineering 2
345 Conference Proceedings - EMNLP 2015: Conference on Empirical Methods in Natural Language Processing 2
346 Methods in molecular biology (Clifton, N.J.) 2
347 Proceedings - Frontiers in Education Conference, FIE 2
348 Journal of Informetrics relevant 2
349 2017 IEEE 4th International Conference on Knowledge-Based Engineering and Innovation, KBEI 2017 2
350 International Journal on Emerging Technologies relevant 2
351 Proceedings - 2019 International Conference on Computing, Communication, and Intelligent Systems, ICCCIS 2019 2
352 International Journal of Web Information Systems relevant 2
353 2020 15th International Conference on Development and Application Systems, DAS 2020 - Proceedings 2
354 ICIS 2009 Proceedings - Thirtieth International Conference on Information Systems 2
355 Qinghua Daxue Xuebao/Journal of Tsinghua University 2
356 WEBIST 2011 - Proceedings of the 7th International Conference on Web Information Systems and Technologies 2
357 2014 International Conference on Information Communication and Embedded Systems, ICICES 2014 2
358 Data in Brief relevant 2
359 IEEE/ACM Transactions on Audio Speech and Language Processing relevant 2
360 Inteligencia Artificial relevant 2
361 Journal of Engineering Science and Technology Review relevant 2
362 Indian Journal of Science and Technology relevant 2
363 KI - Kunstliche Intelligenz 2
364 Data Mining and Knowledge Discovery relevant 2
365 NAACL HLT 2018 - 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies - Proceedings of the Conference 2
366 Communications of the ACM relevant 2
367 Proceedings - 2019 International Conference on Computer Science, Information Technology, and Electrical Engineering, ICOMITEE 2019 2
368 Proceedings of 2017 International Conference on Intelligent Computing and Control, I2C2 2017 2
369 International Conference on Information Systems 2018, ICIS 2018 2
370 IEEE Transactions on Information Forensics and Security relevant 2
371 2013 17th International Conference on System Theory, Control and Computing, ICSTCC 2013; Joint Conference of SINTES 2013, SACCS 2013, SIMSIS 2013 - Proceedings 2
372 INTER-NOISE 2019 MADRID - 48th International Congress and Exhibition on Noise Control Engineering 2
373 Methods 2
374 Proceedings - 2012 IEEE International Conference on Bioinformatics and Biomedicine, BIBM 2012 2
375 Journal of Computational and Theoretical Nanoscience 2
376 32nd AAAI Conference on Artificial Intelligence, AAAI 2018 2
377 Proceedings of the Annual Conference of the International Speech Communication Association, INTERSPEECH 2
378 AI and Society relevant 2
379 Proceedings of the International Conference on Inventive Systems and Control, ICISC 2017 2
380 SIGIR 2020 - Proceedings of the 43rd International ACM SIGIR Conference on Research and Development in Information Retrieval 2
381 Computers and Geosciences 2
382 ICETAS 2019 - 2019 6th IEEE International Conference on Engineering, Technologies and Applied Sciences 2
383 Proceedings of the European Conference on Knowledge Management, ECKM 2
384 2016 International Conference on Advances in Computing, Communications and Informatics, ICACCI 2016 2
385 Computers, Materials and Continua relevant 2
386 SIGMOD Record relevant 2
387 Association for Information Systems - 11th Americas Conference on Information Systems, AMCIS 2005: A Conference on a Human Scale 2
388 3rd International Symposium on Languages in Biology and Medicine, LBM 2009 2
389 2017 7th International Conference on Computer and Knowledge Engineering, ICCKE 2017 2
390 2016 International Conference on Information Technology for Organizations Development, IT4OD 2016 2
391 Computers and Electrical Engineering relevant 2
392 JMIR Medical Informatics 2
393 WebMedia 2017 - Proceedings of the 23rd Brazillian Symposium on Multimedia and the Web 2
394 Computational and Mathematical Methods in Medicine 2
395 BMC Medical Genomics 2
396 Mobile Networks and Applications 2
397 ICAART 2019 - Proceedings of the 11th International Conference on Agents and Artificial Intelligence 2
398 IEEE Transactions on Cybernetics relevant 2
399 Proceedings - 2016 International Conference on Advances in Computing, Communication and Automation (Fall), ICACCA 2016 2
400 Journal of Management Information Systems relevant 2
401 Journal of Web Semantics relevant 2
402 Iranian Journal of Information Processing Management relevant 2
403 Journal of the National Institute of Information and Communications Technology relevant 2
404 Tsinghua Science and Technology relevant 2
405 International Conference on Research and Innovation in Information Systems, ICRIIS 2
406 IEEE Transactions on Professional Communication relevant 2
407 Frontiers in Pharmacology 2
408 International Journal of Multimedia and Ubiquitous Engineering 2
409 4th International Conference on the Applications of Digital Information and Web Technologies, ICADIWT 2011 2
410 International Journal of Enterprise Information Systems relevant 2
411 Proceedings - 2011 IEEE International Conference on Bioinformatics and Biomedicine, BIBM 2011 2
412 Proceedings - 2014 IEEE International Conference on Semantic Computing, ICSC 2014 2
413 Proceedings - 2017 IEEE 17th International Conference on Bioinformatics and Bioengineering, BIBE 2017 2
414 WebMedia 2016 - Proceedings of the 22nd Brazilian Symposium on Multimedia and the Web 2
415 World Academy of Science, Engineering and Technology relevant 2
416 International Journal of Environmental Research and Public Health 2
417 Proceedings of the 3rd Indian International Conference on Artificial Intelligence, IICAI 2007 2
418 Proceedings - 1st International Conference on Arabic Computational Linguistics: Advances in Arabic Computational Linguistics, ACLing 2015 2
419 ICEIS 2010 - Proceedings of the 12th International Conference on Enterprise Information Systems 2
420 ICAMS 2010 - Proceedings of 2010 IEEE International Conference on Advanced Management Science 2
421 Online Information Review relevant 2
422 Computer Science and Information Systems relevant 2
423 Empirical Software Engineering relevant 2
424 17th International Conference on Information Integration and Web-Based Applications and Services, iiWAS 2015 - Proceedings 2
425 International Journal of Grid and Distributed Computing relevant 2
426 2010 International Conference on E-Product E-Service and E-Entertainment, ICEEE2010 2
427 2013 ACM Conference on Bioinformatics, Computational Biology and Biomedical Informatics, ACM-BCB 2013 2
428 Jisuanji Jicheng Zhizao Xitong/Computer Integrated Manufacturing Systems, CIMS 2
429 Pacific Asia Conference on Information Systems, PACIS 2016 - Proceedings 2
430 Proceedings of TMBIO 2006: ACM First International Workshop on Text Mining in Bioinformatics 2
431 25th Americas Conference on Information Systems, AMCIS 2019 2
432 19th International Conference on Advances in ICT for Emerging Regions, ICTer 2019 - Proceedings 2
433 IEEE NLP-KE 2007 - Proceedings of International Conference on Natural Language Processing and Knowledge Engineering 2
434 2nd International Conference on Natural Language and Speech Processing, ICNLSP 2018 2
435 2015 International Conference on Information Systems: Exploring the Information Frontier, ICIS 2015 2
436 Cybernetics and Information Technologies 2
437 NLP-KE 2011 - Proceedings of the 7th International Conference on Natural Language Processing and Knowledge Engineering 2
438 Journal of Experimental and Theoretical Artificial Intelligence relevant 2
439 Beilstein Journal of Nanotechnology 2
440 International Journal of Mechanical Engineering and Technology relevant 2
441 CIKM 2014 - Proceedings of the 2014 ACM International Conference on Information and Knowledge Management 2
442 Proceedings - 2016 IEEE/WIC/ACM International Conference on Web Intelligence, WI 2016 2
443 41st International ACM SIGIR Conference on Research and Development in Information Retrieval, SIGIR 2018 2
444 European Journal of Molecular and Clinical Medicine 2
445 2014 4th World Congress on Information and Communication Technologies, WICT 2014 2
446 EMNLP 2009 - Proceedings of the 2009 Conference on Empirical Methods in Natural Language Processing: A Meeting of SIGDAT, a Special Interest Group of ACL, Held in Conjunction with ACL-IJCNLP 2009 2
447 International Journal on Digital Libraries relevant 2
448 Proceedings - 2009 IEEE International Conference on Bioinformatics and Biomedicine Workshops, BIBMW 2009 2
449 Pharmacogenomics 2
450 IET Conference Publications 2
451 IEEE 7th Palestinian International Conference on Electrical and Computer Engineering, PICECE 2019 2
452 Revue d'Intelligence Artificielle relevant 2
453 Modern Computational Models of Semantic Discovery in Natural Language relevant 2
454 2017 International Conference on Networks and Advances in Computational Technologies, NetACT 2017 2
455 Proceedings of IEEE/ACS International Conference on Computer Systems and Applications, AICCSA 2
456 2016 IEEE Symposium Series on Computational Intelligence, SSCI 2016 2
457 Proceedings - 2015 IEEE RIVF International Conference on Computing and Communication Technologies: Research, Innovation, and Vision for Future, IEEE RIVF 2015 2
458 Proceedings of the International Conference on Advances in Computing and Artificial Intelligence, ACAI 2011 2
459 Proceedings - 2018 IEEE/WIC/ACM International Conference on Web Intelligence, WI 2018 2
460 SISY 2013 - IEEE 11th International Symposium on Intelligent Systems and Informatics, Proceedings 2
461 Proceedings of the 2017 IEEE/ACM International Conference on Advances in Social Networks Analysis and Mining, ASONAM 2017 2
462 Business Information Review 2
463 Proceedings - 2017 IEEE 25th International Requirements Engineering Conference Workshops, REW 2017 2
464 Journal of Medical Systems 2
465 1st International Conference on Artificial Intelligence in Information and Communication, ICAIIC 2019 2
466 SIGIR'12 - Proceedings of the International ACM SIGIR Conference on Research and Development in Information Retrieval 2
467 IEEE International Conference on Fuzzy Systems 2
468 Proceedings - SocialCom 2010: 2nd IEEE International Conference on Social Computing, PASSAT 2010: 2nd IEEE International Conference on Privacy, Security, Risk and Trust 2
469 2010 IEEE International Conference on Bioinformatics and Biomedicine Workshops, BIBMW 2010 2
470 ACM IMCOM 2015 - Proceedings 2
471 31st AAAI Conference on Artificial Intelligence, AAAI 2017 2
472 2011 IEEE 3rd International Conference on Communication Software and Networks, ICCSN 2011 2
473 2013 3rd International Conference on Innovative Computing Technology, INTECH 2013 2
474 Proceedings of the 2nd International Conference on Knowledge Capture, K-CAP 2003 2
475 BIOINFORMATICS 2015 - 6th International Conference on Bioinformatics Models, Methods and Algorithms, Proceedings; Part of 8th International Joint Conference on Biomedical Engineering Systems and Technologies, BIOSTEC 2015 2
476 Proceedings of the 6th International Conference on Natural Language Processing and Knowledge Engineering, NLP-KE 2010 2
477 IFIP International Conference on Wireless and Optical Communications Networks, WOCN 2
478 KSII Transactions on Internet and Information Systems relevant 2
479 Applied Mathematics and Computation relevant 2
480 ACM-BCB 2018 - Proceedings of the 2018 ACM International Conference on Bioinformatics, Computational Biology, and Health Informatics 2
481 Proceedings of 2020 IEEE 5th Information Technology and Mechatronics Engineering Conference, ITOEC 2020 2
482 IDAP 2017 - International Artificial Intelligence and Data Processing Symposium 2
483 Proceedings - CBI 2016: 18th IEEE Conference on Business Informatics 2
484 Proceedings of the 8th International Conference on Bioinformatics and Computational Biology, BICOB 2016 2
485 "35th International Conference on Information Systems ""Building a Better World Through Information Systems"", ICIS 2014" 2
486 ACM Transactions on Asian Language Information Processing relevant 2
487 Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences 2
488 2009 International Conference on Natural Language Processing and Knowledge Engineering, NLP-KE 2009 2
489 Proceedings of the 2015 International Conference on Green Computing and Internet of Things, ICGCIoT 2015 2
490 Proceedings - International Conference on Advanced Information Networking and Applications, AINA 2
491 2016 2nd IEEE International Conference on Computer and Communications, ICCC 2016 - Proceedings 2
492 World Patent Information 2
493 Proceedings - 2012 IEEE International Symposium on Multimedia, ISM 2012 2
494 Health and Place 1
495 ISI 2010 - 2010 IEEE International Conference on Intelligence and Security Informatics: Public Safety and Security 1
496 Journal of New Music Research 1
497 2018 17th International Symposium on INFOTEH-JAHORINA, INFOTEH 2018 - Proceedings 1
498 SMBM 2012 - Proceedings of the 5th International Symposium on Semantic Mining in Biomedicine 1
499 Bulletin of Experimental Biology and Medicine 1
500 Applied Soft Computing relevant 1
501 Proceedings - 2015 IEEE/WIC/ACM International Joint Conference on Web Intelligence and Intelligent Agent Technology, WI-IAT 2015 1
502 International Journal of Accounting Information Systems relevant 1
503 Proceedings of the 4th International Conference on Contemporary Computing and Informatics, IC3I 2019 1
504 International Conference on Information Systems (ICIS 2013): Reshaping Society Through Information Systems Design 1
505 Proceedings of the 2017 2nd IEEE International Conference on Electrical, Computer and Communication Technologies, ICECCT 2017 1
506 Proceedings of the IASTED International Conference on Circuits, Signals, and Systems 1
507 Proceedings of 2011 3rd International Conference on Awareness Science and Technology, iCAST 2011 1
508 Proceedings - 2015 IEEE 14th International Conference on Machine Learning and Applications, ICMLA 2015 1
509 Proceedings of the 31st Annual International Conference of the IEEE Engineering in Medicine and Biology Society: Engineering the Future of Biomedicine, EMBC 2009 1
510 Proceedings - 12th IEEE International Conference on Data Mining Workshops, ICDMW 2012 1
511 Cataloging and Classification Quarterly 1
512 Computer Optics 1
513 Proceedings of the Interntational Workshop on Web Information and Data Management WIDM 1
514 Advanced Science Letters 1
515 EMNLP 2014 - 2014 Conference on Empirical Methods in Natural Language Processing, Proceedings of the Conference 1
516 FASEB Journal 1
517 2015 IEEE Global Conference on Signal and Information Processing, GlobalSIP 2015 1
518 Proceedings of the Interntational Workshop on Web Information and Data Management 1
519 PeerJ 1
520 Proceedings - 2011 8th IEEE International Conference on e-Business Engineering, ICEBE 2011 1
521 New Biotechnology 1
522 Proceedings of the 2015 IEEE 9th International Conference on Semantic Computing, IEEE ICSC 2015 1
523 Interdisciplinary Sciences: Computational Life Sciences 1
524 Organisms Diversity and Evolution 1
525 Proceedings of the 2017 International Conference On Big Data Analytics and Computational Intelligence, ICBDACI 2017 1
526 2014 IEEE International Inter-Disciplinary Conference on Cognitive Methods in Situation Awareness and Decision Support, CogSIMA 2014 1
527 Proceedings of the 2013 3rd International Conference on Intelligent System Design and Engineering Applications, ISDEA 2013 1
528 The Palgrave Handbook of International Cybercrime and Cyberdeviance 1
529 Proceedings - 2011 Conference on Technologies and Applications of Artificial Intelligence, TAAI 2011 1
530 International Conference on Electrical Engineering, Computer Science and Informatics (EECSI) relevant 1
531 Policy Studies Journal 1
532 Journal of Molecular Biology 1
533 International Journal of Mathematical Education in Science and Technology relevant 1
534 Proceedings of the DigitalHeritage 2013 - Federating the 19th Int'l VSMM, 10th Eurographics GCH, and 2nd UNESCO Memory of the World Conferences, Plus Special Sessions fromCAA, Arqueologica 2.0 et al. 1
535 Biomedical Engineering - Applications, Basis and Communications 1
536 ADCS 2008 - Proceedings of the Thirteenth Australasian Document Computing Symposium 1
537 2009 5th International Conference on Next Generation Web Services Practices, NWeSP 2009 1
538 Proceedings of the 2009 2nd International Conference on Biomedical Engineering and Informatics, BMEI 2009 1
539 European Journal of Clinical Pharmacology 1
540 ACM Transactions on Knowledge Discovery from Data relevant 1
541 ACM BCB 2014 - 5th ACM Conference on Bioinformatics, Computational Biology, and Health Informatics 1
542 BDCAT 2019 - Proceedings of the 6th IEEE/ACM International Conference on Big Data Computing, Applications and Technologies 1
543 2019 International Conference on Cybersecurity, ICoCSec 2019 1
544 1st International Informatics and Software Engineering Conference: Innovative Technologies for Digital Transformation, IISEC 2019 - Proceedings 1
545 Proceedings - 2014 International Workshop on Advanced Information Systems for Enterprises, IWAISE 2014 1
546 Bioinformatics for Systems Biology 1
547 Proceedings of IJCAI 2007 Workshop on Analytics for Noisy Unstructured Text Data, AND 2007 1
548 Proceedings - 2010 6th International Conference on Intelligent Information Hiding and Multimedia Signal Processing, IIHMSP 2010 1
549 PICMET 2018 - Portland International Conference on Management of Engineering and Technology: Managing Technological Entrepreneurship: The Engine for Economic Growth, Proceedings 1
550 International Journal of Data Warehousing and Mining relevant 1
551 Proceedings - 2018 7th International Congress on Advanced Applied Informatics, IIAI-AAI 2018 1
552 Proceedings - 2nd International Conference on Computational Intelligence, Modelling and Simulation, CIMSim 2010 1
553 SIGIR Forum (ACM Special Interest Group on Information Retrieval) 1
554 Proceedings of the 2020 International Conference on Mathematics and Information Technology, ICMIT 2020 1
555 Proceeding - 6th International Conference on Digital Content, Multimedia Technology and Its Applications, IDC2010 1
556 2nd International Conference on Bioinformatics and Computational Biology 2010, BICoB 2010 1
557 ACM Transactions on Software Engineering and Methodology 1
558 2018 5th International Conference on Social Networks Analysis, Management and Security, SNAMS 2018 1
559 Journal of Engineering Science and Technology relevant 1
560 2017 Internet Technologies and Applications, ITA 2017 - Proceedings of the 7th International Conference 1
561 Proceedings of the 2013 IEEE 14th International Conference on Information Reuse and Integration, IEEE IRI 2013 1
562 2nd IEEE Conference on Energy Internet and Energy System Integration, EI2 2018 - Proceedings 1
563 Proceedings - 2020 IEEE International Conference on Big Data and Smart Computing, BigComp 2020 1
564 ASEE Annual Conference and Exposition, Conference Proceedings 1
565 Proceedings - 2017 International Conference on Computational Science and Computational Intelligence, CSCI 2017 1
566 IET Seminar Digest 1
567 Proceeding of 2015 1st International Conference on Wireless and Telematics, ICWT 2015 1
568 Proceedings of the 2011 11th IEEE International Conference on Advanced Learning Technologies, ICALT 2011 1
569 BioMetals 1
570 Proceedings of 2016 SAI Computing Conference, SAI 2016 1
571 2017 Intelligent Systems Conference, IntelliSys 2017 1
572 Computer Science Research Notes 1
573 European Journal of Cancer Prevention 1
574 INISTA 2012 - International Symposium on INnovations in Intelligent SysTems and Applications 1
575 TEM Journal 1
576 ICEIS 2006 - 8th International Conference on Enterprise Information Systems, Proceedings 1
577 2017 2nd International Conference on Image, Vision and Computing, ICIVC 2017 1
578 Automating Open Source Intelligence: Algorithms for OSINT 1
579 ScienceCloud 2014 - Proceedings of the 2014 ACM International Workshop on Scientific Cloud Computing, Co-located with HPDC 2014 1
580 Communications of the Association for Information Systems relevant 1
581 IMETI 2010 - 3rd International Multi-Conference on Engineering and Technological Innovation, Proceedings 1
582 5th International Conference on Bioinformatics and Biomedical Engineering, iCBBE 2011 1
583 Proceedings of the 1st International Conference on Semantic Web and Databases, SWDB 2003 1
584 Proceedings of the 2012 International Conference on Artificial Intelligence, ICAI 2012 1
585 Proceedings of the 2012 IEEE 16th International Conference on Computer Supported Cooperative Work in Design, CSCWD 2012 1
586 Drug Discovery Today: BIOSILICO 1
587 EMNLP-IJCNLP 2019 - 2019 Conference on Empirical Methods in Natural Language Processing and 9th International Joint Conference on Natural Language Processing, Proceedings of the Conference 1
588 Proceedings of the 3rd International Web Science Conference, WebSci 2011 1
589 ICAC 2018 - 2018 24th IEEE International Conference on Automation and Computing: Improving Productivity through Automation and Computing 1
590 Proceedings of the IASTED International Conference on Artificial Intelligence and Applications, AIA 2007 1
591 10th International Workshop for Technical, Economic and Legal Aspects of Business Models for Virtual Goods, VIRTUAL GOODS + ODRL 2012, Incorporating the 8th W3C ODRL Community Group Meeting 1
592 Proceedings of the VLDB Endowment relevant 1
593 Proceedings - 2016 World Symposium on Computer Applications and Research, WSCAR 2016 1
594 3rd International Conference on Innovative Computing Information and Control, ICICIC'08 1
595 Online (Wilton, Connecticut) relevant 1
596 Proceedings - 2017 IEEE 24th International Conference on Web Services, ICWS 2017 1
597 Proceedings - UKSim-AMSS 17th International Conference on Computer Modelling and Simulation, UKSim 2015 1
598 ICACTE 2010 - 2010 3rd International Conference on Advanced Computer Theory and Engineering, Proceedings relevant 1
599 IAES International Journal of Artificial Intelligence relevant 1
600 RecSys 2017 - Proceedings of the 11th ACM Conference on Recommender Systems 1
601 Proceedings - 2019 1st International Conference on Artificial Intelligence and Data Sciences, AiDAS 2019 1
602 Current protocols in bioinformatics / editoral board, Andreas D. Baxevanis ... [et al.] 1
603 Proceedings - 2018 6th International Istanbul Smart Grids and Cities Congress and Fair, ICSG 2018 1
604 Materials Today Communications 1
605 IET Intelligent Transport Systems relevant 1
606 PACLIC 24 - Proceedings of the 24th Pacific Asia Conference on Language, Information and Computation 1
607 ICCE 2018 - 26th International Conference on Computers in Education, Main Conference Proceedings 1
608 Applied Natural Language Processing: Identification, Investigation and Resolution relevant 1
609 WEBIST 2014 - Proceedings of the 10th International Conference on Web Information Systems and Technologies 1
610 2018 15th International Conference on Service Systems and Service Management, ICSSSM 2018 1
611 Neural Networks relevant 1
612 FUSION 2014 - 17th International Conference on Information Fusion 1
613 26th International World Wide Web Conference 2017, WWW 2017 Companion 1
614 Proceedings - 2013 IEEE International Conference on Systems, Man, and Cybernetics, SMC 2013 1
615 Zhongguo yi liao qi xie za zhi = Chinese journal of medical instrumentation 1
616 Journal of Data and Information Science relevant 1
617 Proceedings - 2019 34th IEEE/ACM International Conference on Automated Software Engineering, ASE 2019 1
618 NAACL HLT 2015 - 2015 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Proceedings of the Conference 1
619 2017 IEEE 14th International Scientific Conference on Informatics, INFORMATICS 2017 - Proceedings 1
620 Proceedings of the International Conference on IoT in Social, Mobile, Analytics and Cloud, I-SMAC 2017 1
621 Current Topics in Medicinal Chemistry 1
622 Proceedings - 2015 5th International Conference on Communication Systems and Network Technologies, CSNT 2015 1
623 Proceedings of the International Conference on Inventive Communication and Computational Technologies, ICICCT 2017 1
624 Journal of Psychiatric Research 1
625 Journal of Cardiovascular Translational Research 1
626 Proceedings of the 2013 SIAM International Conference on Data Mining, SDM 2013 1
627 Proceedings - 2nd International Conference on Knowledge and Systems Engineering, KSE 2010 1
628 Neuroinformatics relevant 1
629 Recent Advances in Slavonic Natural Language Processing 1
630 Proceedings of the International Conference on Smart Systems and Inventive Technology, ICSSIT 2018 1
631 PICMET 2017 - Portland International Conference on Management of Engineering and Technology: Technology Management for the Interconnected World, Proceedings 1
632 Historical Methods 1
633 2013 International Conference on Informatics, Electronics and Vision, ICIEV 2013 1
634 Data Base for Advances in Information Systems relevant 1
635 Proceedings of 2016 IEEE International Conference on Cloud Computing and Big Data Analysis, ICCCBDA 2016 1
636 Proceedings of the IADIS International Conference WWW/Internet 2009, ICWI 2009 1
637 Proceedings of the International MultiConference of Engineers and Computer Scientists 2010, IMECS 2010 1
638 Proceedings - 2011 IEEE International Conference on Granular Computing, GrC 2011 1
639 2013 IEEE 3rd International Conference on Computational Advances in Bio and Medical Sciences, ICCABS 2013 1
640 2012 Military Communications and Information Systems Conference, MCC 2012 1
641 Journal of Interactive Marketing 1
642 Proceedings of the 2013 IEEE Symposium on Computational Intelligence and Data Mining, CIDM 2013 - 2013 IEEE Symposium Series on Computational Intelligence, SSCI 2013 1
643 Electrochemistry Communications 1
644 ICSOFT 2018 - Proceedings of the 13th International Conference on Software Technologies 1
645 International Journal of Bioinformatics Research and Applications 1
646 Proceedings of the 24th Australian Computer-Human Interaction Conference, OzCHI 2012 1
647 2nd International Conference on Circuits, Controls, and Communications, CCUBE 2017 - Proceedings 1
648 Sociological Methods and Research 1
649 Big Data and Cognitive Computing relevant 1
650 WITS 2013 - 23rd Workshop on Information Technology and Systems: Leveraging Big Data Analytics for Societal Benefits 1
651 International Journal of Industrial Engineering : Theory Applications and Practice relevant 1
652 Journal of Machine Learning Research relevant 1
653 9th International Symposium on Image and Signal Processing and Analysis, ISPA 2015 1
654 IEEE Transactions on Systems, Man, and Cybernetics Part A:Systems and Humans relevant 1
655 Profesional de la Informacion 1
656 Nippon Hoshasen Gijutsu Gakkai zasshi 1
657 Proceedings of the International Conference on E-Health, EH 2017 - Part of the Multi Conference on Computer Science and Information Systems 2017 1
658 Proceedings - 2017 International Conference on Frontiers of Information Technology, FIT 2017 1
659 Journal of Cloud Computing relevant 1
660 International Journal of Digital Crime and Forensics 1
661 Proceedings of the 6th Workshop on Geographic Information Retrieval, GIR'10 1
662 Proceedings - 2004 IEEE International Conference on Services Computing, SCC 2004 1
663 Leading Edge relevant 1
664 Proceedings - International Conference on Research Challenges in Information Science 1
665 2014 9th International Conference on Intelligent Systems: Theories and Applications, SITA 2014 1
666 Journal of Information Hiding and Multimedia Signal Processing 1
667 EMNLP 2013 - 2013 Conference on Empirical Methods in Natural Language Processing, Proceedings of the Conference 1
668 Proceedings - 2020 IEEE/ACM 13th International Conference on Utility and Cloud Computing, UCC 2020 1
669 16th International Conference on Advances in ICT for Emerging Regions, ICTer 2016 - Conference Proceedings 1
670 Proceedings of the International Conference on Inventive Communication and Computational Technologies, ICICCT 2018 1
671 IEEE International Conference on Program Comprehension 1
672 International Journal of Applied Mathematics and Statistics relevant 1
673 ICTIR 2016 - Proceedings of the 2016 ACM International Conference on the Theory of Information Retrieval 1
674 Journal of Critical Reviews relevant 1
675 Information Development relevant 1
676 IEEE Transactions on Intelligent Transportation Systems 1
677 2014 9th International Conference on Digital Information Management, ICDIM 2014 1
678 Annals of Library and Information Studies 1
679 2017 IEEE SmartWorld Ubiquitous Intelligence and Computing, Advanced and Trusted Computed, Scalable Computing and Communications, Cloud and Big Data Computing, Internet of People and Smart City Innovation, SmartWorld/SCALCOM/UIC/ATC/CBDCom/IOP/SCI 2017 - Conference Proceedings 1
680 Proceedings of Artificial Intelligence and Natural Language and Information Extraction, Social Media and Web Search FRUCT Conference, AINL-ISMW FRUCT 2015 1
681 Proceedings of Sheffield SIGIR - Twenty-Seventh Annual International ACM SIGIR Conference on Research and Development in Information Retrieval 1
682 Biomedical Engineering: Concepts, Methodologies, Tools, and Applications 1
683 Electronics (Switzerland) relevant 1
684 2018 World Congress in Computer Science, Computer Engineering and Applied Computing, CSCE 2018 - Proceedings of the 2018 International Conference on Artificial Intelligence, ICAI 2018 1
685 BMC Systems Biology 1
686 5th International Conference on Information Management, ICIM 2019 1
687 International Conference on Geoinformatics 1
688 Proceedings - 2015 18th International Conference on Network-Based Information Systems, NBiS 2015 1
689 Handbook of Statistics relevant 1
690 International Multidisciplinary Scientific GeoConference Surveying Geology and Mining Ecology Management, SGEM 1
691 Proceedings - 2012 IEEE/WIC/ACM International Conference on Web Intelligence, WI 2012 1
692 Social Media for Government Services 1
693 3rd International Conference on Control, Engineering and Information Technology, CEIT 2015 1
694 Proceedings of the 33rd International Business Information Management Association Conference, IBIMA 2019: Education Excellence and Innovation Management through Vision 2020 1
695 Proceedings - 2015 20th International Conference on Control Systems and Computer Science, CSCS 2015 1
696 2019 IEEE 2nd International Conference on Information and Computer Technologies, ICICT 2019 1
697 Telematics and Informatics relevant 1
698 Proceedings of the 2018 International Conference on System Modeling and Advancement in Research Trends, SMART 2018 1
699 Proceedings of the 2013 10th International Joint Conference on Computer Science and Software Engineering, JCSSE 2013 1
700 2018 International Conference on Computer Engineering, Network and Intelligent Multimedia, CENIM 2018 - Proceeding 1
701 Proceedings of the International Conference on Asian Language Processing 2014, IALP 2014 1
702 Proceedings of 2020 23rd Conference of the Oriental COCOSDA International Committee for the Co-Ordination and Standardisation of Speech Databases and Assessment Techniques, O-COCOSDA 2020 1
703 Proceedings - 1st International Conference on Computing, Communication, Control and Automation, ICCUBEA 2015 1
704 International Journal of Interactive Mobile Technologies relevant 1
705 International Journal of Information and Communication Technology relevant 1
706 Ophthalmologe 1
707 2019 IEEE International Conference on Big Data and Smart Computing, BigComp 2019 - Proceedings 1
708 Proceedings - 5th IEEE International Conference on Big Data Service and Applications, BigDataService 2019, Workshop on Big Data in Water Resources, Environment, and Hydraulic Engineering and Workshop on Medical, Healthcare, Using Big Data Technologies 1
709 ICCASM 2010 - 2010 International Conference on Computer Application and System Modeling, Proceedings 1
710 GIS: Proceedings of the ACM International Symposium on Advances in Geographic Information Systems 1
711 4th IEEE International Conference on Cognitive Infocommunications, CogInfoCom 2013 - Proceedings 1
712 Science of the Total Environment 1
713 Proceedings - 2015 Asia-Pacific Conference on Computer-Aided System Engineering, APCASE 2015 1
714 Proceedings of the IEEE International Workshop on Research Issues in Data Engineering 1
715 Proceedings - International Conference on Developments in eSystems Engineering, DeSE 1
716 Current Drug Discovery 1
717 Argument and Computation relevant 1
718 JMIR Research Protocols 1
719 Proceedings of the 6th International Conference on Frontiers of Information Technology, FIT '09 1
720 2012 Annual IEEE India Conference, INDICON 2012 1
721 Proceeding - IEEE International Conference on Computing, Communication and Automation, ICCCA 2017 1
722 2020 International Conference on Information Technology Systems and Innovation, ICITSI 2020 - Proceedings 1
723 WWW 2015 Companion - Proceedings of the 24th International Conference on World Wide Web 1
724 Model Assisted Statistics and Applications relevant 1
725 Journal of Marketing 1
726 Handbook of Medical Image Computing and Computer Assisted Intervention 1
727 Proceedings of the 2nd International Conference on Inventive Research in Computing Applications, ICIRCA 2020 1
728 3rd International Conference on Pattern Analysis and Image Analysis, IPRIA 2017 1
729 2017 IEEE 19th International Conference on e-Health Networking, Applications and Services, Healthcom 2017 1
730 Studies in Fuzziness and Soft Computing relevant 1
731 Proceedings - 2010 International Conference on Asian Language Processing, IALP 2010 1
732 IATSS Research relevant 1
733 2015 International Conference on Advances in Computing, Communications and Informatics, ICACCI 2015 1
734 Journal of Services Marketing 1
735 Harbin Gongcheng Daxue Xuebao/Journal of Harbin Engineering University 1
736 Proceedings of the 21st International Conference on Software Engineering and Knowledge Engineering, SEKE 2009 1
737 International Journal of Knowledge and Systems Science relevant 1
738 Proceedings - 2017 Brazilian Conference on Intelligent Systems, BRACIS 2017 1
739 Current Opinion in Drug Discovery and Development 1
740 2006 International Conference on Computational Intelligence and Security, ICCIAS 2006 1
741 Proceedings of the 22nd International Conference on Computers in Education, ICCE 2014 1
742 PACLIC 23 - Proceedings of the 23rd Pacific Asia Conference on Language, Information and Computation 1
743 Big Data Research 1
744 INISTA 2015 - 2015 International Symposium on Innovations in Intelligent SysTems and Applications, Proceedings 1
745 2019 IEEE Intelligent Transportation Systems Conference, ITSC 2019 1
746 Recent Advances in Computer Science and Communications relevant 1
747 Journal of Healthcare Engineering 1
748 Proceedings - 2017 International Symposium on Computer Science and Intelligent Controls, ISCSIC 2017 1
749 Proceedings - 2018 IEEE Conference on Systems, Process and Control, ICSPC 2018 1
750 Logos (Netherlands) 1
751 MCCSIS'08 - IADIS Multi Conference on Computer Science and Information Systems; Proceedings of Informatics 2008 and Data Mining 2008 1
752 Proceedings of the ACM Conference on Computer and Communications Security 1
753 2012 International Conference on Innovations in Information Technology, IIT 2012 1
754 European Journal of Futures Research relevant 1
755 Journal of Genetics and Genomics 1
756 IC3K 2017 - Proceedings of the 9th International Joint Conference on Knowledge Discovery, Knowledge Engineering and Knowledge Management 1
757 ILAR Journal 1
758 Asian Journal of Pharmaceutical and Clinical Research 1
759 Web Data Mining and the Development of Knowledge-Based Decision Support Systems relevant 1
760 Proceedings of 2019 IEEE 3rd Information Technology, Networking, Electronic and Automation Control Conference, ITNEC 2019 1
761 Proceedings of 2016 IEEE International Conference on Big Data Analysis, ICBDA 2016 1
762 International Journal of Advanced Media and Communication relevant 1
763 Proceedings - 2009 International Conference on Electronic Computer Technology, ICECT 2009 1
764 Proceedings - 2019 Brazilian Conference on Intelligent Systems, BRACIS 2019 1
765 Interfaces 1
766 International Conference on Advanced Computing and Communication Technologies, ACCT 1
767 Proceedings - 9th IEEE International Conference on Big Knowledge, ICBK 2018 1
768 Journal of Healthcare Informatics Research 1
769 International Journal of Engineering Pedagogy 1
770 Australasian Physical and Engineering Sciences in Medicine 1
771 Proceedings of the 2017 Federated Conference on Computer Science and Information Systems, FedCSIS 2017 1
772 Proceedings of International Conference on Smart Systems and Technologies 2017, SST 2017 1
773 7th International Conference on Digital Information Management, ICDIM 2012 1
774 Business and Information Systems Engineering relevant 1
775 Proceedings - 2013 International Conference on Informatics and Creative Multimedia, ICICM 2013 1
776 Text Mining of Web-Based Medical Content relevant 1
777 IEEE Conference on Computatonal Intelligence and Games, CIG 1
778 2018 4th International Conference on Web Research, ICWR 2018 1
779 ICT4AWE 2016 - 2nd International Conference on Information and Communication Technologies for Ageing Well and e-Health, Proceedings 1
780 Proceedings - 2016 12th International Conference on Semantics, Knowledge and Grids, SKG 2016 1
781 ICNC-FSKD 2018 - 14th International Conference on Natural Computation, Fuzzy Systems and Knowledge Discovery 1
782 Proceedings on 2018 International Conference on Advances in Computing and Communication Engineering, ICACCE 2018 1
783 Proceedings - 2015 IEEE 1st International Conference on Big Data Computing Service and Applications, BigDataService 2015 1
784 Journal of Computer Science relevant 1
785 ACM-BCB 2016 - 7th ACM Conference on Bioinformatics, Computational Biology, and Health Informatics 1
786 2016 International Conference on Advances in Human Machine Interaction, HMI 2016 1
787 Proceedings of the 2014 International Conference on Innovative Design and Manufacturing, ICIDM 2014 1
788 Engineering relevant 1
789 International Journal of Oncology 1
790 Medical Care 1
791 BioMedical Engineering Online 1
792 2nd International Conference on Computer and Network Technology, ICCNT 2010 1
793 PLoS Biology 1
794 Proceedings of the 32nd Chinese Control and Decision Conference, CCDC 2020 1
795 Imaging Science Journal 1
796 Patient Education and Counseling 1
797 JMIR Public Health and Surveillance 1
798 Proceedings - 2018 Conference on Technologies and Applications of Artificial Intelligence, TAAI 2018 1
799 2020 International Conference on Computer Science, Engineering and Applications, ICCSEA 2020 1
800 EContent 1
801 Journal of Information and Computational Science relevant 1
802 Computational Economics 1
803 International Conference on Information Technology: Coding and Computing, ITCC 1
804 BMJ Innovations 1
805 2008 IEEE International Conference on Cybernetics and Intelligent Systems, CIS 2008 1
806 International Conference on Computing, Analytics and Security Trends, CAST 2016 1
807 Terminology relevant 1
808 Proceedings - The 7th IEEE International Conference on Advanced Learning Technologies, ICALT 2007 1
809 Proceedings of the ACM SIGMOD International Conference on Management of Data 1
810 2nd International Conference on Advances in Databases, Knowledge, and Data Applications, DBKDA 2010 1
811 Advances in Soft Computing relevant 1
812 Proceedings of the 2015 International Conference on Applied and Theoretical Computing and Communication Technology, iCATccT 2015 1
813 Proceedings of the 2010 International Conference on Information Quality, ICIQ 2010 1
814 Proceedings of the National Conference on Artificial Intelligence 1
815 International Journal of Innovation, Creativity and Change 1
816 Computational Medicine in Data Mining and Modeling 1
817 Proceedings of the 5th International Conference on Confluence 2014: The Next Generation Information Technology Summit 1
818 Engineering Science and Technology, an International Journal relevant 1
819 Ontology Learning and Population from Text: Algorithms, Evaluation and Applications relevant 1
820 International Journal of Advanced Computer Science and Applications relevant 1
821 6th International Symposium on Digital Forensic and Security, ISDFS 2018 - Proceeding 1
822 Proceedings of the 3rd International Conference on Language Resources and Evaluation, LREC 2002 1
823 ACM SIGIR 2008 - 31st Annual International ACM SIGIR Conference on Research and Development in Information Retrieval, Proceedings 1
824 2019 6th International Conference on Soft Computing and Machine Intelligence, ISCMI 2019 1
825 Proceedings of the 2012 12th International Conference on Hybrid Intelligent Systems, HIS 2012 1
826 Information Technology and People relevant 1
827 ICAART 2012 - Proceedings of the 4th International Conference on Agents and Artificial Intelligence 1
828 3rd International Symposium on Multidisciplinary Studies and Innovative Technologies, ISMSIT 2019 - Proceedings 1
829 3rd International Workshop on Realizing Artificial Intelligence Synergies in Software Engineering, RAISE 2014 - Proceedings 1
830 Proceeding of 2018 12th International Conference on Telecommunication Systems, Services, and Applications, TSSA 2018 1
831 Proceedings of the ACM International Conference on Digital Libraries 1
832 Informacion Tecnologica relevant 1
833 2013 1st International Workshop on Data Analysis Patterns in Software Engineering, DAPSE 2013 - Proceedings 1
834 International Journal of Nanomedicine 1
835 D-Lib Magazine 1
836 Chinese Control Conference, CCC 1
837 2019 IEEE International Conference on Healthcare Informatics, ICHI 2019 1
838 Journal of the American College of Radiology 1
839 International Conference on Communication Technology Proceedings, ICCT 1
840 Proceedings - 2013 IEEE International Conference on Bioinformatics and Biomedicine, IEEE BIBM 2013 1
841 Organizational Research Methods 1
842 Canadian Conference on Electrical and Computer Engineering 1
843 2009 2nd International Symposium on Knowledge Acquisition and Modeling, KAM 2009 1
844 Proceedings of the 11th IADIS International Conference Information Systems 2018, IS 2018 1
845 2011 5th International Conference on Application of Information and Communication Technologies, AICT 2011 1
846 Proceedings - 2014 IEEE/WIC/ACM International Joint Conference on Web Intelligence and Intelligent Agent Technology - Workshops, WI-IAT 2014 1
847 Proceedings of the 2012 IEEE 13th International Conference on Information Reuse and Integration, IRI 2012 1
848 Electronic Government 1
849 Food Quality and Preference 1
850 2018 International Conference on Computer and Applications, ICCA 2018 1
851 Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing, EMNLP 2018 1
852 WebMedia 2018 - Proceedings of the 24th Brazilian Symposium on Multimedia and the Web 1
853 Proceedings - 2012 IEEE International Conference on Granular Computing, GrC 2012 1
854 Proceedings 2010 IEEE International Conference on Software Engineering and Service Sciences, ICSESS 2010 1
855 Application of Information and Communication Technologies, AICT 2016 - Conference Proceedings 1
856 Proceedings - 2009 IEEE/WIC/ACM International Conference on Web Intelligence and Intelligent Agent Technology - Workshops, WI-IAT Workshops 2009 1
857 Proceedings of the 2019 IEEE 9th International Conference on Advanced Computing, IACC 2019 1
858 Proceedings - 2018 4th International Conference on Science and Technology, ICST 2018 1
859 2020 International Conference on Decision Aid Sciences and Application, DASA 2020 1
860 Microprocessors and Microsystems 1
861 International Journal of Industrial and Systems Engineering relevant 1
862 Computer Science Review relevant 1
863 Proceedings - 2017 5th International Conference on Future Internet of Things and Cloud Workshops, W-FiCloud 2017 1
864 International Journal of Biomedical Engineering and Technology 1
865 Terminology and Content Development - TKE 2005: 7th International Conference on Terminology and Knowledge Engineering 1
866 EBR - European Biopharmaceutical Review 1
867 Journal of RNA and Genomics 1
868 Resources, Conservation and Recycling 1
869 Information Resources Management Journal relevant 1
870 Upsala Journal of Medical Sciences 1
871 JCSSE 2019 - 16th International Joint Conference on Computer Science and Software Engineering: Knowledge Evolution Towards Singularity of Man-Machine Intelligence 1
872 ICECT 2010 - Proceedings of the 2010 2nd International Conference on Electronic Computer Technology 1
873 2014 1st International Conference on Computational Systems and Communications, ICCSC 2014 1
874 Proceedings - 3rd IEEE/ACM International Conference on Big Data Computing, Applications and Technologies, BDCAT 2016 1
875 International Journal of Engineering and Technology relevant 1
876 HEALTHINF 2020 - 13th International Conference on Health Informatics, Proceedings; Part of 13th International Joint Conference on Biomedical Engineering Systems and Technologies, BIOSTEC 2020 1
877 Proceedings - 2020 6th Conference on Data Science and Machine Learning Applications, CDMA 2020 1
878 Aerospace 1
879 Innovations and Advanced Techniques in Systems, Computing Sciences and Software Engineering 1
880 Proceedings - 2017 International Conference on Cyber-Enabled Distributed Computing and Knowledge Discovery, CyberC 2017 1
881 Proceedings of the IASTED International Conference on Artificial Intelligence and Applications, AIA 2014 1
882 TKE 2008: 8th International conference on Terminology and Knowledge Engineering - Managing Ontologies and Lexical Resources 1
883 EMNLP-CoNLL 2007 - Proceedings of the 2007 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning 1
884 Proceedings of the 28th International Business Information Management Association Conference - Vision 2020: Innovation Management, Development Sustainability, and Competitive Economic Growth 1
885 ICSCCW 2009 - 5th International Conference on Soft Computing, Computing with Words and Perceptions in System Analysis, Decision and Control 1
886 Journal of Mechanical Design, Transactions of the ASME 1
887 MATEC Web of Conferences 1
888 Comprehensive Biomedical Physics 1
889 DEBS 2018 - Proceedings of the 12th ACM International Conference on Distributed and Event-Based Systems 1
890 Meeting Security Challenges Through Data Analytics and Decision Support 1
891 Proceedings - IEEE 13th International Conference on Data Mining Workshops, ICDMW 2013 1
892 4th IEEE International Conference on Digital Ecosystems and Technologies - Conference Proceedings of IEEE-DEST 2010, DEST 2010 1
893 BMSD 2013 - Proceedings of the 3rd International Symposium on Business Modeling and Software Design 1
894 WAMA 2017 - Proceedings of the 2nd ACM SIGSOFT International Workshop on App Market Analytics, Co-located with FSE 2017 1
895 Journal of Organizational Computing and Electronic Commerce 1
896 2017 Conference on Information and Communication Technology, CICT 2017 1
897 KMIS 2010 - Proceedings of the International Conference on Knowledge Management and Information Sharing 1
898 Public Administration 1
899 Central Bank Review 1
900 Proceedings - 2018 1st International Conference on Data Intelligence and Security, ICDIS 2018 1
901 DocEng 2014 - Proceedings of the 2014 ACM Symposium on Document Engineering 1
902 IEEE SSCI 2011 - Symposium Series on Computational Intelligence - WACI 2011: 2011 Workshop on Affective Computational Intelligence 1
903 International Conference on Multimedia Computing and Systems -Proceedings 1
904 ICSSD 2019 - International Conference on Smart Systems and Data Science 1
905 Universal Access in the Information Society relevant 1
906 Social Indicators Research 1
907 CIE 2016: 46th International Conferences on Computers and Industrial Engineering 1
908 ASONAM 2014 - Proceedings of the 2014 IEEE/ACM International Conference on Advances in Social Networks Analysis and Mining 1
909 International Journal of Innovation Science relevant 1
910 WEBIST 2010 - Proceedings of the 6th International Conference on Web Information Systems and Technology 1
911 2016 9th International Conference on Contemporary Computing, IC3 2016 1
912 Journal of Communications Software and Systems relevant 1
913 2020 IEEE International Conference for Innovation in Technology, INOCON 2020 1
914 Proceedings - 2009 International Conference on Information Engineering and Computer Science, ICIECS 2009 1
915 UIST 2020 - Proceedings of the 33rd Annual ACM Symposium on User Interface Software and Technology 1
916 2016 IEEE Conference on Communications and Network Security, CNS 2016 1
917 ICAART 2010 - 2nd International Conference on Agents and Artificial Intelligence, Proceedings 1
918 Proceedings - 2017 7th International Annual Engineering Seminar, InAES 2017 1
919 2014 22nd Signal Processing and Communications Applications Conference, SIU 2014 - Proceedings 1
920 Information Technology Journal relevant 1
921 IEEE Transactions on Software Engineering relevant 1
922 2020 International Conference on Asian Language Processing, IALP 2020 1
923 European Accounting Review 1
924 Proceedings of the IADIS International Conference Intelligent Systems and Agents 2012, ISA 2012, IADIS European Conference on Data Mining 2012, ECDM 2012 1
925 IEEE Systems Journal relevant 1
926 Journal of healthcare information management : JHIM 1
927 Proceedings of the 2014 International Conference on Advances in Computing, Communications and Informatics, ICACCI 2014 1
928 Computer relevant 1
929 2014 17th IEEE International Conference on Intelligent Transportation Systems, ITSC 2014 1
930 Healthcare Informatics Research 1
931 Proceedings of the International Symposium on Artificial Intelligence and Signal Processing, AISP 2015 1
932 Proceedings of 2017 7th IEEE International Symposium on Microwave, Antenna, Propagation, and EMC Technologies, MAPE 2017 1
933 Proceedings - 17th IEEE/ACIS International Conference on Computer and Information Science, ICIS 2018 1
934 Pattern Recognition relevant 1
935 2012 International Conference on Computing, Communication and Applications, ICCCA 2012 1
936 Proceeding - 2017 3rd International Conference on Science in Information Technology: Theory and Application of IT for Education, Industry and Society in Big Data Era, ICSITech 2017 1
937 2017 IEEE 8th International Conference on Intelligent Computing and Information Systems, ICICIS 2017 1
938 2017 25th Signal Processing and Communications Applications Conference, SIU 2017 1
939 Proceedings of the 9th European Workshop on System Security, EuroSec 2016 1
940 Computational systems bioinformatics / Life Sciences Society. Computational Systems Bioinformatics Conference 1
941 MAICS 2008 - Proceedings of the 19th Midwest Artificial Intelligence and Cognitive Science Conference 1
942 Proceedings - 2012 8th International Conference on Semantics, Knowledge and Grids, SKG 2012 1
943 Progress in Informatics relevant 1
944 Digital Information Exchange: Pathways to Build Global Information Society 1
945 Journal of Engineering Design relevant 1
946 Annual Review of Law and Social Science 1
947 Proceedings - 2019 International Conference on Intelligent Computing, Automation and Systems, ICICAS 2019 1
948 2014 Joint 7th International Conference on Soft Computing and Intelligent Systems, SCIS 2014 and 15th International Symposium on Advanced Intelligent Systems, ISIS 2014 1
949 2013 2nd International Conference on Informatics and Applications, ICIA 2013 1
950 2019 IEEE Conference on Computational Intelligence in Bioinformatics and Computational Biology, CIBCB 2019 1
951 2020 IEEE Calcutta Conference, CALCON 2020 - Proceedings 1
952 Proceedings of the Annual International Conference of the IEEE Engineering in Medicine and Biology Society, EMBS 1
953 International Journal of Grid and Utility Computing relevant 1
954 International Journal of Computational Intelligence and Applications relevant 1
955 AIDS Care - Psychological and Socio-Medical Aspects of AIDS/HIV 1
956 Proceeding of 2019 5th International Conference on Wireless and Telematics, ICWT 2019 1
957 WSEAS Transactions on Computers relevant 1
958 Journal of Artificial Intelligence and Soft Computing Research relevant 1
959 Proceedings of CONECCT 2020 - 6th IEEE International Conference on Electronics, Computing and Communication Technologies 1
960 Emerging Technologies of Text Mining: Techniques and Applications relevant 1
961 Proceedings of the ACM SIGKDD Workshop on Visual Analytics and Knowledge Discovery, VAKD '09 1
962 SpringerBriefs in Speech Technology relevant 1
963 Proceedings on 2015 1st International Conference on Next Generation Computing Technologies, NGCT 2015 1
964 Handbook of Research on Technology Tools for Real-World Skill Development 1
965 29th Asian Conference on Remote Sensing 2008, ACRS 2008 1
966 ECIS 2013 - Proceedings of the 21st European Conference on Information Systems 1
967 Proceedings of the 8th International Conference on Advanced Computational Intelligence, ICACI 2016 1
968 2016 39th International Conference on Telecommunications and Signal Processing, TSP 2016 1
969 2020 SME Annual Conference and Expo 1
970 SIdEWayS 2019 - Proceedings of the 5th International Workshop on Social Media World Sensors 1
971 8th IEEE International Conference on Application of Information and Communication Technologies, AICT 2014 - Conference Proceedings 1
972 Biodiversity Data Journal 1
973 11th Nuclear Plant Instrumentation, Control, and Human-Machine Interface Technologies, NPIC and HMIT 2019 1
974 Innovation Discovery: Network Analysis Of Research And Invention Activity For Technology Management relevant 1
975 Proceedings of 2018 IEEE International Conference on Teaching, Assessment, and Learning for Engineering, TALE 2018 1
976 Taiwan Journal of East Asian Studies 1
977 Brain Research 1
978 Journal of Service Management 1
979 Applied Physics Reviews 1
980 IC3K 2018 - Proceedings of the 10th International Joint Conference on Knowledge Discovery, Knowledge Engineering and Knowledge Management 1
981 Proceedings - 2016 International Conference on Engineering and MIS, ICEMIS 2016 1
982 Proceedings of the 2011 IEEE International Conference on Information Reuse and Integration, IRI 2011 1
983 2018 International Conference on Bangla Speech and Language Processing, ICBSLP 2018 1
984 Proceedings of the 2008 International Conference on Data Mining, DMIN 2008 1
985 Process Safety and Environmental Protection 1
986 Proceedings - 2014 6th International Conference on Computational Intelligence and Communication Networks, CICN 2014 1
987 International Conference and Workshop on Emerging Trends in Technology 2011, ICWET 2011 - Conference Proceedings 1
988 ICAPR 2015 - 2015 8th International Conference on Advances in Pattern Recognition 1
989 2017 International Conference on Advances in Mechanical, Industrial, Automation and Management Systems, AMIAMS 2017 - Proceedings 1
990 Proceedings of the Seventh ACM SIGKDD International Conference on Knowledge Discovery and Data Mining 1
991 Proceedings - 2013 IEEE International Conference on Granular Computing, GrC 2013 1
992 European Journal of Scientific Research relevant 1
993 ACL-08: HLT - 46th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies, Proceedings of the Conference 1
994 WMSCI 2005 - The 9th World Multi-Conference on Systemics, Cybernetics and Informatics, Proceedings 1
995 Proceedings of the 3rd International Workshop on Data Science for Macro-Modeling with Financial and Economic Datasets, DSMM 2017 - In conjunction with the ACM SIGMOD/PODS Conference 1
996 Proceedings of the 2011 Conference on Intelligent Data Understanding, CIDU 2011 1
997 ICT4AgeingWell 2015 - Proceedings of the 1st International Conference on Information and Communication Technologies for Ageing Well and e-Health 1
998 Proceedings - 2011 Annual IEEE India Conference: Engineering Sustainable Solutions, INDICON-2011 1