-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
1508 lines (1165 loc) · 62.9 KB
/
index.html
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>
<!-- <link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> -->
<!-- <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> -->
<!-- <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> -->
<!-- Include the above in your HEAD tag -->
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>WREC'23-NIT Jalandhar</title>
<meta content="" name="descriptison">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/nitjlogo1.png" rel="icon">
<link href="assets/img/nitjlogo1.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i%7CRaleway:300,400,500,700,800"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/cookieBubble.min.css">
</link>
<style type="text/css" src="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css"></style>
</head>
<body>
<!-- ======= Header ======= -->
<header id="header">
<div class="container">
<div id="logo" class="pull-left">
<!-- Uncomment below if you prefer to use a text logo -->
<a href="index.html" class="scrollto"><img src="assets/img/nitjlogo1.png" alt="" title=""></a>
<h1 class="d-inline-block font"><a href="#intro"> <span>WREC'23</span></a></h1>
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="index.html">Home</a></li>
<li><a href="#date"> Dates</a></li>
<li><a href="#trac"> Tracks </a></li>
<li><a href="#speakers">Keynote Speakers</a></li>
<!-- <li><a href="#tut">Tutorials</a></li> -->
<li><a href="#schedule">Schedule</a></li>
<li><a href="adv_com.html">Committee</a></li>
<!-- <li><a href="papers.html">Call For Papers</a></li> -->
<li class="dropdown"><a href="#" class=" dropdown-toggle" data-toggle="dropdown" id="dropdownMenuButton"
role="button" aria-haspopup="true" aria-expanded="false">For Authors</a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a class=" d-block dropdown-item" href="papers.html">Call For Papers</a>
<a class="d-block dropdown-item" href="rules.html">Paper Submission</a>
</div>
</li>
<li><a href="about.html">About</a></li>
<li><a href="#contact">Contact</a></li>
<!-- </div> -->
<!-- </li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#contact">Contact</a></li>
<li class="dropdown"><a href="#" class=" dropdown-toggle" data-toggle="dropdown" id="dropdownMenuButton" role="button" aria-haspopup="true" aria-expanded="false">For Authors</a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a class=" d-block dropdown-item" href="#">Call For Papers </a>
<a class="d-block dropdown-item" href="#">Registration</a>
</div>
</li> -->
</ul>
</nav><!-- #nav-menu-container -->
</div>
</header><!-- End Header -->
<!-- ======= Intro Section ======= -->
<section id="intro">
<div class="intro-container container" data-aos="zoom-in" data-aos-delay="100 " style="width: 100vw;">
<a href="Conference Schedule.pdf">
<marquee behavior="scroll" width="100%" direction="right" scrollamount="10" style="">
<h4 style="color:#7F5AF0; background-color:rgb(251,253,0) ; width: 710px;"> <img
src="https://www.nitj.ac.in//images/New.gif">~~~~ Detailed Scheduled Coming Soon ~~~~<img
src="https://www.nitj.ac.in//images/New.gif"></h4>
</marquee>
</a>
<div>
<p class="mb-0"><span>2nd International Conference</span></p>
<h1 class="mt-0 pt-0">Women Researchers in
Electronics and Computing</h1>
<h2 class="my-4 pb-0"><span style="color:#F0572F">April 21-23, 2023 </span></h2>
<p class="mb-0">Department of Electronics and Communication Engineering</p>
<p><span>Dr B R Ambedkar National Institute of Technology, Jalandhar, Punjab, INDIA</span></p>
<!--<a href="https://www.youtube.com/watch?v=jDDaplaOz7Q" class="venobox play-btn mb-4" data-vbtype="video" data-autoplay="true"></a>-->
<a href="#about" class="about-btn scrollto">About</a>
</div>
<!-- <a href="WREC-21.pdf" class="about-btn scrollto" style="background-color:#7F5AF0;">Brochure</a> -->
</div>
<!--
<marquee behavior="scroll" direction="right" scrollamount="25"
style=" margin-top: 90vh; margin-left: 25vw; margin-right: 25vw;">
<h4 style="color: white;">Registration link would be open soon</h4>
</marquee>
-->
<marquee behavior="scroll" direction="left" scrollamount="10" style=" margin-top: 87vh;">
<h4 style="color:#7F5AF0; background-color:aliceblue ; width: 550px;"> <img
src="https://www.nitj.ac.in//images/New.gif"> <a href="../nitj_files/links/Registration_WREC21_9295.pdf">~~~~
Registration Link Coming Soon~~~~</a> <img src="https://www.nitj.ac.in//images/New.gif"></h4>
</marquee>
</section><!-- End Intro Section -->
<!-- <div class="dropbutton">
<a href="#footer" class="btndwn"><i class="fa fa-3x fa-angle-double-down"></i></a>
</div> -->
<main id="main">
<section id="supporters" class="section-with-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Organized By </h2>
<!-- <p>All accepted and presented papers of WREC21 will be published by</p> -->
</div>
<div class="no-gutters supporters-wrap clearfix" data-aos="zoom-in" data-aos-delay="100">
<div class="" style=" text-align: center; font-weight: bold">
<div>
<div class="supporter-logo">
<a href="https://www.nitj.ac.in/"> <img src="assets/img/NITJLogo.png" class="img-fluid" alt="">
</a>
</div>
<h2 style="padding:15px; font-weight: 600">
Dr B R Ambedkar National Institute of Technology, Jalandhar, Punjab, INDIA
</h2>
</div>
<h2 style="color:black">In Joined Collaboration with</h2>
<div>
<div class="supporter-logo">
<a href="https://www.aijr.in/"> <img src="assets/img/IGTUW.jpg" class="img-fluid" alt="">
</a>
</div>
<h2 style="padding:15px; font-weight: 600">
Indira Gandhi Delhi Technical University For Women, Delhi
</h2>
</div>
</div>
<div>
<!-- <p> <br>
<ul style="font-size: 20px; font-weight:600 ; text-justify: inter-word; ">
<p style="line-height: 170%; text-align: center;"><span
style="font-weight: 800;">Visibility</span>:<br><br>
<span class="tag" style="background-color:#7F5AF0;"> CrossRef </span>
<span class="tag" style="background-color:#29166F;"> Google Scholar</span>
<span class="tag" style="background-color:#7F5AF0;"> Scilit </span>
<span class="tag" style="background-color:#29166F;"> CORE (UK) </span>
<span class="tag" style="background-color:#7F5AF0;"> OUCI (Ukrain) </span>
<span class="tag" style="background-color:#29166F;"> PKP Index </span>
<span class="tag" style="background-color:#7F5AF0;"> Microsoft Academic </span>
<span class="tag" style="background-color:#29166F;"> BASE </span>
<span class="tag" style="background-color:#7F5AF0;"> Dimensions </span>
<span class="tag" style="background-color:#29166F;"> Semantic Scholar </span>
<span class="tag" style="background-color:#7F5AF0;"> OpenAIRE</span>
</p>
</ul>
</p> -->
</div>
<!-- <div class="col-lg-6 col-md-6 col-xs-6">
<div class="supporter-logo">
<a href="https://taylorandfrancis.com/"> <img src="assets/img/Publishers/TandF.png" class="img-fluid"
alt=""> </a>
</div>
</div> -->
</div>
</div>
</section>
<!-- <section id="speakers">
<div class="container" data-aos="fade-up">
<div class="row">
</div>
</div>
</section> -->
<!-- timeline section starts -->
<div class="container" id="date">
<div class="row">
<div class="col-md-12">
<div class="main-timeline">
<div class="timeline">
<a href="#" class="timeline-content">
<div class="timeline-icon">
<i class="fa fa-globe"></i>
</div>
<h3 class="title">Paper Submission deadline:</h3>
<!-- <h6 class="title" style="opacity: 0.6;"><s>20</s><sup>th</sup><s>February</s></h6> -->
<h6 class="title">20<sup>th</sup>February</h6>
<span class="timeline-year">2023</span>
</a>
</div>
<div class="timeline">
<a href="#" class="timeline-content">
<div class="timeline-icon">
<i class="fa fa-rocket"></i>
</div>
<h3 class="title">Intimation of acceptance:</h3>
<!-- <h6 class="title" style="opacity: 0.6;"><s>20</s><sup>th</sup><s>March</s></h6> -->
<h6 class="title">20 <sup>th</sup> March</h6>
<span class="timeline-year">2023</span>
</a>
</div>
<div class="timeline">
<a href="#" class="timeline-content">
<div class="timeline-icon">
<i class="fa fa-rocket"></i>
</div>
<h3 class="title">Submission of Camera-ready Papers:</h3>
<h6 class="title">27 <sup>st</sup>March</h6>
<span class="timeline-year">2023</span>
</a>
</div>
<div class="timeline">
<a href="#" class="timeline-content">
<div class="timeline-icon">
<i class="fa fa-rocket"></i>
</div>
<h3 class="title">Registration starts:</h3>
<h6 class="title">27 <sup>th</sup>March</h6>
<span class="timeline-year">2023</span>
</a>
</div>
<div class="timeline">
<a href="#" class="timeline-content">
<div class="timeline-icon">
<i class="fa fa-rocket"></i>
</div>
<h3 class="title">Last date of Registration:</h3>
<!-- <h6 class="title" style="opacity: 0.6;"><s>10</s><sup>th</sup><s>April</s></h6> -->
<h6 class="title">10<sup>th</sup> April</h6>
<span class="timeline-year">2023</span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Timeline section Ends -->
<section id="about">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-45">
<div class="container" data-aos="fade-up">
<h2>About</h2>
<p style="font-size: large;font-weight: 400; text-align: justify;text-justify: inter-word;">
Though women are underrepresented in engineering, but the number has been growing consistently as more
women are opting to pursue studies in this field and still there is a lot required to be done to
encourage this trend. We would like to dedicate this conference so as to promote and encourage women
engineers and motivate young girls to follow their academic interests to a career in engineering. With a
view to inspire women engineers, pioneer and successful women achievers in the domains of VLSI design,
wireless sensor networks, communication, image/ signal processing, machine learning, and emerging
technologies have been identified from across the globe and invited to present their work and address
the participants in this women oriented conference. All the keynote speakers, tutorial presenters,
session chairs and the members of conference organizing team are women. The conference aspires to
provide a platform for researchers, engineers, academicians as well as industrial professionals to
showcase innovative and interdisciplinary research findings on practical as well as theoretical
advancements in Electronics, Communication and Signal Processing.</p>
<h4 style="color: white; text-align: center;">
However, participation is not limited to women candidates only. It is open for all the researchers in
specified areas.
</h4>
<h2 id="trac"><b>CONFERENCE TRACKS</b> </h2>
</div>
<div class="row justify-content-center" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-45">
<ul id="faq-list">
<li>
<a data-toggle="collapse" class="collapsed" href="#faq1"><b style="font-size:x-large;">Signal/Image
Processing and Applications</b> <i class="fa fa-plus-circle"></i>
<br>
<!-- <p style="font-size: medium; ">Chair: Dr Savita Gupta, Professor, UIET, Chandigarh <br>
Dr Amamika Dubey, AP, Washington State University, USA</p> -->
</a>
<div id="faq1" class="collapse" data-parent="#faq-list">
<ul style="font-size: large;">.
<li>Image/ Video/ Multimedia Signal Processing</li>
<li>Audio/ Speech/ Spoken Language Processing</li>
<li>Biomedical Signal Processing and Systems</li>
<li>Machine Learning and Deep Learning for Signal Processing</li>
<li>Sensor Array and Multichannel Signal Processing</li>
<li>Signal Processing for Communication & Networking</li>
<li>Emerging Technologies in Signal Processing</li>
<li> Human- Computer Interface</li>
</ul>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq2" class="collapsed"><b style="font-size:x-large;">Futuristic
Communication Systems</b>
<i class="fa fa-plus-circle"></i><br>
<!-- <p style="font-size: medium;">Chair: Dr Neena Gupta, Professor, PEC Chandigarh <br>
Dr Gurmeet Kaur, Professor, Punjabi University</p> -->
</a>
<div id="faq2" class="collapse" data-parent="#faq-list">
<p>
<ul>
<li>Next generation Ad-hoc, Mobile and Sensor Networks</li>
<li>Satellite and Space Communications</li>
<li>Optical Communication and Networks</li>
<li>5G/6G Wireless Technologies</li>
<li>MIMO, Massive MIMO, mm Wave MIMO</li>
<li>Software-Defined Networking (SDN)</li>
<li>Ad-hoc, Mesh and Sensor Networks</li>
<li>Green and energy efficient wireless networks</li>
<li>Machine learning and deep learning for all types of networks</li>
<li>Ultra-reliable low latency communications (URLLC)</li>
<li> Multiple Radio Access Technologies (M-RATs) interworking</li>
<li>Next generation radio access networks (RAN)</li>
<li>Mobility management and models </li>
<li>RF Circuits, Systems and Antennas</li>
</ul>
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq3" class="collapsed"><b style="font-size:x-large;">VLSI Design
</b>
<i class="fa fa-plus-circle"></i>
<!-- <p style="font-size: medium;">Chair: Dr Rajeevan Chandel, Professor, NIT Hamirpur<br>
Dr Alpana Aggarwal, Professor, Thapar University, Patiala</p> -->
</a>
<div id="faq3" class="collapse" data-parent="#faq-list">
<p>
<ul>
<li>Nanoscale devices/Nanoelectronics</li>
<li> Analog/Digital and Mixed Signal ICs</li>
<li> VLSI Signal Processing</li>
<li> Electronic Design Automation</li>
<li> Physical Design Automation</li>
<li> VLSI Testing</li>
<li> ASIC/FPGA Design</li>
<li> Electronic Devices, Materials and Fabrication Process</li>
<li> Device Modeling and Characterization</li>
<li> Advanced CMOS Devices and Process</li>
<li> System-on-Chip (SoC)</li>
<li> Biosensors and Bioelectronics</li>
<li> MEMS/NEMS Microfluidics</li>
<li> RF, Microwave and Tera Hertz Devices</li>
<li> Spintronic Devices for Memory and Computing</li>
<li> Emerging Logic, Memories and Neuromorphic Devices</li>
<li> Flexible Electronics and Organic semiconductors</li>
<li> Photovoltaics and Energy Harvesting</li>
</ul>
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq4" class="collapsed"><b style="font-size:x-large;">Computational
Technologies</b>
<i class="fa fa-plus-circle"></i>
<!-- <p style="font-size: medium;">Chair: Dr Arvinder Kaur, Professor, IPU Delhi<br>
Dr. Poonam Bansal, Professor, IGDTUW Delhi</p> -->
</a>
<div id="faq4" class="collapse" data-parent="#faq-list">
<p>
<ul>
<li>Big Data Analytics and Cloud Computing</li>
<li>Networks, IoT and Cyber Security</li>
<li>Computational Intelligence</li>
<li>Blockchain Technology and Applications</li>
<li>3-D Printing and Scanning</li>
<li>Deep Learning/ Artificial Intelligence and Machine Learning Applications</li>
<li>Geographic Information Systems and Applications</li>
<li>Augmented Reality/ Virtual Reality</li>
<li>Quantum Computing and Informatics</li>
<li>Knowledge Engineering</li>
<li>Computational Biology & Bioinformatics</li>
<li>Data, Text, Web Mining & Visualization</li>
</ul>
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<section id="speakers">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Keynote Speakers</h2>
<!-- <p>Here are some of our speakers</p> -->
</div>
<ul class="nav nav-tabs" role="tablist" data-aos="fade-up" data-aos-delay="100">
<li class="nav-item">
<a class="nav-link " href="#2021" role="tab" data-toggle="tab" onclick="showSpeakers('2021')">2021</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#2023" role="tab" data-toggle="tab" onclick="showSpeakers('2023')">2023</a>
</li>
</ul>
<div role="tabpanel" class="tab-pane fade show active" id="2023">
<div class="row">
<div class="col-lg-4 col-md-4">
<div class="speaker">
<a href=""><img src="assets/img/speakers/ierene_Yu.jpg" alt="Speaker 1" class="img-fluid"></a>
<div class="details">
<h3><a href="">Prof. Irene Yu-Hua Gu</a></h3>
<p>Professor, Chalmers University of Technology, Sweden</p>
<div class="social">
<!-- <a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a> -->
<a href="https://www.linkedin.com/in/binta-patel-0a26421a/"><i class="fa fa-linkedin"></i></a> -
</div>
</div>
</div>
</div>
<div class=" col-md-7 ">
<a href="">
<h3>"Brain Tumor Characteristics in MRIs: Can we train DL networks using tumor bounding box images
without requiring tumor annotation?"</h3>
</a>
<p style=" text-align: justify;text-justify: inter-word;">Irene Gu is a Professor in the Department of
Electrical Engineering, Chalmers University of Technology, Sweden. She has received the PhD degree in
electrical engineering from Eindhoven University of Technology, The Netherlands, in 1992. From 1992 to
1994, she was a Research Fellow at the Philips Research Institute IPO, The Netherlands, and a
Post-Doctoral Fellow at Staffordshire University, U.K. She was a University Lecturer at the University
of Birmingham, U.K, 1995-1996 before joining Chalmers. Since Sept. 1996, she has been with the
Department of Signals and Systems, Chalmers University of Technology, where she has been a Professor
since 2004. She has coauthored over 200 journal and conference articles, and coauthored the book on
Signal Processing of Power Quality Disturbances.
Irene Gu’s main research areas include statistical image analysis and video processing, machine learning
and deep learning, visual object tracking and recognition, signal analysis and processing with
applications to electric power systems, and biomedical image analysis for AI-assisted brain disease
diagnosis.
Her current main research activities include: Biomedical image analysis for diagnosis of brain tumors
and Alzheimers' disease; Privacy-protected machine learning for vehicle/traffic safety and
transportation systems; Signal processing and machine learning with applications to big data analytics
in power systems (finding underlying causes and patterns from disturbance and variation measurement
data).</p>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-4">
<div class="speaker">
<a href=""><img src="assets/img/speakers/binaPatel.jpeg" alt="Speaker 1" class="img-fluid"></a>
<div class="details">
<h3><a href="">Binta Patel</a></h3>
<p>Cloud Architect - Intel</p>
<div class="social">
<!-- <a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a> -->
<a href="https://www.linkedin.com/in/binta-patel-0a26421a/"><i class="fa fa-linkedin"></i></a> -
</div>
</div>
</div>
</div>
<div class=" col-md-7 ">
<a href="">
<h3>Career for Women in Semiconductors</h3>
</a>
<p style=" text-align: justify;text-justify: inter-word;">Binta Patel is Chief Engineer at Intel, Austin,
Texas, United States. She is an experienced Senior Principal Engineer with a demonstrated history of
working in the semiconductors industry as a Technologist. She did her BE in Electronics Engineering from
Nagpur University, and MS in Electrical Engineering from New York University. Her areas of
specialization are Low Power PLL and Clocking Design, SoC, Microarchitectural Design, Sensors. She has
several patents to her credit.</p>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade " id="2021">
<div class="row">
<div class="col-lg-4 col-md-4">
<div class="speaker" data-aos="fade-up" data-aos-delay="100">
<a href="nilmini.html"><img src="assets/img/speakers/nilmini.jpg" alt="Speaker 1" class="img-fluid"></a>
<div class="details">
<h3><a href="nilmini.html">Prof Nilmini Wickramasinghe</a></h3>
<p>Swinburne University of Technology, Australia</p>
<div class="social">
<!-- <a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a> -->
<a href="https://www.linkedin.com/in/nilmini-wickramasinghe-13834ab2/"><i
class="fa fa-linkedin"></i></a>-
</div>
</div>
</div>
</div>
<div class=" col-md-7 ">
<a href="nilmini.html">
<h3>Health 4.0</h3>
</a>
<p style=" text-align: justify;text-justify: inter-word;"> Digital Health is essential in today's world.
The COVID-19 pandemic has highlighted the benefits of digital health. Digital Health is powered by the
developments of technologies making up Internet of Things (IoT) including sensors, mobile, 3D printing,
analytics and more. This presentation will highlight key areas and provide insights into how the
technologies of IoT can provide superior healthcare for all.</p>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="100">
<a href="maryam%20shojae.html"><img src="assets/img/speakers/maryam.jpg" alt="Speaker 1"
class="img-fluid"></a>
<div class="details">
<h3><a href="maryam%20shojae.html">Prof. Maryam Shojaei Baghini</a></h3>
<p>IIT-Bombay</p>
<div class="social">
<!-- <a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a> -->
<a href="https://www.linkedin.com/in/maryam-shojaei-baghini-04697b13/"><i
class="fa fa-linkedin"></i></a>-
</div>
</div>
</div>
</div>
<div class=" col-md-7 ">
<a href="maryam%20shojae.html">
<h3>Modular Sensor Interfacing and Signal Conditioning</h3>
</a>
<p style=" text-align: justify;text-justify: inter-word;"> Sensing devices are becoming a part of
communication technologies or a part of portable and mobile measurement devices to bring a new age of
ubiquitous sensing. Integrable sensor modules demand modular interfacing, analog signal conditioning and
integrable solutions compatible with the analog to data and information transformation. The solutions
must suppress the noise, have the required sensitivity, and reduce effect of non-idealities. In this
talk examples of low-noise, discrete and integrated designs for the interacting and signal conditioning
of sensor signals in various forms and from different sensing elements are presented.</p>
</div>
</div>
</div>
</div>
</section><!-- End Speakers Section -->
<section id="speakers">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2 id="tut">TUTORIALS 2021</h2>
<!-- <p>Here are some of our speakers</p> -->
</div>
<div class="row">
<div class=" col-md-7 ">
<h3>Game-driven Electronic Design Automation</h3>
<p style=" text-align: justify;text-justify: inter-word;">In this tutorial, I will present highly visual
interactive design frameworks that we have developed to harness human intelligence for mapping/placement
and architecture design for custom reconfigurable devices. People excel at navigating complex and
dynamically changing situations, recognizing recurring patterns, and identifying potential opportunities.
I will show how these reasoning and problem solving skills can be brought to bear in solving the mapping
challenge for custom reconfigurable architectures.</p>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="100">
<a href="GayatriMehta.html"><img src="assets/img/speakers/gaytri.jpg" alt="Speaker 1"
class="img-fluid"></a>
<div class="details">
<h3><a href="GayatriMehta.html">Dr Gayatri Mehta</a></h3>
<p>University of North Texas</p>
<div class="social">
<!-- <a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a> -->
<a href="https://www.linkedin.com/in/gayatri-mehta-64aa7411/"><i class="fa fa-linkedin"></i></a>-
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class=" col-md-7 ">
<h3>AI tools to combat antimicrobial resistance (AMR)</h3>
<p style=" text-align: justify;text-justify: inter-word;">Antimicrobial Resistance is fast emerging to be
one of the biggest challenges in healthcare across the world. Rampant inappropriate use of antibiotics is
by far the biggest contributor to this problem. Dr Seema Singh will be conducting a tutorial around the
potential role of data analytics and AI based decision support systems in driving the judicious use of
antibiotics in healthcare practice.</p>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="100">
<a href="seema.html"><img src="assets/img/speakers/seema.jpg" alt="Speaker 1" class="img-fluid"></a>
<div class="details">
<h3><a href="seema.html">Dr Seema Singh</a></h3>
<p>MS (Surgery), PGDM (IIM-A) </p>
<p> Digital Health Consultant
</p>
<div class="social">
<!-- <a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a> -->
<a href="https://www.linkedin.com/in/drseema"><i class="fa fa-linkedin"></i></a>-
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Speakers Section -->
<!-- ======= Speakers Section ======= -->
<!-- Team -->
<!-- ======= Schedule Section ======= -->
<section id="schedule" class="section-with-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Event Schedule</h2>
<p>Here is our event schedule</p>
</div>
<ul class="nav nav-tabs" role="tablist" data-aos="fade-up" data-aos-delay="100">
<li class="nav-item">
<a class="nav-link active" href="#day-1" role="tab" data-toggle="tab">Day 1</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-2" role="tab" data-toggle="tab">Day 2</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-3" role="tab" data-toggle="tab">Day 3</a>
</li>
</ul>
<h3 class="sub-heading">PROGRAMME SCHEDULE</h3>
<div class="tab-content row justify-content-center" data-aos="fade-up" data-aos-delay="200">
<!-- Schdule Day 1 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade show active" id="day-1">
<div class="row schedule-item">
<div class="col-md-2"><time>10:00 AM</time></div>
<div class="col-md-10">
<h4>Inaugration </h4>
<p></p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>11:30 AM</time></div>
<div class="col-md-10">
<!-- <div class="speaker">
<img src="assets/img/Mini.jpg" alt="Dr Gayatri">
</div> -->
<h4> Plenary Talk <span></span></h4>
<!-- <p>Director (NIT, Trichy)</p> -->
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>2:30 PM</time></div>
<div class="col-md-10">
<!-- <div class="speaker">
<img src="assets/img/speakers/prabhjot.jpg" alt="Dr Prabhjot">
</div> -->
<h4>Paper Presentation <span></span></h4>
<p>Session 1</p>
<p>Session 2</p>
<p>Session 3</p>
</div>
</div>
</div>
<!-- End Schdule Day 1 -->
<!-- Schdule Day 2 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade" id="day-2">
<div class="row schedule-item">
<div class="col-md-2"><time>8:30 AM</time></div>
<div class="col-md-10">
<!-- <div class="speaker">
<img src="assets/img/speakers/gaytri.jpg" alt="Dr Gayatri">
</div> -->
<h4>Keynote Address 1 </h4>
<!-- <p>University of North Texas, Reconfigurable Computing</p> -->
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:30 AM</time></div>
<div class="col-md-10">
<!-- <div class="speaker">
<img src="assets/img/speakers/nilmini.jpg" alt="Dr Nilmini">
</div> -->
<h4>Keynote Address 2</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>12:00 Noon</time></div>
<div class="col-md-10">
<h4>Paper Presentation <span></span></h4>
<p>Session 4</p>
<p>Session 5</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>2:30 PM</time></div>
<div class="col-md-10">
<h4>Paper Presentation <span></span></h4>
<p>Session 6</p>
<p>Session 7</p>
<p>Session 8</p>
</div>
</div>
</div>
<!-- End Schdule Day 2 -->
<!-- Schdule Day 3 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade" id="day-3">
<div class="row schedule-item">
<div class="col-md-2"><time>9:30 AM</time></div>
<div class="col-md-10">
<!-- <div class="speaker">
<img src="assets/img/speakers/maryam.jpeg" alt="Brenden Legros">
</div> -->
<h4>Keynote Address 3<span></span></h4>
<!-- <p>Department of Electrical Engineering</p>
<p>IIT-Bombay, Powai</p>
<p>Mumbai, INDIA</p> -->
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>11:00 AM</time></div>
<div class="col-md-10">
<h4>Paper Presentation <span></span></h4>
<p>Session 9</p>
<p>Session 10</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>02:30 PM</time></div>
<div class="col-md-10">
<!-- <div class="speaker">
<img src="assets/img/speakers/seema.jpg" alt="Dr Gayatri">
</div> -->
<h4>Keynote Address 4</h4>
<!-- <p>MS (Surgery), PGDM (IIM-A) Digital Health Consultant.</p> -->
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>04:30 PM</time></div>
<div class="col-md-10">
<h4>Valedictory</h4>
<p>Discussions on Feedback, Vote of Thanks</p>
</div>
</div>
<!-- <div class="row schedule-item">
<div class="col-md-2"><time>03:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/5.jpg" alt="Alejandrin Littel">
</div>
<h4>Quos ratione neque expedita asperiores. <span>Alejandrin Littel</span></h4>