-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1996 lines (1629 loc) · 107 KB
/
index.html
File metadata and controls
1996 lines (1629 loc) · 107 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Portfolio Rishemjit Kaur</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Fonts -->
<link href="https://fonts.googleapis.com" rel="preconnect">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Main CSS File -->
<link href="assets/css/main.css" rel="stylesheet">
<!-- =======================================================
* Template Name: iPortfolio
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body class="index-page">
<header id="header" class="header dark-background d-flex flex-column">
<i class="header-toggle d-xl-none bi bi-list"></i>
<div class="profile-img">
<img src="assets/img/my-profile-img.jpg" alt="" class="img-fluid rounded-circle">
</div>
<a href="/" class="logo d-flex align-items-center justify-content-center">
<!-- Uncomment the line below if you also wish to use an image logo -->
<!-- <img src="assets/img/logo.png" alt=""> -->
<h1 class="sitename">Rishemjit Kaur</h1>
</a>
<div class="social-links text-center">
<a href="https://x.com/i/flow/login?redirect_after_login=%2Frishemjit" class="twitter"><i class="bi bi-twitter-x"></i></a>
<a href="#" class="facebook"><i class="bi bi-facebook"></i></a>
<a href="#" class="instagram"><i class="bi bi-instagram"></i></a>
<a href="#" class="google-plus"><i class="bi bi-skype"></i></a>
<a href="https://www.linkedin.com/in/rishemjit-kaur-32709021/?originalSubdomain=in" class="linkedin"><i class="bi bi-linkedin"></i></a>
</div>
<nav id="navmenu" class="navmenu">
<ul>
<li><a href="#home" class="active"><i class="bi bi-house navicon"></i>Home</a></li>
<li><a href="#about"><i class="bi bi-person navicon"></i> About</a></li>
<li><a href="#publication"><i class="bi bi-file-earmark-text navicon"></i> Publication</a></li>
<li><a href="#research"><i class="bi bi-images navicon"></i>Research</a></li>
<li><a href="#techAward"><i class="bi bi-hdd-stack navicon"></i>Awards & Scholarships</a></li>
<!-- <li class="dropdown"><a href="#"><i class="bi bi-menu-button navicon"></i> <span>Dropdown</span> <i class="bi bi-chevron-down toggle-dropdown"></i></a>
<ul>
<li><a href="#">Dropdown 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Dropdown</span> <i class="bi bi-chevron-down toggle-dropdown"></i></a>
<ul>
<li><a href="#">Deep Dropdown 1</a></li>
<li><a href="#">Deep Dropdown 2</a></li>
<li><a href="#">Deep Dropdown 3</a></li>
<li><a href="#">Deep Dropdown 4</a></li>
<li><a href="#">Deep Dropdown 5</a></li>
</ul>
</li>
<li><a href="#">Dropdown 2</a></li>
<li><a href="#">Dropdown 3</a></li>
<li><a href="#">Dropdown 4</a></li>
</ul>
</li> -->
<li><a href="#event"><i class="bi bi-card-checklist navicon"> </i>Events</a></li>
<li><a href="#education"><i class="bi bi-hdd-stack navicon"></i>Education</a></li>
<li><a href="#experience"><i class="bi bi-hdd-stack navicon"></i>Experience</a></li>
<li><a href="#phdstudent"><i class="bi bi-person navicon"></i>Student</a></li>
<li><a href="#contact"><i class="bi bi-envelope navicon"></i> Contact</a></li>
</ul>
</nav>
</header>
<main class="main">
<!-- Hero Section -->
<section id="home" class="hero section dark-background">
<img src="assets/img/hero-bg.png" alt="" data-aos="fade-in" class="">
<div class="container" data-aos="fade-up" data-aos-delay="100">
<h2>Dr. Rishemjit Kaur</h2>
<p>Principal Scientist <span class="typed" data-typed-items="CSIR-Central Scientific Instruments Organisation, CSIR-Central Scientific Instruments Organisation, CSIR-Central Scientific Instruments Organisation, CSIR-Central Scientific Instruments Organisation">CSIR-Central Scientific Instruments Organisation </span><span class="typed-cursor typed-cursor--blink" aria-hidden="true"></span><span class="typed-cursor typed-cursor--blink" aria-hidden="true"></span></p>
</div>
</section><!-- /Hero Section -->
<!-- About Section -->
<section id="about" class="about section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>About</h2>
</div><!-- End Section Title -->
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row gy-4 justify-content-center">
<div class="col-lg-4">
<img src="assets/img/my-profile-img.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-8 content">
<!-- <h2>UI/UX Designer & Web Developer.</h2> -->
<p>Rishemjit Kaur working as a Principal Scientist with CSIR-Central Scientific Instruments Organisation Chandigarh.
I'm passionate about analysing and interpreting large amount of data from a range of sources using algorithmic,
data mining, artificial intelligence,
machine learning and statistical tools, in order to make it accessible to food processing instrumentation lab.</p>
<p class="fst-italic py-3">
My work is at the intersection of deep learning, NLP, and big data analytics.
My recent work is on development of neural machine translation systems for low resource languages.
</p>
<div class="row">
<div class="col-lg-6">
<!-- <ul>
<li><i class="bi bi-chevron-right"></i> <strong>Birthday:</strong> <span>1 May 1995</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Website:</strong> <span>www.example.com</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Phone:</strong> <span>+123 456 7890</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>City:</strong> <span>New York, USA</span></li>
</ul> -->
</div>
<div class="col-lg-6">
<!-- <ul>
<li><i class="bi bi-chevron-right"></i> <strong>Age:</strong> <span>30</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Degree:</strong> <span>Master</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Email:</strong> <span>email@example.com</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Freelance:</strong> <span>Available</span></li>
</ul> -->
</div>
</div>
<!-- <p class="py-3">
Officiis eligendi itaque labore et dolorum mollitia officiis optio vero. Quisquam sunt adipisci omnis et ut. Nulla accusantium dolor incidunt officia tempore. Et eius omnis.
Cupiditate ut dicta maxime officiis quidem quia. Sed et consectetur qui quia repellendus itaque neque.
</p> -->
</div>
</div>
</div>
</section><!-- /About Section -->
<!-- Stats Section -->
<!-- Resume Section -->
<section id="publication" class="resume section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Publication</h2>
<!-- <p>I have published papers (in Science, IEEE cybernetics, PlosOne, etc) with total impact factor of more than 135.
Few selected papers are as follows:
</p> -->
</div><!-- End Section Title -->
<div class="container">
<div class="row">
<div class="col" data-aos="fade-up" data-aos-delay="200">
<h3 class="resume-title">Journal</h3>
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Surangika Ranathunga, En-Shiun Annie Lee, Marjana Prifti Skenduli, Ravi Shekhar, Mehreen Alam, Rishemjit
Kaur, Neural machine translation for low-resource languages: A survey, ACM Computing Surveys, 2022, IF:
14.32</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Maneet Singh, Hennav dhillon, Parul Ichhpujani, Rishemjit Kaur, Twitter Sentiment Analysis for COVID-
19 associated Mucormycosis, Indian Journal of Ophthalmology, 2022, IF: 2.9</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Vishal Kumar, Sandeep Patel, Siddhartha Sharma, Ritesh Kumar, Rishemjit Kaur, 50 years of cervical
myelopathy research: Results from a bibliometric analysis, Asian Spine Journal, 2022</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Anupma Sharma, Ambika Bhardwaj, Ghata Khanduja, Saurav Kumar, Sudeshna Bagchi, Rishemjit Kaur,
Manu Sharma, Monika Singla, T Ravinder, Amol P Bhondekar, BLA Prabhavathi Devi, Determination of
Hexanal Using Static Headspace GC-FID Method and Its Correlation with Oxidative Rancidity in Edible
Oils, Food Analytical Methods,Springer, 2022, IF: 3.56</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Gagan Kalra, Rishemjit Kaur, Parul Ichhpujani, Rutvi Chahal, Suresh Kumar, COVID-19 and ophthal-
mology: A scientometric analysis, Indian Journal of Ophthalmology, 69 (5), 1234, 2021, IF:2.96</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Ritesh Kumar, Maneet Singh, Prateek Singh, Valentina Parma, Kathrin Ohla, Shannon B Olsson,.., Rishemjit
Kaur, Leveraging machine learning and self-administered tests to predict COVID-19: An olfactory and gus-
tatory dysfunction assessment through crowd-sourced data in India, medRxiv, 2021</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Maneet Singh, Rishemjit Kaur, Akiko Matsuo, SRS Iyengar, Kazutoshi Sasahara, Morality-Based Assertion
and Homophily on Social Media: A Cultural Comparison Between English and Japanese Languages, Frontiers
in psychology, 5081, 2021, IF: 4.23</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Rishemjit Kaur, Ritesh Kumar, Amol P Bhondekar, Pawan Kapur, Human opinion dynamics: An inspira-
tion to solve complex optimization problems, 3, Scientific reports, Nature Publishing Group, 2013, IF: 4.996</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Rishemjit Kaur, Ritesh Kumar, Ashu Gulati, C Ghanshyam, Pawan Kapur, Amol P Bhondekar, Enhancing
electronic nose performance: A novel feature selection approach using dynamic social impact theory and
moving window time slicing for classification of Kangra orthodox black tea (Camellia sinensis (L.) O. Kuntze),
Vol. 166, Pg. 309-319, Sensors and Actuators B: Chemical , Elsevier, 2012, IF: 9.21</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Mashkova Aleksandra, Dripta Roy Choudhury, Rishemjit Kaur, Ivan Nevolin, Agent-based Model of the
Relationship between Food Availability and the Dynamics of the Spread of Anemia, Artificial Societies, 2021</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Abhinav Sinha, Ritesh Kumar, Rishemjit Kaur, RK Mishra, Consensus-Based Odor Source Localization
by Multiagent Systems Under Resource Constraints, IEEE transactions on cybernetics, IF: 19.11</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Abhinav Sinha, Ritesh Kumar, Rishemjit Kaur Amol P Bhondekar, Consensus-based odor source localiza-
tion by multiagent systems, IEEE transactions on cybernetics, 2018, IF: 19.11</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Andreas Keller, Richard C. Gerkin, Yuanfang Guan, Dream Challenge Consortium ( Ritesh Kumar, Rishemjit
Kaur, Amol P Bhondekar, Gajendra Pal Singh Raghava ) et al. Predicting human olfactory perception from
chemical features of odor molecules, eaal2014, Science, 2017, IF: 35.26</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Sherry Bhalla, Harpreet Kaur, Rishemjit Kaur, Suresh Sharma and Gajendra PS Raghava, Expression
based biomarkers and models to classify early and late stage samples of Papillary Thyroid Carcinoma, PLoS
ONE, 15(4): e0231629, 2020, IF: 3.7</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Valentina Parma, Kathrin Ohla, Rishemjit Kaur et al. More than smell—COVID-19 is associated with
severe impairment of smell, taste, and chemesthesis, Chemical Senses, Chemical Senses, Oxford University
Press, Vol. 45(7), Pg. 609-622, 2020, IF: 2.336</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Shambo Roy Chowdhury, Amol Bhondekar, Ritesh Kumar, Sudeshna Bagchi, Rishemjit Kaur, Vinod Karar,
Analysis of a Novel Circuit Arrangement to Suppress Crosstalk in 2-D Resistive Sensor Arrays, Circuits,
Systems, and Signal Processing, Springer, 39(3), 1227-1243, 2020, IF:2.3</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Abhinav Sinha, Ritesh Kumar, Rishemjit Kaur Amol P Bhondekar, Cooperative control of multi-agent
systems to locate source of an odor, arXiv preprint arXiv:1711.03819, 2017</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Shambo Roy Chowdhury, Amol Bhondekar, Ritesh Kumar, Sudeshna Bagchi, Rishemjit Kaur, Vinod Karar,
Circuit arrangement to suppress crosstalk in chemo-resistive sensor arrays, IET Science, Measurement &
Technology, Vol. 12(8), Pg. 1039-1046, 2018, IF: 1.39</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Parul Ichhpujani, Gagan Kalra, Rishemjit Kaur, and Shibal Bhartiya, Evolution of Glaucoma Research: A
Scientometric Review, Journal of Current Glaucoma Practice, 14(3): 98–105</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Anmol Kumar, Jyoti Saxena, Ritesh Kumar, Rishemjit Kaur, MAI Mitigation in MC-CDMA Systems Using
Social Impact Based Wireless Communication Algorithm, Wireless Personal Communications, Vol. 101(3),
Pg. 1765-1786, 2018, IF: 1.50</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Saurav Kumar, Sudeshna Bagchi, Senthil Prasad, Anupma Sharma, Ritesh Kumar, Rishemjit Kaur, Jagvir
Singh, Amol P Bhondekar, Bacteriorhodopsin–ZnO hybrid as a potential sensing element for low-temperature
detection of ethanol vapour. Beilstein journal of nanotechnology 04/2016; 7 (1):501-510. DOI: 10.3762/bj-
nano.7.44. IF: 3.6</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Ritesh Kumar, Rishemjit Kaur, Benjamin Auffarth, Amol P Bhondekar, Understanding the Odour Spaces:
A Step towards Solving Olfactory Stimulus-Percept Problem, e0141263, PloS one, 2015, IF: 3.05</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Sankho Turjo Sarkar, Amol P Bhondekar, Martin Macas, Ritesh Kumar, Rishemjit Kaur, Anupma Sharma,
Ashu Gulati, Amod Kumar, Towards biological plausibility of electronic noses: A spiking neural network based
approach for tea odour classification. Neural Networks 10/2015; DOI:10.1016/j.neunet.2015.07.014. IF: 9.6</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Gaurav Sharma, Saurav Kumar, Ashavani Kumar, Anupma Sharma, Ritesh Kumar, Rishemjit Kaur, et al.,
Development of Lipid Membrane Based Taste Sensors for Electronic Tongue, Vol. 70, Pg. 146-152, Procedia
Computer Science, Elsevier, 2015</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Martin Macaˇs, Amol P Bhondekar, Ritesh Kumar, Rishemjit Kaur, Jakub Kuzilek, V´aclav Gerla, Lenka
Lhotsk´a,Pawan Kapur, Binary social impact theory based optimization and its applications in pattern recog-
nition, Vol. 132, Pg. 85-96, Neurocomputing, Elsevier,2014, IF: 5.77</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Anupma Sharma, Rishemjit Kaur, S. S. Bari and M. L. Singla, Chemometric assisted RP-HPLC for finger-
printing of Indian orthodox black tea, Vol.6, Pg. 2189-2196, Analytical Methods,2014 IF: 3.5</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Ritesh Kumar, Rishemjit Kaur, Amol P Bhondekar, Pawan Kapur, Understanding the odour network, Vol.
3(1), Flavour, BioMed Central, 2014</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Ritesh Kumar, Amol P Bhondekar, Rishemjit Kaur, Saru Vig, Pawan Kapur. A simple electronic tongue,
Sensors and Actuators B: Chemical, Volumes 171–172, 2012, Pages 1046–1053, IF: 9.22</em></p>
<!-- <ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul> -->
</div>
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Amol P Bhondekar, Rishemjit Kaur, Ritesh Kumar, Renu Vig, Pawan Kapur, A novel approach using
Dynamic Social Impact Theory for optimization of impedance-Tongue (iTongue), Vol. 109(1), Pg. 65-76,
Chemometrics and Intelligent Laboratory Systems, Elsevier, 2011, IF: 4.17</em></p>
</div><!-- Edn Resume Item -->
</div>
</div>
<div class="row">
<div class="col" data-aos="fade-up" data-aos-delay="100">
<h3 class="resume-title">Conferences/Proceedings</h3>
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Maneet Singh, S.R.S. Iyengar,Akrati Saxena, Rishemjit Kaur, A Bi-level Assessment of Twitter Data for
Election Prediction: Delhi Assembly Elections 2020, WWW ’22 Companion: The Web Conference 2022
Proceedings France, April, 2022</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Maneet Singh, SRS Iyengar Kaur, Rishemjit Kaur, Mining Social Networks for Dissemination of Fake News
Using Continuous Opinion-Based Hybrid Model, International Conference on Advanced Data Mining and
Applications, Australia, 2022, 217-228, Springer, Cham</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Poonam Adhikari, Ritesh Kumar, S.R.S. Iyengar, Rishemjit Kaur, What a million Indian farmers say?: A
crowdsourcing-based method for pest surveillance, KDD Workshop on Data-driven Humanitarian Mapping,
2021</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Parth Patwa, Viswanatha Reddy, Rohan Sukumaran, Sethuraman TV, Eptehal Nashnoush, Sheshank Shankar,
Rishemjit Kaur, Abhishek Singh, Ramesh Raskar, Can Self Reported Symptoms Predict Daily COVID-19
Cases? The 3rd Workshop on Artificial Intelligence for Social Good at International Joint Conference on
Artificial Intelligence , 2021</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Rishemjit Kaur, Ritesh Kumar, The sensory language: A word embedding based approach to predict
modality exclusivity norms, International Conference on Computational Social Science, Boston, USA, 2020</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Maneet Singh, Rishemjit Kaur, SRS Iyengar, Using Social Media for Analyzing Mass Views on the Imple-
mentation of Citizenship Amendment Act in India, Boston, USA, 2020</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Rishemjit Kaur, Kazutoshi Sasahara, Mapping the Moral Domain: A Factor Analysis of Distributed Rep-
resentationsof Moral Words, International Conference on Computational Social Science, Evanston,USA 2018</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Maneet Singh, Rishemjit Kaur, SRS Iyengar, Multidimensional Analysis of Fake News Spreaders on Twitter,
International Conference on Computational Data and Social Networks, pp.354-365, 2020</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Anamika Chhabra, Rishemjit Kaur, SRS Iyengar, Dynamics of Edit War Sequences in Wikipedia, Proceed-
ings of the 16th International Symposium on Open Collaboration, pp 1-10, 2020</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Ritesh Kumar, Rishemjit Kaur, Amol P Bhondekar, Gajendra PS Raghava Bhattacharyya S., Chaki N.,
Konar D., Chakraborty U., Singh C. (eds), Human Opinion Inspired Feature Selection Strategy for Predicting
the Pleasantness of a Molecule, Advanced Computational and Communication Paradigms. Advances in
Intelligent Systems and Computing, vol 706, Springer, 2018</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Rishemjit Kaur, Ritesh Kumar, Piyush Agrawal, Gajendra P.S. Raghava, PAMPdl: Prediction of An-
timicrobial Peptide using Deep Learning Technique, International Conference on Bioinformatics, New Delhi,
India, 2018</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Rishemjit Kaur, Ritesh Kumar, Piyush Agrawal, Gajendra P.S. Raghava, Prediction of MSE interacting
residue using Deep Learning Technique: An attempt to process Big Data, International Conference on Bioin-
formatics, New Delhi, India, 2018</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Rishemjit Kaur, Kazutoshi Sasahara, Moral Foundations in Online Conversations, International Conference
on Computational Social Science, Cologne, Germany, 2017</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Rishemjit Kaur and Kazutoshi Sasahara, Quantifying moral foundations from various topics on Twitter
conversations, Proceeding of the 2016 IEEE Big Data, pp.2505-2512, 2016</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Michal Joachimczak, Rishemjit Kaur, Reiji Suzuki and Takaya Arita. Spiral autowaves as minimal, dis-
tributed gait controllers for soft-robots, ALife XV: The Fifteenth International Conference on the Simulation
and Synthesis of Living Systems, Mexico, 2016</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Akiko Matsuo, Minoru Karasawa, Vinai Norasakkunkit, Kazutoshi Sasahara, Rishemjit Kaur. Cultural
Bases of Moral Ethics: Perceptions of Morality in Japan and in the United States, The 23rd Congress of the
International Association for Cross Cultural Psychology, Nagoya, Japan, 2016</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Shambo Roy Chowdhury, Ritesh Kumar, Rishemjit Kaur, Anupma Sharma, Amol P Bhondekar, Quality
assessment of engine oil: An impedance spectroscopy based approach, International Conference on Electrical,
Computer and Electronics Engineering (UPCON), Pg. 608-612, IEEE, Varanasi, India, 2016</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Ritesh Kumar, Rishemjit Kaur, Amol P Bhondekar, Gajendra Pal Singh Raghava, Smell and language:
Datacentric approach to predicting smell of a molecule. Journal of Digital Olfaction Society, 4(1); 05/2016</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Ritesh Kumar, Rishemjit Kaur, Amol P Bhondekar, The Smell Network, International Conference on
Multidisciplinary Social Networks Research Pg. 460-469, Springer Berlin Heidelberg, 2015</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Michal Joachimczak, Rishemjit Kaur, Reiji Suzuki, Takaya Arita, Bringing drawings to life: evolving
distributed controllers for hand-drawn soft-bodied robots, SWARM 2015: The First International Symposium
on Swarm Behavior and Bio-Inspired Robotics, Kyoto, Japan, 2015</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Brandon Johnson</h4> -->
<p><em>Rishemjit Kaur, Ritesh Kumar, Amol P. Bhondekar, Reiji Suzuki, and Takaya Arita. Effects of Topological
Variations on Opinion Dynamics Optimizer, In Advances in Swarm and Computational Intelligence, pp. 3-13.
Springer International Publishing, 2015.</em></p>
</div><!-- Edn Resume Item -->
<h3 class="resume-title">Book Publish /Chapters contributed</h3>
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4>
<h5>2015 - 2016</h5> -->
<p><em>Ritesh Kumar, Rishemjit Kaur, Amol P Bhondekar, Gajendra Pal Singh Raghava</em></p>
<p>Human Opinion In-
spired Feature Selection Strategy for Predicting the Pleasantness of a Molecule”, Advanced Computational
and Communication Paradigms, 197-205, 2018</p>
</div><!-- Edn Resume Item -->
<h3 class="resume-title">Open Source Library</h3>
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4>
<h5>2015 - 2016</h5> -->
<p><em><a href="https://anndata.csio.res.in"> ANNDATA: </a> A food-nutrition portal and database featuring nutritional profiles of thousands of foods from various countries</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4>
<h5>2015 - 2016</h5> -->
<p><em><a href="https://github.com/rishemjit/CODO"> CODO :</a> An open-source optimization library for social Impact theory</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4>
<h5>2015 - 2016</h5> -->
<p><em><a href="https://github.com/SoMaCompute/MoralityBasedCulturalComparison"> Open-source Library : </a>For algorithms of moral content filtering based on NLP and AI techniques</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4>
<h5>2015 - 2016</h5> -->
<p><em><a href="https://github.com/SoMaCompute/PestPredictionKCC"> Pest attack prediction : </a>Algorithms and library for based on time-series data of phone calls by farmers</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4>
<h5>2015 - 2016</h5> -->
<p><em><a href="https://github.com/SoMaCompute/multiOpinionPolarization"> Algorithms:</a>for detecting polarization in online networks</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4>
<h5>2015 - 2016</h5> -->
<p><em><a href="https://github.com/SoMaCompute/AI-for-Fake-News-"> Codes:</a>For modelling fake news</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4>
<h5>2015 - 2016</h5> -->
<p><em><a href="https://github.com/SoMaCompute/multiOpinionPolarization"> Bio inspired optimization techniques: </a> Particle swarm optimization, opinion dynamics optimizer, lectures and codes
</em></p>
</div><!-- Edn Resume Item -->
<h3 class="resume-title">Patents</h3>
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4>
<h5>2015 - 2016</h5> -->
<p><em>A process and device for rapid estimation of edible oil and ghee (clarified butter) quality (No. 201811011606),
Published in 2019</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4>
<h5>2015 - 2016</h5> -->
<p><em>An Ultrasonic Sensor Based Pendulum Type Granulator Assembly And Method For Measurement Thereof,
Filed in 2022</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4>
<h5>2015 - 2016</h5> -->
<p><em>Feed Conical Mixer With Auger Impeller, Filed in 2022</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4>
<h5>2015 - 2016</h5> -->
<p><em>Radius Extruder Device For Pelletization, Filed in 2022</em></p>
</div><!-- Edn Resume Item -->
<h3 class="resume-title">Technology Transfer</h3>
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4>
<h5>2015 - 2016</h5> -->
<p><em>Development of Ml algorithms for indigenous technology for determining the quality of edible oils, the Precision
Iodine Value Analyser (PIVA). This technology has been patented, awarded FSSAI RAFT (rapid analytical
food testing device and transferred to Comfax systems, Chandigarh and also approved to be placed in FSSAI
food testing vans across India.</em></p>
</div><!-- Edn Resume Item -->
</div>
</div>
</div>
</section><!-- /Resume Section -->
<!-- Portfolio Section -->
<section id="research" class="resume section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Research</h2>
</div><!-- End Section Title -->
<div class="container">
<div class="row">
<div class="col" data-aos="fade-up" data-aos-delay="100">
<h3 class="resume-title">Few Project Grants</h3>
<div class="resume-item">
<h4>Empowering farmers through AI driven data analytics solution</h4>
<p><em>PI, in collaboration with Jain Irrigation Systems Ltd., Funded DST-AWADH,2024-2026</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<h4>Characterizing Risk Indicators to cause Anaemia Prevalence among young Children and Adolescents in BRICS countries using Artificial Intelligence</h4>
<p><em>PI, in collaboration with Central Economics and Mathematics Institute Russian Academy of science (CEMI
RAS), Russia and Population Health, Health Systems and Innovation (PHHSI) Human Sciences Research Council, South Africa, Funded DST-BRICS, 2020-2023</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<h4>CSIR-Digital Food Safety Portal System 2.0 Digital Food Safety Portal, analytics and Digitalization of the Indian Burden of Foodborne Diseases, Chemicals Risk Assessment as well as food
design using Artificial Intelligence and Machine Learning Tools</h4>
<p><em>PI, in collaboration with CSIR-IITR, funded by CSIR, 2020-2023</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<h4>Summer Institute in Computational Social Science</h4>
<p><em>PI, in collaboration with Ashoka University, funded by Princeton, USA, 2022</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<h4>Odor Space-1: Designing Algorithms for food</h4>
<p><em>Co-PI, funded by Belgian based company FoodPairing,Industrial Consultancy</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<h4>Green Tea Bitterness Masking Evaluation</h4>
<p><em>Member, funded by TATA Consumer Products Ltd. Industrial Consultancy</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<h4>Quantifying the Spatial Relationship between Emissions and Economic Growth at a Disaggregate
Level for India</h4>
<p><em>Co-PI, in collaboration with Oxford University, supported by Descartes Labs, A US based company</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<h4>Rancidity indicator strip for edible oils</h4>
<p><em>Member, funded by CSIR, 2018-2020</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<h4>Biomimetic Artificial Organoleptic Systems</h4>
<p><em>Co-PI, funded by CSIR, 2012-2016</em></p>
</div><!-- Edn Resume Item -->
<h3 class="resume-title">Other Projects</h3>
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4> -->
<h5>Neural Machine translation for low resource languages</h5>
<ul>
<li>Developed a catalog of methods and state-of-art techniques which can be used for translation between languages for
different data specifications especially for low resource languages such as Hindi, Tamil, Telugu.</li>
<li>Provided a set of guidelines to select the possible NMT technique for a given LRL data setting</li>
</ul>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4> -->
<h5>Data analysis of Kisan Call centres</h5>
<ul>
<li>Analyzed millions of Kisan Call Centre queries from 2013 to 2018 for more than 600 districts across India</li>
<li>Developed natural language processing models to understand and process the Hinglish queries. Studied the temporal
and frequency dynamics of queries using the word embeddings.</li>
<li>Developed Indian agriculture specific corpus of words for the analysis
</li>
<li>Studied the spread of crop diseases across different states using the queries</li>
</ul>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4> -->
<h5>A hand-held system for plant health monitoring</h5>
<ul>
<li>Developed algorithms to map nitrogen content of plant to the colour of rice and wheat leaves and further related it
with urea recommendation.</li>
<li>Designed a color measurement data acquisition system based on the reflectance principle.</li>
</ul>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Master of Fine Arts & Graphic Design</h4> -->
<h5>Cross-cultural study of human moral behaviour using social media</h5>
<ul>
<li>Led this project along with Dr. Sasahara, Nagoya University and developed strategies for data collection and data
interpretation.</li>
<li>Studied the relationship and roles of different foundations of morality using twitter data.</li>
<li>Developed singular value decomposition and word2Vec based algorithms for semantic analysis and quantification of
moral behaviour to study moral violations.
</ul>
</div><!-- Edn Resume Item -->
</div>
</div>
<div class="row">
<div class="col" data-aos="fade-up" data-aos-delay="200">
<h3 class="resume-title">Research and Science Communication Activities</h3>
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Organised WINGS workshop of INYAS-WiSDom, a capacity-building program tailored for women researchers
and entrepreneurs at IIT-Bombay, 2024</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>◦ Organised “Iconic Women Scientist of India” aimed to cultivate a scientific mindset among school students,12th July 2023</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">
<!-- <h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5> -->
<p><em>Organised Summer Institute in Computational Social Science for the first time in India in 2022, funded by
SSRC (Duke University, USA)</em></p>
</div><!-- Edn Resume Item -->
<div class="resume-item">