-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpol.json
executable file
·12381 lines (12381 loc) · 356 KB
/
pol.json
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
[
{
"author's name": "Aadharsh Aadhithya A",
"title": "Optimal Perfect Phylogeny Using ILP and Continuous Approximations.",
"gap of years": [
2020,
2024
],
"year of release": 2023,
"DBLP_Record": "conf/icacds/KumaarAKAS23",
"Awards": 0,
"kind": "conference and workshop papers",
"co-author": [
"B. E. Pranav Kumaar",
"S. Sachin Kumar",
"Harishchander Anandaram",
"K. P. Soman"
],
"surname": "A"
},
{
"author's name": "Aadharsh Aadhithya A",
"title": "Learning (With) Distributed Optimization.",
"gap of years": [
2020,
2024
],
"year of release": 2023,
"DBLP_Record": "journals/corr/abs-2308-05548",
"Awards": 0,
"kind": "Journal articles",
"co-author": [
"Abinesh S",
"Akshaya J",
"Jayanth M",
"Vishnu Radhakrishnan",
"Sowmya Vishvanathan",
"Soman K. P"
],
"surname": "A"
},
{
"author's name": "Aadhitya A",
"title": "HexE - Securing Audio Contents in Voice Chat using Puzzle and Timestamp.",
"gap of years": [
2020,
2024
],
"year of release": 2024,
"DBLP_Record": "journals/corr/abs-2401-00765",
"Awards": 2,
"kind": "Journal articles",
"co-author": [],
"surname": "A"
},
{
"author's name": "Aadhitya A",
"title": "Predicting Stock Market Time-Series Data using CNN-LSTM Neural Network Model.",
"gap of years": [
2020,
2024
],
"year of release": 2023,
"DBLP_Record": "journals/corr/abs-2305-14378",
"Awards": 0,
"kind": "Journal articles",
"co-author": [
"Rajapriya R",
"Vineetha R. S",
"Anurag M. Bagde"
],
"surname": "A"
},
{
"author's name": "Aadrika A",
"title": "Impact of Dietary Habits and Opinionated Lifestyle during COVID-19 Pandemic : A Case Study on Engineering Students.",
"gap of years": [
2020,
2024
],
"year of release": 2021,
"DBLP_Record": "journals/corr/abs-2108-04817",
"Awards": 2,
"kind": "Journal articles",
"co-author": [
"Arpitha A. Deshpande",
"Rajeshwari K",
"Preetha S"
],
"surname": "A"
},
{
"author's name": "Aaron Samuel A",
"title": "A Sequential DNN for Sentiment Analysis of Dravidian Code-Mixed Language Comments on YouTube.",
"gap of years": [
2020,
2024
],
"year of release": 2022,
"DBLP_Record": "conf/fire/AKNS22",
"Awards": 1,
"kind": "conference and workshop papers",
"co-author": [
"Lavanya Sambath Kumar",
"Subalalitha Chinnaudayar Navaneethakrishnan",
"Ratnasingam Sakuntharaj"
],
"surname": "A"
},
{
"author's name": "Abhijith A",
"title": "Designing Empathy Game: Case on Participatory Design Session with children within the Indian context.",
"gap of years": [
2020,
2024
],
"year of release": 2023,
"DBLP_Record": "conf/acmidc/MuravevskaiaAPU23",
"Awards": 2,
"kind": "conference and workshop papers",
"co-author": [
"Ekaterina Muravevskaia",
"Pranav Prabha",
"Mahesh S. Unnithan",
"Arunav H",
"Rthuraj P. R",
"Ruthvik Kanukunta",
"Gayathri Manikutty"
],
"surname": "A"
},
{
"author's name": "Abhijith A",
"title": "Designing Empathy Game: Case on Participatory Design Session with children within the Indian context.",
"gap of years": [
2020,
2024
],
"year of release": 2023,
"DBLP_Record": "journals/corr/abs-2306-05897",
"Awards": 2,
"kind": "Journal articles",
"co-author": [
"Ekaterina Muravevskaia",
"Pranav Prabha",
"Mahesh S. Unnithan",
"Arunav H",
"Rthuraj P. R",
"Ruthvik Kanukunta",
"Gayathri Manikutty"
],
"surname": "A"
},
{
"author's name": "Abirami A",
"title": "COVIDPRO-NET: a prognostic tool to detect COVID 19 patients from lung X-ray and CT images using transfer learning and Q-deformed entropy.",
"gap of years": [
2020,
2024
],
"year of release": 2023,
"DBLP_Record": "journals/jetai/RKKKKKSA23",
"Awards": 2,
"kind": "Journal articles",
"co-author": [
"Vijay R",
"Abhishek Kumar",
"Ankit Kumar",
"V. D. Ashok Kumar",
"Rajeshkumar K",
"Visvam Devadoss Ambeth Kumar",
"Abdul Khader Jilani Saudagar"
],
"surname": "A"
},
{
"author's name": "Adarsh A",
"title": "ST-GNN for EEG Motor Imagery Classification.",
"gap of years": [
2020,
2024
],
"year of release": 2022,
"DBLP_Record": "conf/bhi/SAGMRP22",
"Awards": 0,
"kind": "conference and workshop papers",
"co-author": [
"Vivek B. S.",
"Jay Gubbi",
"Kartik Muralidharan",
"Ramesh Kumar Ramakrishnan",
"Arpan Pal"
],
"surname": "A"
},
{
"author's name": "Adarsh A",
"title": "Surface Potential Simulation and Electrode Design for in-Ear EEG Measurement.",
"gap of years": [
2020,
2024
],
"year of release": 2022,
"DBLP_Record": "conf/embc/DasBAGMSSBPCRP22",
"Awards": 2,
"kind": "conference and workshop papers",
"co-author": [
"Abhranila Das",
"Subhadeep Basu",
"Jayavardhana Gubbi",
"Kartik Muralidharan",
"Meghana S",
"Mahendiran S",
"Amagond Biradar",
"Ullas Pradhan",
"Tapas Chakravarty",
"Ramesh Kumar Ramakrishnan",
"Arpan Pal"
],
"surname": "A"
},
{
"author's name": "Adarsh A",
"title": "Designing and evaluating a system for studying EarEEG signals.",
"gap of years": [
2020,
2024
],
"year of release": 2022,
"DBLP_Record": "conf/huc/ASMGR022",
"Awards": 0,
"kind": "conference and workshop papers",
"co-author": [
"Meghana S",
"Kartik Muralidharan",
"Jayavardhana Gubbi",
"Ramesh Kumar Ramakrishnan",
"Arpan Pal"
],
"surname": "A"
},
{
"author's name": "Adarsh Makam A",
"title": "Implementation of fast independent component analysis on field-programmable gate array for resolving the slot collision issue in the space-based automatic identification system.",
"gap of years": [
2020,
2024
],
"year of release": 2020,
"DBLP_Record": "journals/ijscn/KrishnaNAR20",
"Awards": 1,
"kind": "Journal articles",
"co-author": [
"Adithya Krishna",
"Akshay Nimbal",
"V. Sambasiva Rao"
],
"surname": "A"
},
{
"author's name": "Adhatus Solichah A",
"title": "Time based Discovery of parallel business processes.",
"gap of years": [
2010,
2019
],
"year of release": 2015,
"DBLP_Record": "conf/ic3ina/SarnoKWA15",
"Awards": 0,
"kind": "conference and workshop papers",
"co-author": [
"Riyanarto Sarno",
"Kartini",
"Widyasari Ayu Wibowo"
],
"surname": "A"
},
{
"author's name": "Adhatus Solichah A",
"title": "Business process optimization from single timestamp event log.",
"gap of years": [
2010,
2019
],
"year of release": 2015,
"DBLP_Record": "conf/ic3ina/SarnoHKSA15",
"Awards": 0,
"kind": "conference and workshop papers",
"co-author": [
"Riyanarto Sarno",
"Fitrianing Haryadita",
"Kartini",
"Sarwosri"
],
"surname": "A"
},
{
"author's name": "Adithya Narayan K. A",
"title": "Consensus Agreement for Secure Transactions in Self Help Groups.",
"gap of years": [
2020,
2024
],
"year of release": 2021,
"DBLP_Record": "conf/icccnt/ARVPAR21",
"Awards": 1,
"kind": "conference and workshop papers",
"co-author": [
"Aswin Rakesh",
"Alok V",
"Ananthu M. P",
"Sruthy Anand",
"Maneesha Vinodini Ramesh"
],
"surname": "A"
},
{
"author's name": "Afifi Mohammed. A",
"title": "IoMT Cloud-Based Intelligent Prediction of Breast Cancer Stages Empowered With Deep Learning.",
"gap of years": [
2020,
2024
],
"year of release": 2021,
"DBLP_Record": "journals/access/SiddiquiHGKNARK21",
"Awards": 2,
"kind": "Journal articles",
"co-author": [
"Shahan Yamin Siddiqui",
"Amir Haider",
"Taher M. Ghazal",
"Muhammad Adnan Khan",
"Iftikhar Naseer",
"Sagheer Abbas",
"MuhibUr Rahman",
"Junaid Ahmad Khan",
"Munir Ahmad",
"Mohammad Kamrul Hasan",
"Karamath Ateeq"
],
"surname": "A"
},
{
"author's name": "Mohammed A. M. Afifi",
"title": "Using Blockchain to Ensure Trust between Donor Agencies and NGOs in Under-Developed Countries.",
"gap of years": [
2020,
2024
],
"year of release": 2021,
"DBLP_Record": "journals/computers/RehmanKSTAG21",
"Awards": 2,
"kind": "Journal articles",
"co-author": [
"Ehsan Rehman",
"Muhammad Asghar Khan",
"Tariq Rahim Soomro",
"Nasser Taleb",
"Taher M. Ghazal"
],
"surname": "Afifi"
},
{
"author's name": "Mohammed A. M. Afifi",
"title": "Information Systems Integration to Enhance Operational Customer Relationship Management in the Pharmaceutical Industry.",
"gap of years": [
2020,
2024
],
"year of release": 2021,
"DBLP_Record": "conf/aicv2/SvobodaGAKAA21",
"Awards": 1,
"kind": "conference and workshop papers",
"co-author": [
"Petr Svoboda",
"Taher M. Ghazal",
"Deepak Kalra",
"Muhammad T. Alshurideh",
"Haitham M. Alzoubi"
],
"surname": "Afifi"
},
{
"author's name": "Aiswarya A",
"title": "Segmentation of heart wall muscles and detection of hypertrophic cardiomyopathy from 2D echo images using U- Nets.",
"gap of years": [
2020,
2024
],
"year of release": 2023,
"DBLP_Record": "conf/icccnt/AAS23",
"Awards": 1,
"kind": "conference and workshop papers",
"co-author": [
"Hisham Ahamed",
"Nagesh Subbanna"
],
"surname": "A"
},
{
"author's name": "Ajay Krishnan A",
"title": "MRI-Compatible Patient-specific Continuum Robots using Parametric Modelling.",
"gap of years": [
2020,
2024
],
"year of release": 2023,
"DBLP_Record": "conf/bsn/BSAP23",
"Awards": 2,
"kind": "conference and workshop papers",
"co-author": [
"Arjun BS",
"Hardik J. Pandya"
],
"surname": "A"
},
{
"author's name": "Akhil K. A",
"title": "Single Image HDR Synthesis Using a Densely Connected Dilated ConvNet.",
"gap of years": [
2020,
2024
],
"year of release": 2021,
"DBLP_Record": "conf/cvpr/AJ21",
"Awards": 1,
"kind": "conference and workshop papers",
"co-author": [
"C. V. Jiji"
],
"surname": "A"
},
{
"author's name": "Akhil K. A",
"title": "NTIRE 2020 Challenge on Image and Video Deblurring.",
"gap of years": [
2020,
2024
],
"year of release": 2020,
"DBLP_Record": "conf/cvpr/NahSTLTXCTBSXCS20",
"Awards": 1,
"kind": "conference and workshop papers",
"co-author": [
"Seungjun Nah",
"Sanghyun Son",
"Radu Timofte",
"Kyoung Mu Lee",
"Yu Tseng",
"Yu-Syuan Xu",
"Cheng-Ming Chiang",
"Yi-Min Tsai",
"Stephan Brehm",
"Sebastian A. Scherer",
"Dejia Xu",
"Yihao Chu",
"Qingyan Sun",
"Jiaqin Jiang",
"Lunhao Duan",
"Jian Yao",
"Kuldeep Purohit",
"Maitreya Suin",
"A. N. Rajagopalan",
"Yuichi Ito",
"Hrishikesh P. S",
"Densen Puthussery",
"C. V. Jiji",
"Guisik Kim",
"Deepa P. L",
"Zhiwei Xiong",
"Jie Huang",
"Dong Liu",
"Sangmin Kim",
"Hyungjoon Nam",
"Jisu Kim",
"Jechang Jeong",
"Shihua Huang",
"Yuchen Fan",
"Jiahui Yu",
"Haichao Yu",
"Thomas S. Huang",
"Ya Zhou",
"Xin Li",
"Sen Liu",
"Zhibo Chen",
"Saikat Dutta",
"Sourya Dipta Das",
"Shivam Garg",
"Daniel Sprague",
"Bhrij Patel",
"Thomas Huck"
],
"surname": "A"
},
{
"author's name": "Al Raiyan Shariff A",
"title": "Deep Learning based CNN Model for Classification and Detection of Individuals Wearing Face Mask.",
"gap of years": [
2020,
2024
],
"year of release": 2023,
"DBLP_Record": "journals/corr/abs-2311-10408",
"Awards": 1,
"kind": "Journal articles",
"co-author": [
"R. Chinnaiyan",
"Iyyappan M",
"Kondaveeti Sai",
"Mallikarjunaiah B. M",
"P. Bharath"
],
"surname": "A"
},
{
"author's name": "Almaaf Bader Ali A",
"title": "Study on E-Commerce Adoption in SMEs Under the Institutional Perspective: The Case of Saudi Arabia.",
"gap of years": [
2010,
2019
],
"year of release": 2018,
"DBLP_Record": "journals/ijea/AMT18",
"Awards": 0,
"kind": "Journal articles",
"co-author": [
"Jian-Jun Miao",
"Quang-Dung Tran"
],
"surname": "A"
},
{
"author's name": "Almaaf Bader Ali A",
"title": "B2B E-Commerce Institutionalization in SMEs in Less Developed Countries: A Model and Instrument.",
"gap of years": [
2010,
2019
],
"year of release": 2013,
"DBLP_Record": "journals/ijea/AMT13",
"Awards": 0,
"kind": "Journal articles",
"co-author": [
"Jian-Jun Miao",
"Quang-Dung Tran"
],
"surname": "A"
},
{
"author's name": "Ambha A",
"title": "Learning to Generate Diversified Query Interpretations using Biconvex Optimization.",
"gap of years": [
2010,
2019
],
"year of release": 2013,
"DBLP_Record": "conf/ijcnlp/BairiAR13",
"Awards": 0,
"kind": "conference and workshop papers",
"co-author": [
"Ramakrishna Bairi",
"Ganesh Ramakrishnan"
],
"surname": "A"
},
{
"author's name": "Ameer Suhail P. A",
"title": "Development of a Machine Learning Model and Mobile Application to Aid in Predicting Dosage of Vitamin K Antagonists Among Indian Patients.",
"gap of years": [
2020,
2024
],
"year of release": 2020,
"DBLP_Record": "journals/corr/abs-2004-11460",
"Awards": 2,
"kind": "Journal articles",
"co-author": [
"Amruthlal M",
"Devika S",
"Aravind K. Menon",
"Vignesh Krishnan",
"Alan Thomas",
"Manu Thomas",
"Sanjay G",
"Lakshmi Kanth L. R",
"Jimmy Jose",
"Harikrishnan S"
],
"surname": "A"
},
{
"author's name": "Amruth A",
"title": "Comparative Study of Cancer Classification by Analysis of RNA-seq Gene Expression Levels.",
"gap of years": [
2020,
2024
],
"year of release": 2022,
"DBLP_Record": "conf/icccnt/ARPJTT22",
"Awards": 2,
"kind": "conference and workshop papers",
"co-author": [
"Ramanan R",
"Rhea Paul",
"Sarada Jayan",
"Amrita Thakur",
"Nidhin Prabhakar T. V"
],
"surname": "A"
},
{
"author's name": "Anand P. A",
"title": "Intonation tutor by SPIRE (In-SPIRE): An Online Tool for an Automatic Feedback to the Second Language Learners in Learning Intonation.",
"gap of years": [
2010,
2019
],
"year of release": 2018,
"DBLP_Record": "conf/interspeech/AYG18",
"Awards": 2,
"kind": "conference and workshop papers",
"co-author": [
"Chiranjeevi Yarra",
"N. K. Kausthubha",
"Prasanta Kumar Ghosh"
],
"surname": "A"
},
{
"author's name": "Anand P. A",
"title": "SPIRE-SST: An Automatic Web-based Self-learning Tool for Syllable Stress Tutoring (SST) to the Second Language Learners.",
"gap of years": [
2010,
2019
],
"year of release": 2018,
"DBLP_Record": "conf/interspeech/YarraAKG18",
"Awards": 2,
"kind": "conference and workshop papers",
"co-author": [
"Chiranjeevi Yarra",
"N. K. Kausthubha",
"Prasanta Kumar Ghosh"
],
"surname": "A"
},
{
"author's name": "Anand V. A",
"title": "Operational Effectiveness of Logistics: Empirical Evidence from V. O. chidambaranar Port Trust- Tuticorin.",
"gap of years": [
2020,
2024
],
"year of release": 2022,
"DBLP_Record": "conf/iccmb/ACS22",
"Awards": 0,
"kind": "conference and workshop papers",
"co-author": [
"Rajan Chinna",
"V. Sivakumar"
],
"surname": "A"
},
{
"author's name": "Ananthapadmanabhan A",
"title": "Threat Modeling and Threat Intelligence System for Cloud using Splunk.",
"gap of years": [
2020,
2024
],
"year of release": 2022,
"DBLP_Record": "conf/isdfs/AA22",
"Awards": 2,
"kind": "conference and workshop papers",
"co-author": [
"Krishnashree Achuthan"
],
"surname": "A"
},
{
"author's name": "Aneesa Farhan M A",
"title": "Islanding detection using mathematical morphology for distributed generation.",
"gap of years": [
2010,
2019
],
"year of release": 2017,
"DBLP_Record": "conf/isgteurope/FarhanS17",
"Awards": 0,
"kind": "conference and workshop papers",
"co-author": [
"K. Shanti Swarup"
],
"surname": "A"
},
{
"author's name": "Angelin Delighta A",
"title": "A comprehensive review of AlGaN/GaN High electron mobility transistors: Architectures and field plate techniques for high power/ high frequency applications.",
"gap of years": [
2020,
2024
],
"year of release": 2023,
"DBLP_Record": "journals/mj/KumarJJAAN23",
"Awards": 0,
"kind": "Journal articles",
"co-author": [
"J. S. Raj Kumar",
"H. Victor Du John",
"Binola K. Jebalin",
"J. Ajayan",
"D. Nirmal"
],
"surname": "A"
},
{
"author's name": "Anirudh A",
"title": "Automatic Identification of Video Game Development Problems using Word Embedding and Ensemble Classifiers.",
"gap of years": [
2020,
2024
],
"year of release": 2023,
"DBLP_Record": "conf/indiaSE/AKMK23",
"Awards": 0,
"kind": "conference and workshop papers",
"co-author": [
"Lov Kumar",
"N. L. Bhanu Murthy",
"Aneesh Krishna"
],
"surname": "A"
},
{
"author's name": "Anirudh A",
"title": "Prediction of Video Game Development Problems Based on Postmortems using Different Word Embedding Techniques.",
"gap of years": [
2020,
2024
],
"year of release": 2021,
"DBLP_Record": "conf/icon-nlp/ASGKM21",
"Awards": 1,
"kind": "conference and workshop papers",
"co-author": [
"Aman RAJ Singh",
"Anjali Goyal",
"Lov Kumar",
"N. L. Bhanu Murthy"
],
"surname": "A"
},
{
"author's name": "Aniruth A",
"title": "Autonomous Multi-Rotor UAVs: A Holistic Approach to Design, Optimization, and Fabrication.",
"gap of years": [
2020,
2024
],
"year of release": 2024,
"DBLP_Record": "journals/corr/abs-2401-02541",
"Awards": 0,
"kind": "Journal articles",
"co-author": [
"Chirag Satpathy",
"Jothika K",
"Nitteesh M",
"Gokulraj M",
"Venkatram K",
"Harshith G",
"Shristi S",
"Anushka Vani",
"Jonathan Spurgeon"
],
"surname": "A"
},
{
"author's name": "Annis Fathima A",
"title": "CNN - Forest Based Person Identification and Head Pose Estimation for AI Based Applications.",
"gap of years": [
2020,
2024
],
"year of release": 2023,
"DBLP_Record": "journals/ijufks/DA23",
"Awards": 1,
"kind": "Journal articles",
"co-author": [
"Anitta D"
],
"surname": "A"
},
{
"author's name": "Annis Fathima A",
"title": "Human head pose estimation based on HF method.",
"gap of years": [
2020,
2024
],
"year of release": 2021,
"DBLP_Record": "journals/mam/DA21",
"Awards": 2,
"kind": "Journal articles",
"co-author": [
"Anitta D"
],
"surname": "A"
},
{
"author's name": "Annis Fathima A",
"title": "Object recognition through pose and shape estimation.",
"gap of years": [
2020,
2024
],
"year of release": 2020,
"DBLP_Record": "journals/corr/abs-2006-12864",
"Awards": 1,
"kind": "Journal articles",
"co-author": [
"Anitta D"
],
"surname": "A"
},
{
"author's name": "Anu Monisha A",
"title": "Secure relay selection scheme for Traffic Congested Zone in VANET using grasshopper optimization and modified authentication key agreement algorithms.",
"gap of years": [
2020,
2024
],
"year of release": 2023,
"DBLP_Record": "journals/apin/ARM23",
"Awards": 0,
"kind": "Journal articles",
"co-author": [
"T. R. Reshmi",
"Krishnan Murugan"
],
"surname": "A"
},
{
"author's name": "Anu Monisha A",
"title": "ERNSS-MCC: Efficient relay node selection scheme for mission critical communication using machine learning in VANET.",
"gap of years": [
2020,
2024
],
"year of release": 2023,
"DBLP_Record": "journals/ppna/ARM23",
"Awards": 1,
"kind": "Journal articles",
"co-author": [
"T. R. Reshmi",
"Krishnan Murugan"
],
"surname": "A"
},
{
"author's name": "Anu Monisha A",
"title": "A Novel Hybrid UE Selection Scheme for Efficient Data Offloading Using D2D Communication.",
"gap of years": [
2020,
2024
],
"year of release": 2020,
"DBLP_Record": "journals/cj/GAM20",
"Awards": 2,
"kind": "Journal articles",
"co-author": [
"Balaji Coimbatore GaneshSankar",
"Krishnan Murugan"
],
"surname": "A"
},
{
"author's name": "Arju N. A",
"title": "Image Tampering Detection Using Convolutional Neural Network.",
"gap of years": [
2010,
2019
],
"year of release": 2019,
"DBLP_Record": "journals/ijse/SinghaniaAS19",
"Awards": 1,
"kind": "Journal articles",
"co-author": [
"Shruti Singhania",
"Raina Singh"
],
"surname": "A"
},
{
"author's name": "Arjun A",
"title": "Automated medication dispensing system.",
"gap of years": [
2010,
2019
],
"year of release": 2014,
"DBLP_Record": "conf/wocn/ShreeSAMNR14",
"Awards": 1,
"kind": "conference and workshop papers",
"co-author": [
"Bhagya Shree S R",
"Chandra Shekar P",
"Manoj G R",
"Nithin A",
"Ravitheja S. Raj"
],
"surname": "A"
},
{
"author's name": "Artani A",
"title": "Geo-spatial reporting for monitoring of household immunization coverage through mobile phones: Findings from a feasibility study.",
"gap of years": [
2010,
2019
],
"year of release": 2017,
"DBLP_Record": "journals/ijmi/KaziAKKZKAA17",
"Awards": 1,
"kind": "Journal articles",
"co-author": [
"Abdul Momin Kazi",
"M. Ali",
"Ayub Khan",
"Hussain Kalimuddin",
"K. Zubair",
"Abdul Nafey Kazi",
"Syed Asad Ali"
],
"surname": "A"
},
{
"author's name": "Arun Kumar A",
"title": "Technology Pipeline for Large Scale Cross-Lingual Dubbing of Lecture Videos into Multiple Indian Languages.",
"gap of years": [
2020,
2024
],
"year of release": 2022,
"DBLP_Record": "journals/corr/abs-2211-01338",
"Awards": 2,
"kind": "Journal articles",
"co-author": [
"Anusha Prakash",
"Ashish Seth",
"Bhagyashree Mukherjee",
"Ishika Gupta",
"Jom Kuriakose",
"Jordan Fernandes",
"K. V. Vikram",
"Mano Ranjith Kumar M.",
"Metilda Sagaya Mary",
"Mohammad Wajahat",
"Mohana N",
"Mudit Batra",
"Navina K",
"Nihal John George",
"Nithya Ravi",
"Pruthwik Mishra",
"Sudhanshu Srivastava",
"Vasista Sai Lodagala",
"Vandan Mujadia",
"Kada Sai Venkata Vineeth",
"Vrunda N. Sukhadia",
"Dipti Misra Sharma",
"Hema A. Murthy",
"Pushpak Bhattacharya",
"Srinivasan Umesh",
"Rajeev Sangal"
],
"surname": "A"
},
{
"author's name": "Arun Kumar A",
"title": "Dual Script E2E Framework for Multilingual and Code-Switching ASR.",
"gap of years": [
2020,
2024
],
"year of release": 2021,
"DBLP_Record": "conf/interspeech/KumarKTASPJPM21",
"Awards": 0,
"kind": "conference and workshop papers",
"co-author": [
"Mari Ganesh Kumar",
"Jom Kuriakose",
"Anand Thyagachandran",
"Ashish Seth",
"Lodagala Durga Prasad",
"Saish Jaiswal",
"Anusha Prakash",
"Hema A. Murthy"
],
"surname": "A"
},
{
"author's name": "Arun Kumar A",