-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·1656 lines (754 loc) · 49.7 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>AWS WomenInTechDay - Home</title>
<link rel="icon" href="img/favicon.jpg" type="image/png">
<link rel="stylesheet" href="vendors/bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="vendors/fontawesome/css/all.min.css">
<link rel="stylesheet" href="vendors/themify-icons/themify-icons.css">
<link rel="stylesheet" href="vendors/linericon/style.css">
<link rel="stylesheet" href="vendors/owl-carouselReg/owl.theme.default.min.css">
<link rel="stylesheet" href="vendors/owl-carousel/owl.carousel.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="vendors/flat-icon/font/flaticon.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<div id="chkdin"></div>
<!--================ Header Menu Area start ==================-->
<header class="header_area">
<div class="main_menu">
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container box_1620">
<a class="navbar-brand logo_h" href=""><img src="img/logo.png" alt="" class="logo_img"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="collapse navbar-collapse offset" id="navbarSupportedContent">
<ul class="nav navbar-nav menu_nav justify-content-end">
<li class="nav-item active"><a class="nav-link" href="">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#speaker">Speakers</a></li>
<li class="nav-item"><a class="nav-link" href="#agenda">Agenda</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
<ul class="nav-right text-center text-lg-right py-4 py-lg-0">
<li>
<!-- <script src="https://chkdin.com/source/chkdin.js"></script>
<script>addChkdinButton('REGISTER','aws-women-in-tech/252','#ffffff','#3b1d82','12','Roboto, sans-serif'); </script> -->
<p style="background-color:#37207d; border: none; color: white; padding: 10px 20px; border-radius: 8px; text-align: center; text-decoration: none; display: inline-block; font-size: 14px; font-family: Roboto, sans-serif; font-weight: 700; margin: 4px 2px; cursor: pointer;"><a href="https://www.youtube.com/playlist?list=PLs8YaskKVodNN0Iybez3EaUwZLR8saFpJ" target="_blank" style="color:#ffffff;">ON-DEMAND</a></p>
</li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<!--================Header Menu Area =================-->
<!--================Hero Banner Area Start =================-->
<section class="hero-banner" style="position:relative;">
<img src="img/banner/hero-banner.jpg" width="100%" />
<div class="container " style="position:absolute;bottom:60%;left:5.5%;">
<!-- <script>addChkdinButton('REGISTER','aws-women-in-tech/252','#ffffff','#ea0763','18px','Roboto, sans-serif'); </script> -->
<p style="background-color:#d63064; border: none; color: white; padding: 10px 20px; border-radius: 8px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; font-family: Roboto, sans-serif; font-weight: 700; margin: 4px 2px; cursor: pointer;"><a href="https://www.youtube.com/playlist?list=PLs8YaskKVodNN0Iybez3EaUwZLR8saFpJ" target="_blank" style="color:#ffffff;">ON-DEMAND</a></p>
</div>
</section>
<!--================Hero Banner Area End =================-->
<!--================ Innovation section Start =================-->
<section class="section-padding--small bg-gray" id="about">
<div class="container">
<div class="row">
<div class="col-lg-6 align-self-center mb-5 mb-lg-0">
<div class="innovative-wrapper">
<h3 class="primary-text">AWS Women In Tech Day 2020</h3>
<p class="h4 primary-text2 mb-3">About</p>
<p>Women in Tech Day (Community Edition) is a full day online conference aimed to inspire, educate and bring the women IT professionals together through technical discussions, demos and networking opportunities with AWS experts.</p><br>
<p>Join us to learn about AWS and get up to speed on the hottest trends in cloud computing. We will also have live polls, Q&A sessions and 1:1 online networking opportunities.</p><br>
<p><b>Key takeaways</b></p>
<ul style="list-style-type: disc;margin-left: 30px;">
<li>Learn from AWS experts and advance your skills and knowledge in Cloud Computing, Serverless, Analytics, DevOps and Machine Learning.</li>
<li>Build your future in the AWS Cloud, get engaged with the community and inspire the next generation.</li>
</ul>
</div>
</div>
<div class="col-lg-6 pl-xl-5">
<ul class="clockdiv text-center" id="clockdiv">
<li class="clockdiv-single clockdiv-day">
<h1 class="days"></h1>
<span class="smalltext">Days</span>
</li>
<li class="clockdiv-single clockdiv-hour">
<h1 class="hours"></h1>
<span class="smalltext">Hours</span>
</li>
<li class="clockdiv-single clockdiv-minute">
<h1 class="minutes"></h1>
<span class="smalltext">Mins</span>
</li>
<li class="clockdiv-single clockdiv-second">
<h1 class="seconds"></h1>
<span class="smalltext">Secs</span>
</li>
</ul>
<div class="clockdiv-content text-center">
<p align="center" class="h4 primary-text2 mb-2">9th September 2020 | Online</p>
<br>
<!-- <script>addChkdinButton('REGISTER','aws-women-in-tech/252','#ffffff','#3b1d82','15px','Roboto, sans-serif'); </script> -->
<p style="background-color:#37207d; border: none; color: white; padding: 10px 20px; border-radius: 8px; text-align: center; text-decoration: none; display: inline-block; font-size: 14px; font-family: Roboto, sans-serif; font-weight: 700; margin: 4px 2px; cursor: pointer;"><a href="https://www.youtube.com/playlist?list=PLs8YaskKVodNN0Iybez3EaUwZLR8saFpJ" target="_blank" style="color:#ffffff;">ON-DEMAND</a></p>
</div>
</div>
</div>
</div>
</section>
<!--================ Innovation section End =================-->
<!--================ Schedule section Start =================-->
<section class="section-margin mb-5 pb-5" id="agenda">
<div class="container">
<div class="section-intro text-center pb-98px">
<p class="section-intro__title">Join the event</p>
<h2 class="primary-text">Conference Schedule</h2>
<img src="img/home/section-style.png" alt="">
</div>
<div class="row">
<div class="col-xl-10 offset-xl-1">
<div class="scheduleTab">
<ul class="nav nav-tabs">
<li class="nav-item text-center" >
<a class="active" data-toggle="tab" href="#day1">
<h4> Keynote</h4>
<p>9 SEP 2020</p>
</a>
</li>
<li class="nav-item text-center" >
<a data-toggle="tab" href="#day2">
<h4> Track 1</h4>
<p>9 SEP 2020</p>
</a>
</li>
<li class="nav-item text-center" >
<a data-toggle="tab" href="#day3">
<h4> Track 2</h4>
<p>9 SEP 2020</p>
</a>
</li>
<li class="nav-item text-center" >
<a data-toggle="tab" href="#day4">
<h4> Training & Certification</h4>
<p>9 SEP 2020</p>
</a>
</li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div id="day1" class="tab-pane active">
<div class="schedule-card">
<div class="row no-gutters">
<div class="col-md-3">
<div class="card-identity">
<img src="img/speaker/Rashmi Nambiar.jpeg" alt="">
<h3>Rashmi Nambiar</h3>
<p>Developer Marketing Manager</p>
</div>
</div>
<div class="col-md-9 align-self-center">
<div class="schedule-content">
<p class="schedule-date">09.15 AM - 09.25 AM</p>
<a class="schedule-title" >
<h3>Welcome</h3>
</a>
<p></p>
</div>
</div>
</div>
</div>
<div class="schedule-card">
<div class="row no-gutters">
<div class="col-md-3">
<div class="card-identity">
<img src="img/speaker/Rohini_profile2.JPG" alt="">
<h3>Rohini Gaonkar</h3>
<p>Senior Developer Advocate</p>
</div>
</div>
<div class="col-md-9 align-self-center">
<div class="schedule-content">
<p class="schedule-date">09.30 AM - 10.00 AM</p>
<a class="schedule-title" >
<h3>No-Code Mobile & Web App Development With Amazon Honeycode</h3>
</a>
<p>Today’s customers have a growing need for automation that helps them track data over time, manage workflows involving multiple people and facilitate complex business processes. Many teams use packaged applications like spreadsheets and emails to manage their work, but these tools make it hard to keep data in sync, lack individually personalized experiences, require too much manual effort and don’t work effectively on mobile devices.</p>
<p>Introducing Amazon Honeycode. It enables you to build an app to achieve your goals - with NO programming required. Honeycode makes it possible for customers to build powerful web and mobile applications without writing any code using a combination of spreadsheets and a visual application builder. Join this session to learn more about the world of No-Code development and how you can build a custom app that will help you and your team to be more productive.</p>
</div>
</div>
</div>
</div>
<div class="schedule-card">
<div class="row no-gutters">
<div class="col-md-3">
<div class="card-identity">
<img src="img/speaker/Marcia.jpg" alt="">
<h3>Marcia Villalba</h3>
<p>Developer Advocate</p>
</div>
</div>
<div class="col-md-9 align-self-center">
<div class="schedule-content">
<p class="schedule-date">10.05 AM - 10.35 AM</p>
<a class="schedule-title" >
<h3>Building Full Stack Serverless Applications In The Cloud</h3>
</a>
<p>Mobile and web applications have become the primary channel for engaging users, it’s critical that developers deliver applications with uncompromising user experience, performance and scale.</p><p>In this session, I want to show you how to use AWS Amplify (mobile/web development tools and services) and AWS AppSync (managed GraphQL service) to develop, release and operate cloud-powered applications. Also we will see how we can manage the lifecycle of the application when working with multiple persons in a team. And while we do all this we will be building a React application from scratch that will be available for everybody to try after the presentation is over.</p>
</div>
</div>
</div>
</div>
</div>
<div id="day2" class="tab-pane">
<div class="schedule-card">
<div class="row no-gutters">
<div class="col-md-3">
<div class="card-identity">
<img src="img/speaker/Alejandra Quetzalli.jpeg" alt="">
<h3>Alejandra Quetzalli</h3>
<p>Developer Advocate</p>
</div>
</div>
<div class="col-md-9 align-self-center">
<div class="schedule-content">
<p class="schedule-date">10.40 AM - 11.25 AM</p>
<a class="schedule-title" >
<h3>My Robot, My Caregiver (Level 200) </h3>
</a>
<p>We’ve heard the old adage that robots will take jobs away from humans. But what if instead, robots are just what our healthcare system needs to improve patient care? In this session, you’ll learn how robotics, AI and automation could contribute to long-term sustainability and profitability of the health care system. </p>
</div>
</div>
</div>
</div>
<div class="schedule-card">
<div class="row no-gutters">
<div class="col-md-3">
<div class="card-identity">
<img src="https://womenintech.awsug.in/img/speaker/dipali.jpeg" alt="">
<h3>Dipali Kulshreshta</h3>
<p>Technical Product Manager</p>
</div>
</div>
<div class="col-md-9 align-self-center">
<div class="schedule-content">
<p class="schedule-date">11.30 AM - 12.15 PM</p>
<a class="schedule-title" >
<h3>Containerize Microservices With AWS (Level 200)</h3>
</a>
<p>Microservices and Containers are an increasingly important way for developers to package and deploy their applications. Amazon Web Services customers use containers as the fundamental unit of compute to deploy both existing and new workloads like microservices, big data, machine learning models and batch jobs. Amazon Elastic Containers Services (Amazon ECS) makes it easy to orchestrate containers to run most sensitive and mission critical applications because of its security, reliability and scalability.<br>
During this session, we will demonstrate how you can deploy your unique applications and microservices using Amazon ECS and Amazon ECR (Elastic Containers Repository).</p>
</div>
</div>
</div>
</div>
<div class="schedule-card">
<div class="row no-gutters">
<div class="col-md-3">
<div class="card-identity">
<img src="img/speaker/Jasmine.jpg" alt="">
<img src="img/speaker/Nethra.png" alt="">
<h3>Jasmine Maheshwari & Nethravathi Muddarajaiah</h3>
<p>Solutions Architect</p>
</div>
</div>
<div class="col-md-9 align-self-center">
<div class="schedule-content">
<p class="schedule-date">12.20 PM - 01.05 PM</p>
<a class="schedule-title" >
<h3>Deploying Scalable Application To Amazon EKS (Level 200)</h3>
</a>
<p>To maximize the deployment velocity and application reliability, it is important to segregate the business functionality into microservices which reside in separate containers along with the environment it needs to run. Microservice architecture makes it possible to roll out rapid changes by keeping disruption to a minimum with the help of container orchestration platforms like kubernetes and Amazon Elastic Kubernetes Service(EKS) is a managed Kubernetes Service which takes care of undifferentiated yet all important “Heavy Lifting” and lets you focus on your customer priorities. </p>
<p>In this talk, we demonstrate how you can use EKS to scale your application deployments automatically. </p>
</div>
</div>
</div>
</div>
<div class="schedule-card">
<div class="row no-gutters">
<div class="col-md-3">
<div class="card-identity">
<img src="https://womenintech.awsug.in/img/speaker/Bhuvana_photo.jpeg" alt="">
<h3>Bhuvaneswari Subramani</h3>
<p>Director, Engineering Operations</p>
</div>
</div>
<div class="col-md-9 align-self-center">
<div class="schedule-content">
<p class="schedule-date">01.45 PM - 02.30 PM</p>
<a class="schedule-title" >
<h3>Transformational DevOps With AWS Native Tools (Level 200) </h3>
</a>
<p>Let's have a closer look at the evolution of DevOps process detailing the DevOps lifecycle and walkthrough how the AWS Native Developer Tools like AWS CodeCommit, AWS CodeBuild, AWS CodePipeline and AWS CodeDeploy can be used effectively to handle devops pipeline. Review the Web Application Deployment pipeline with the value addition that DevOps brings in for Software Development.</p>
</div>
</div>
</div>
</div>
<div class="schedule-card">
<div class="row no-gutters">
<div class="col-md-3">
<div class="card-identity">
<img src="img/speaker/Mahima.png" alt="">
<h3>Mahima Saran</h3>
<p>Technical Account Manager </p>
</div>
</div>
<div class="col-md-9 align-self-center">
<div class="schedule-content">
<p class="schedule-date">02.35 PM - 03.20 PM</p>
<a class="schedule-title" >
<h3>Building Cloud Native Applications Via Microservices (Level 200)</h3>
</a>
<p>Building Cloud Native Application is beyond development. It is essential to understand the key characteristics and aspects before starting with development. In this session we will cover the key characteristics and patterns of building cloud native applications via microservices. We will talk about transition strategies to migrate from monolithic application to cloud native application.</p>
</div>
</div>
</div>
</div>
</div>
<div id="day3" class="tab-pane">
<div class="schedule-card">
<div class="row no-gutters">
<div class="col-md-3">
<div class="card-identity">
<img src="img/speaker/Teri Radichel.jpg" alt="">
<h3>Teri Radichel</h3>
<p>Chief Executive Officer</p>
</div>
</div>
<div class="col-md-9 align-self-center">
<div class="schedule-content">
<p class="schedule-date">10.40 AM - 11.25 AM</p>
<a class="schedule-title" >
<h3>Real World Cloud Compromise</h3>
</a>
<p>Learn about vulnerabilities, misconfigurations, and security problems that may affect your cloud accounts, applications, and systems. This talk will include real world examples from security incidents, penetration testing, bug bounty reports, and data breaches. Teri Radichel will share sample findings from 2nd Sight Lab pentest and security assessment reports. Learn about common security problems in cloud environments and how to prevent them.</p>
<p></p>
</div>
</div>
</div>
</div>
<div class="schedule-card">
<div class="row no-gutters">
<div class="col-md-3">
<div class="card-identity">
<img src="img/speaker/Shinduri.jpg" alt="">
<h3>Shinduri K.S</h3>
<p>Solutions Architect</p>
</div>
</div>
<div class="col-md-9 align-self-center">
<div class="schedule-content">
<p class="schedule-date">11.30 AM - 12.15 PM</p>
<a class="schedule-title" >
<h3>3 Tier Web Application Hosting In AWS (Level 200)</h3>
</a>
<p>The three-tier architecture is the most popular implementation of a multi-tier architecture and consists of a single presentation tier, logic tier and data tier. In this talk, we demonstrate how serverless services from AWS can be used to change the way you design multi-tier architectures and implement a popular pattern such as single page applications. We will specifically focus on usage of Amazon API Gateway and AWS Lambda to enable the creation of a serverless logic tier and DynamoDB for data tier. </p>
</div>
</div>
</div>
</div>
<div class="schedule-card">
<div class="row no-gutters">
<div class="col-md-3">
<div class="card-identity">
<img src="img/speaker/Sridevi_1.jpg" alt="">
<h3>Sridevi Murugayen</h3>
<p>Senior Cloud Architect</p>
</div>
</div>
<div class="col-md-9 align-self-center">
<div class="schedule-content">
<p class="schedule-date">12.20 PM - 01.05 PM</p>
<a class="schedule-title" >
<h3>Building A Serverless Datalake (Level 200)</h3>
</a>
<p>In today’s business and technology world, massive amounts of data is produced every hour by businesses and users, which may be structured or unstructured. This vast and voluminous data must be ingested and transformed to derive meaningful insights.</p>
<p>This session will focus on how to build Serverless Data Lake using cloud-native and future-proof serverless data lake architecture. We will implement a Serverless data lake using AWS big data and analytics services including Amazon Kinesis Services for streaming data ingestion and analytics, AWS Glue for ETL and Data Catalogue Management, Amazon Athena to query Data Lake. </p>
</div>
</div>
</div>
</div>
<div class="schedule-card">
<div class="row no-gutters">
<div class="col-md-3">
<div class="card-identity">
<img src="img/speaker/Saira.jpg" alt="">
<h3>Saira Shaik</h3>
<p>Solutions Architect</p>
</div>
</div>
<div class="col-md-9 align-self-center">
<div class="schedule-content">
<p class="schedule-date">01.45 PM - 02.30 PM</p>
<a class="schedule-title" >
<h3>Introduction To AWS AI/ML Services & How They Help Transform Businesses (Level 200)</h3>
</a>
<p>We are embarking on the golden age of machine learning. Many of the constraints that typically held back the application of machine learning in the real world are starting to disappear. AWS offers a significant breadth and depth of cloud services. In this session, we explore the democratization of machine learning and how the growth of cloud services makes it easy for customers to move from idea to production with machine learning.</p><p>In this talk we will learn different components of AWS AI / ML Stack and how it helps to solve some of the Industry use cases with some cool demos.</p>
</div>
</div>
</div>
</div>
<div class="schedule-card">
<div class="row no-gutters">
<div class="col-md-3">
<div class="card-identity">
<img src="img/speaker/sukanya-01.jpeg" alt="">
<h3>Sukanya Mandal</h3>
<p>Data Scientist</p>
</div>
</div>
<div class="col-md-9 align-self-center">
<div class="schedule-content">
<p class="schedule-date">02.35 PM - 03.20 PM</p>
<a class="schedule-title" >
<h3>Demystifying MLOps With AWS (Level 300)</h3>
</a>
<p>To avoid the pitfalls of moving machine learning workloads to production, it is essential to adapt to modern MLOps strategies. This talk will demonstrate how we can build an effective MLOps pipeline - differentiating it from traditional SDLC and existing DevOps pipeline. We will utilise services such as AWS EKS, AWS Sagemaker and tools like Kubeflow/MLFlow. </p><p>At the end of this talk you will have an understanding of why MLOps is specifically required, in what way is it different from DevOps and how traditional SDLC is different from ML SDLC with practical use cases.</p>
</div>
</div>
</div>
</div>
</div>
<div id="day4" class="tab-pane">
<div class="schedule-card">
<div class="row no-gutters">
<div class="col-md-3">
<div class="card-identity">
<img src="img/speaker/Deepika_Nair.jpeg" alt="">
<h3>Deepika Nair</h3>
<p>Technical Trainer</p>
</div>
</div>
<div class="col-md-9 align-self-center">
<div class="schedule-content">
<p class="schedule-date">1.10 PM - 1.25 PM</p>
<a class="schedule-title" >
<h3>Sharpen Your Skills with AWS Training & Certification</h3>
</a>
<p>The Cloud has become the new normal and there is a constant need to upskill yourself on the variety of AWS services and solutions available. This session will enable you to understand the various role based learning paths and create your personalised learning journey. You will also understand the various classroom/ digital trainings and certifications offered by AWS Training and Certifications.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--================ Schedule section End =================-->
<!--================ Speaker section Start =================-->
<section class="speaker-bg section-padding" id="speaker">
<div class="container">
<div class="section-intro section-intro-white text-center pb-98px">
<p class="section-intro__title">Join the event</p>
<h2 class="primary-text">Meet The Speakers</h2>
<img src="img/home/section-style.png" alt="">
</div>
<div class="row">