-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
1186 lines (938 loc) · 54.8 KB
/
index.html
File metadata and controls
1186 lines (938 loc) · 54.8 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>TRS BVM</title>
<meta content="" name="descriptison">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/apple-touch-icon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.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">
<!-- =======================================================
* Template Name: Scaffold - v2.0.0
* Template URL: https://bootstrapmade.com/scaffold-bootstrap-metro-style-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<style type="text/css">
*{
/*border: 0.5px dashed green;*/
}
</style>
<body>
<!-- ======= Header =======
<header id="header" class="fixed-top">
<div class="container d-flex">
<!---<img src="assets/img/BVM.png" align="left" style="width:50px;height:50px;">
<div class="logo mr-auto">
<h1 class="text-light"><a href="index.html"><span>TRS BVM STUDENT CHAPTER</span></a></h1>
<!-- Uncomment below if you prefer to use an image logo
<a href="index.html"><img src="aassets/img/BVM.png" alt="" class="img-fluid"></a>
</div>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li class="drop-down"><a href="">About</a>
<ul>
<li><a href="#about">About Us</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li class="drop-down"><a href="#">Deep Drop Down</a>
<ul>
<li><a href="#">COMING SOON</a></li>
<li><a href="#">COMING SOON</a></li>
<li><a href="#">COMING SOON</a></li>
<li><a href="#">COMING SOON</a></li>
<li><a href="#">COMING SOON</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="event.html">EVENTS</a></li>
<li><a href="#portfolio">PROJECTS</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav><!-- .nav-menu
<div class="header-social-links">
<a href="https://twitter.com/BvmTrs?s=09" class="twitter"><i class="icofont-twitter"></i></a>
<a href="https://www.facebook.com/TRS-BVM-113503333663264/" class="facebook"><i class="icofont-facebook"></i></a>
<a href="https://instagram.com/trs_bvm?igshid=xmc4crlq2orp" class="instagram"><i class="icofont-instagram"></i></a>
<a href="https://www.linkedin.com/in/trs-bvm-student-chapter-b4796b1a6" class="linkedin"><i class="icofont-linkedin"></i></i></a>
</div>
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>TRS BVM</title>
<meta content="" name="descriptison">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/apple-touch-icon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.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="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<!-- =======================================================
* Template Name: Scaffold - v2.0.0
* Template URL: https://bootstrapmade.com/scaffold-bootstrap-metro-style-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex">
<!---<img src="assets/img/BVM.png" align="left" style="width:50px;height:50px;">-->
<div class="logo mr-auto">
<h1 class="text-light"><a href="index.html"><span>TRS BVM Student Chapter</span></a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<a href="index.html"><img src="aassets/img/BVM.png" alt="" class="img-fluid"></a>
</div>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li class="drop-down"><a href="">Teams</a>
<ul>
<li><a href="executive.html">Executive Members</a></li>
<li><a href="faculty.html">Faculty Members</a></li>
<li><a href="branchcordinator.html">Branch Coordinators</a></li>
<li><a href="rd.html">R&D Leads</a></li>
<li><a href="fi.html">Finance And Inventory Leads</a></li>
<li><a href="docu.html">Documentation Leads</a></li>
<li><a href="graphics.html">Graphics Leads</a></li>
<li><a href="webdevloper.html">Website Developers</a></li>
</ul>
</li>
<li><a href="event.html">Events</a></li>
<li><a href="index.html#portfolio">Projects</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav><!-- .nav-menu -->
<div class="header-social-links">
<a href="https://twitter.com/BvmTrs?s=09" class="twitter"><i class="icofont-twitter"></i></a>
<a href="https://www.facebook.com/TRS-BVM-113503333663264/" class="facebook"><i class="icofont-facebook"></i></a>
<a href="https://instagram.com/trs_bvm?igshid=xmc4crlq2orp" class="instagram"><i class="icofont-instagram"></i></a>
<a href="https://www.linkedin.com/in/trs-bvm-student-chapter-b4796b1a6" class="linkedin"><i class="icofont-linkedin"></i></i></a>
</div>
</div>
</header><!-- End Header -->
<br>
</main><!-- End #main -->
<section id="hero">
<div class="container" >
<div class="row">
<div class="col-lg-6 pt-5 pt-lg-0 order-2 order-lg-1 d-flex flex-column justify-content-center" data-aos="fade-up">
<div>
<h1>The Way To Predict Future Is To Invent.</h1>
<strong><b><h2>LEARN | EXPLORE | INNOVATE </h2></b></strong>
<h5>
Only Available To Members Of BVM</h5><br>
<a href="#about" class="btn-get-started scrollto">Get Started</a>
</div>
</div>
<div class="col-lg-6 order-1 order-lg-2 hero-img" data-aos="fade-left">
<!-- <img src="assets/img/about.jpg" class="img-fluid" alt="this slowpoke moves"> -->
<iframe width="100%" height="300vh" src="https://www.youtube.com/embed/x54AGX9miN8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
</section><!-- End Hero -->
<br><br><br>
<main>
<div class="container">
<div class="carousel slide" id="main-carousel" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#main-carousel" data-slide-to="0" class="active"></li>
<li data-target="#main-carousel" data-slide-to="1"></li>
<li data-target="#main-carousel" data-slide-to="2"></li>
<li data-target="#main-carousel" data-slide-to="3"></li>
</ol><!-- /.carousel-indicators -->
<div class="carousel-inner" >
<div class="carousel-item active">
<img class="d-block img-fluid" src="assets/img/Website.jpg" alt="">
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<div class="carousel-item" >
<img class="d-block img-fluid" src="assets/img/2021.jpeg" alt="">
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<!-- <div class="carousel-item">
<img class="d-block img-fluid" src="https://s19.postimg.cc/99hh9lr5v/slide3.jpg" alt="">
<div class="carousel-caption d-none d-md-block">
</div>
</div> -->
</div><!-- /.carousel-inner -->
<a href="#main-carousel" class="carousel-control-prev" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
<span class="sr-only" aria-hidden="true">Prev</span>
</a>
<a href="#main-carousel" class="carousel-control-next" data-slide="next">
<span class="carousel-control-next-icon"></span>
<span class="sr-only" aria-hidden="true">Next</span>
</a>
</div><!-- /.carousel -->
</div><!-- /.container -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" >
<class class="content pt-4 pt-lg-0" >
<p class="row" >
<p class="font-italic"></p>
<h2>What can you do as a member of the Robotics Society?</h2><br><br>
<ul>
<li><i class="icofont-check-circled"></i>The Robotics Society (TRS), India empowers technical institutions in India to start authorized TRS Student Chapters. A group of researchers, industrialists, and students working in different domains of robotics together make our society. Under The Robotics Society, BVM was fortunate to be bestowed as the TRS Student Chapter.
</li><br><br>
<li><i class="icofont-check-circled"></i>
Regular meetings help us connect with every member and also updates every member with the latest technology. Because we believe that technology will not replace great teachers, but technology in the hands of great teachers is transformational. After the provision of the Student Chapter, forum and guidelines were provided to the members.</li><br><br>
<li><i class="icofont-check-circled"></i> We at TRS BVM believe that any sufficiently advanced technology is equivalent to magic. And this magic is reflected in our projects, which are being constructed by the help of faculty and MTech Students. We think we are a team not because we work together but because we respect each other and welcome every member's ideas and projects from their innovative minds. Webinars, Workshops, and Hackathon participation makes us going with the trend.
</li><br><br>
</ul>
</p>
</class>
</p>
</div>
</section>
<!--<div class="row" >-->
<!--<div class="col-lg-6" data-aos="zoom-in">
<img src="assets/img/about.jpg" class="img-fluid" alt="this slowpoke moves"style="height:95%;">
</div>
<div class="col-lg-6 d-flex flex-column justify-contents-center" data-aos="fade-left">
<div class="content pt-4 pt-lg-0" >
<h3>What can you do as a member of the Robotics Society?</h3>
<p class="font-italic">
</p>
<!-- <ul>
<li><i class="icofont-check-circled"></i> HACK: Create a team and build an incredible project over a weekend at one of our hackathons</li>
<li><i class="icofont-check-circled"></i> COMPETE: Join one of our robotics teams - we organise teams for Eurobot,and PiWars as well as run our own internal Sumobots competition.</li>
<li><i class="icofont-check-circled"></i> MEET: Come along to exciting talks and connect with like-minded people</li>
</ul>
<ul>
<li><i class="icofont-check-circled"></i>The Robotics Society (TRS), India empowers technical institutions in India to start authorized TRS Student Chapters. A group of researchers, industrialists, and students working in different domains of robotics together make our society. Under The Robotics Society, BVM was fortunate to be bestowed as the TRS Student Chapter.
</li>
<li><i class="icofont-check-circled"></i>
Regular meetings help us connect with every member and also updates every member with the latest technology. Because we believe that technology will not replace great teachers, but technology in the hands of great teachers is transformational. After the provision of the Student Chapter, forum and guidelines were provided to the members.</li>
<li><i class="icofont-check-circled"></i> We at TRS BVM believe that any sufficiently advanced technology is equivalent to magic. And this magic is reflected in our projects, which are being constructed by the help of faculty and MTech Students. We think we are a team not because we work together but because we respect each other and welcome every member's ideas and projects from their innovative minds. Webinars, Workshops, and Hackathon participation makes us going with the trend.
</li>
</ul>
<p>
To join our community and start creating
</p>
</div>
</div>
<!--</div>
</div>
</section><!-- End About Section -->
<!-- ======= Features Section =======
<section id="features" class="features">
<div class="container">
<div class="row">
<div class="col-lg-6 mt-2 mb-tg-0 order-2 order-lg-1">
<ul class="nav nav-tabs flex-column">
<li class="nav-item" data-aos="fade-up">
<a class="nav-link active show" data-toggle="tab" href="#tab-1">
<h4>Modi sit est</h4>
<p>Quis excepturi porro totam sint earum quo nulla perspiciatis eius.</p>
</a>
</li>
<li class="nav-item mt-2" data-aos="fade-up" data-aos-delay="100">
<a class="nav-link" data-toggle="tab" href="#tab-2">
<h4>Unde praesentium sed</h4>
<p>Voluptas vel esse repudiandae quo excepturi.</p>
</a>
</li>
<li class="nav-item mt-2" data-aos="fade-up" data-aos-delay="200">
<a class="nav-link" data-toggle="tab" href="#tab-3">
<h4>Pariatur explicabo vel</h4>
<p>Velit veniam ipsa sit nihil blanditiis mollitia natus.</p>
</a>
</li>
<li class="nav-item mt-2" data-aos="fade-up" data-aos-delay="300">
<a class="nav-link" data-toggle="tab" href="#tab-4">
<h4>Nostrum qui quasi</h4>
<p>Ratione hic sapiente nostrum doloremque illum nulla praesentium id</p>
</a>
</li>
</ul>
</div>
<div class="col-lg-6 order-1 order-lg-2" data-aos="zoom-in">
<div class="tab-content">
<div class="tab-pane active show" id="tab-1">
<figure>
<img src="assets/img/features-1.png" alt="this slowpoke moves" class="img-fluid">
</figure>
</div>
<div class="tab-pane" id="tab-2">
<figure>
<img src="assets/img/features-2.png" alt="this slowpoke moves" class="img-fluid">
</figure>
</div>
<div class="tab-pane" id="tab-3">
<figure>
<img src="assets/img/features-3.png" alt="this slowpoke moves" class="img-fluid">
</figure>
</div>
<div class="tab-pane" id="tab-4">
<figure>
<img src="assets/img/features-4.png" alt="this slowpoke moves" class="img-fluid">
</figure>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Features Section -->
<!-- ======= Services Section =======
<section id="services" class="services section-bg">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h1>EVENT ON 24 april 2020</h1><br><br>
<h4>• An Approach towards Machine Learning and Artificial Intelligence</h4><br>
</div>
<div class="row">
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in">
<div class="icon-box icon-box-blue">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4 class="title"><a href="">APPLICATIONS</a></h4>
<p class="description"></p>
<p class="description">There are the immense applications of Machine learning and Artificial Intelligence in diverse industries like pharmaceutical, Technologies, E-commerce and especially in Industry 4.0.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box icon-box-green">
<div class="icon"><i class="bx bx-file"></i></div>
<h4 class="title"><a href="">MAIN OBJECTIVE</a></h4>
<p class="description">To make the quarantine a fruitful one, TRS BVM Student Chapter conducted an informative and surplus Webinar on “Approach towards Machine Learning and Artificial Intelligence.” The main objective was to make everyone aware of the future upcoming technologies which will dominate throughout every field.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in" data-aos-delay="200">
<div class="icon-box icon-box-blue">
<div class="icon"><i class="bx bx-tachometer"></i></div>
<h4 class="title"><a href="">ABOUT SPEAKER</a></h4>
<p class="description"><h4>Mr Dwijay Rane</h4></p>
<p class="description">R&D Project Manager at Edutech Learning Solution Pvt. Ltd.Currently,</p>
<p class="description"> he is working on improving localization and navigation for autonomy.</p>
<p class="description">He is an Embedded Engineer turned into Robotics Engineer who loves programming and interfacing</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box icon-box-blue">
<div class="icon"><i class="bx bx-world"></i></div>
<h4 class="title"><a href="">SKILLS OF SPEAKER</a></h4>
<p class="description">C++, Python, CUDA, ROS, Gazebo, SLAM, PyTorch, Tensorflow, OpenCV, ML, H2O.ai</p><br><br>
<h4 class="title"><a href="">CONNECT WITH SPEAKER</a></h4>
<div class="header-social-links">
<a href="https://twitter.com/BvmTrs?s=09" class="twitter"><i class="icofont-twitter"></i></a>
<a href="https://www.facebook.com/TRS-BVM-113503333663264/" class="facebook"><i class="icofont-facebook"></i></a>
<a href="https://instagram.com/trs_bvm?igshid=xmc4crlq2orp" class="instagram"><i class="icofont-instagram"></i></a>
<a href="https://www.linkedin.com/in/trs-bvm-student-chapter-b4796b1a6" class="linkedin"><i class="icofont-linkedin"></i></i></a>
</div>
</div>-->
<!--<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box icon-box-pink">
<div class="icon"><i class="bx bx-world"></i></div>
<h4 class="title"><a href=""></a></h4>
<p class="description">To make the quarantine a fruitful one, TRS BVM Student Chapter conducted an informative and surplus Webinar on “Approach towards Machine Learning and Artificial Intelligence.” The main objective was to make everyone aware of the future upcoming technologies which will dominate throughout every field. There are the immense applications of Machine learning and Artificial Intelligence in diverse industries like pharmaceutical, Technologies, E-commerce and especially in Industry 4.0.
</p>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box icon-box-cyan">
<div class="icon"><i class="bx bx-world"></i></div>
<h4 class="title"><a href="">Nemo Enim</a></h4>
<p class="description">R&D Project Manager at Edutech Learning Solution Pvt. Ltd.
He is an Embedded Engineer turned into Robotics Engineer who loves programming and interfacing. His recent project involves simulation and hardware glue for learning state estimation, machine learning, and reinforcement learning. Currently, he is working on improving localization and navigation for autonomy.
Skills: C++, Python, CUDA, ROS, Gazebo, SLAM, PyTorch, Tensorflow, OpenCV, ML, H2O.ai
Date: 05th April 2020
Time: 4 PM IST
</p>
</div>-->
</div>
</div>
</div>
</section><!-- End Services Section -->
<div class="container">
<div class="carousel slide" id="main-carousel" data-ride="carousel">
<ol class="carousel-indicators" >
<li data-target="#main-carousel" data-slide-to="0" class="active"></li>
<li data-target="#main-carousel" data-slide-to="1"></li>
<li data-target="#main-carousel" data-slide-to="2"></li>
<li data-target="#main-carousel" data-slide-to="3"></li>
<li data-target="#main-carousel" data-slide-to="4"></li>
<li data-target="#main-carousel" data-slide-to="5"></li>
<li data-target="#main-carousel" data-slide-to="6"></li>
<li data-target="#main-carousel" data-slide-to="7"></li>
<li data-target="#main-carousel" data-slide-to="8"></li>
<li data-target="#main-carousel" data-slide-to="9"></li>
</ol><!-- /.carousel-indicators -->
<div class="carousel-inner" >
<div class="carousel-item active" >
<img class="d-block img-fluid" src="assets/img/Main Page Gallery Caseroule/1.jpeg" alt="" style="height: 500px;width: 100%;">
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<div class="carousel-item" >
<img class="d-block img-fluid" src="assets/img/Main Page Gallery Caseroule/2.jpeg" alt=""style="height: 500px;width: 100%;">
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<div class="carousel-item" >
<img class="d-block img-fluid" src="assets/img/Main Page Gallery Caseroule/IMG-20201111-WA0008.jpg" alt=""style="height: 500px;width: 100%;">
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<div class="carousel-item" >
<img class="d-block img-fluid" src="assets/img/Main Page Gallery Caseroule/IMG-20201214-WA0005.jpg" alt=""style="height: 500px;width: 100%;">
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<div class="carousel-item" >
<img class="d-block img-fluid" src="assets/img/Main Page Gallery Caseroule/IMG-20210104-WA0001.jpg" alt=""style="height: 500px;width: 100%;">
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<div class="carousel-item" >
<img class="d-block img-fluid" src="assets/img/Main Page Gallery Caseroule//IMG-20210105-WA0002.jpg" alt=""style="height: 500px;width: 100%;">
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<div class="carousel-item" >
<img class="d-block img-fluid" src="assets/img/Main Page Gallery Caseroule/IMG-20210105-WA0003.jpg" alt=""style="height: 500px;width: 100%;">
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<div class="carousel-item" >
<img class="d-block img-fluid" src="assets/img/Main Page Gallery Caseroule/SAVE_20210105_102315.jpg" alt=""style="height: 600px;width: 100%;">
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<!-- <div class="carousel-item">
<img class="d-block img-fluid" src="https://s19.postimg.cc/99hh9lr5v/slide3.jpg" alt="">
<div class="carousel-caption d-none d-md-block">
</div>
</div> -->
</div><!-- /.carousel-inner -->
<a href="#main-carousel" class="carousel-control-prev" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
<span class="sr-only" aria-hidden="true">Prev</span>
</a>
<a href="#main-carousel" class="carousel-control-next" data-slide="next">
<span class="carousel-control-next-icon"></span>
<span class="sr-only" aria-hidden="true">Next</span>
</a>
</div><!-- /.carousel -->
</div><!-- /.container -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio" >
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>PROJECTS</h2>
<p></p>
</div>
<div class="row">
<div class="col-lg-12 d-flex justify-content-center" data-aos="fade-up" data-aos-delay="100">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">ALL</li>
<li data-filter=".filter-app">2019-20</li>
<li data-filter=".filter-card">2020-21</li>
<!-- <li data-filter=".filter-web">2k20</li> -->
</ul>
</div>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="200">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="salient.jpg" class="img-fluid" alt="this slowpoke moves">
<div class="portfolio-info">
<h4>PAINTING ROBOT</h4>
</div>
<div class="portfolio-links">
<a href="salient.jpg" data-gall="portfolioGallery" class="venobox" title="App 1"><i class="bx bx-plus"></i></a>
<a href="project-1.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
q
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="quad.png" class="img-fluid" alt="this slowpoke moves">
<div class="portfolio-info">
<h4>Quadruped</h4>
</div>
<div class="portfolio-links">
<a href="quad.png" data-gall="portfolioGallery" class="venobox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="project-2.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/Final Rover_9_Team BVM copy.jpg" class="img-fluid" alt="this slowpoke moves">
<div class="portfolio-info">
<h4>ROVER</h4>
</div>
<div class="portfolio-links">
<a href="assets/img/Final Rover_9_Team BVM copy.jpg" data-gall="portfolioGallery" class="venobox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="project-3.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="isoview1.png" class="img-fluid" alt="this slowpoke moves">
<div class="portfolio-info">
<h4>Biped Robot</h4>
</div>
<div class="portfolio-links">
<a href="isoview1.png" data-gall="portfolioGallery" class="venobox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="isoview.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/2021p2.jpeg" class="img-fluid" alt="this slowpoke moves">
<div class="portfolio-info">
<h4>Quadruped : Four Legged Robot</h4>
</div>
<div class="portfolio-links">
<a href="assets/img/2021p2.jpeg" data-gall="portfolioGallery" class="venobox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="Quadruped21.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/2021p2.jpeg" class="img-fluid" alt="this slowpoke moves">
<div class="portfolio-info">
<h4>Underwater Robot</h4>
</div>
<div class="portfolio-links">
<a href="assets/img/2021p2.jpeg" data-gall="portfolioGallery" class="venobox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="UnderwaterRobot.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/2021p2.jpeg" class="img-fluid" alt="this slowpoke moves">
<div class="portfolio-info">
<h4>Prosthetic Limbs </h4>
</div>
<div class="portfolio-links">
<a href="assets/img/2021p2.jpeg" data-gall="portfolioGallery" class="venobox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="prosthetic.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card" style="margin-right: auto;margin-left: auto;">
<div class="portfolio-wrap">
<img src="assets/img/2021p2.jpeg" class="img-fluid" alt="this slowpoke moves">
<div class="portfolio-info">
<h4>Pipe Climbing Robot</h4>
</div>
<div class="portfolio-links">
<a href="assets/img/2021p2.jpeg" data-gall="portfolioGallery" class="venobox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="PipeClimbingRobot.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card" style="margin-right: auto;margin-left: auto;">
<div class="portfolio-wrap">
<img src="assets/img/2021p2.jpeg" class="img-fluid" alt="this slowpoke moves">
<div class="portfolio-info">
<h4>Microbots </h4>
</div>
<div class="portfolio-links">
<a href="assets/img/2021p2.jpeg" data-gall="portfolioGallery" class="venobox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="Microbots.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<!--<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/Tech Font/screedbot (1).gif" class="img-fluid" alt="this slowpoke moves">
<div class="portfolio-info">
<h4>Card 2</h4>
<p>Card</p>
</div>
<div class="portfolio-links">
<a href="assets/img/Tech Font/screedbot (1).gif" data-gall="portfolioGallery" class="venobox" title="Card 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/Tech Font/screedbot (1).gif" class="img-fluid" alt="this slowpoke moves">
<div class="portfolio-info">
<h4>Web 2</h4>
<p>Web</p>
</div>
<div class="portfolio-links">
<a href="assets/img/Tech Font/screedbot (1).gif" data-gall="portfolioGallery" class="venobox" title="Web 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/Tech Font/screedbot (1).gif" class="img-fluid" alt="this slowpoke moves">
<div class="portfolio-info">
<h4>App 3</h4>
<p>App</p>
</div>
<div class="portfolio-links">
<a href="assets/img/Tech Font/screedbot (1).gif" data-gall="portfolioGallery" class="venobox" title="App 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/Tech Font/screedbot (1).gif" class="img-fluid" alt="this slowpoke moves">
<div class="portfolio-info">
<h4>Card 1</h4>
<p>Card</p>
</div>
<div class="portfolio-links">
<a href="assets/img/Tech Font/screedbot (1).gif" data-gall="portfolioGallery" class="venobox" title="Card 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/Tech Font/screedbot (1).gif" class="img-fluid" alt="this slowpoke moves">
<div class="portfolio-info">
<h4>Card 3</h4>
<p>Card</p>
</div>
<div class="portfolio-links">
<a href="assets/img/Tech Font/screedbot (1).gif" data-gall="portfolioGallery" class="venobox" title="Card 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/Tech Font/screedbot (1).gif" class="img-fluid" alt="this slowpoke moves">
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
</div>
<div class="portfolio-links">
<a href="assets/img/Tech Font/screedbot (1).gif" data-gall="portfolioGallery" class="venobox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>-->
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Cta Section =======
<section id="cta" class="cta">
<div class="container">
<div class="row" data-aos="zoom-in">
<div class="col-lg-9 text-center text-lg-left">
<h3>Call To Action</h3>
<p> Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
<div class="col-lg-3 cta-btn-container text-center">
<a class="cta-btn align-middle" href="#">Call To Action</a>
</div>
</div>
</div>
</section><!-- End Cta Section -->
<!-- ======= Clients Section ======= -->
<section id="clients" class="clients">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>TECH WE USE</h2>
<p></p>
</div>
<div class="row no-gutters clients-wrap clearfix wow fadeInUp">
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="client-logo" data-aos="zoom-in">
<img src="assets/img/Tech Font/20200524_104229.png" class="img-fluid" alt="this slowpoke moves">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="client-logo" data-aos="zoom-in" data-aos-delay="100">
<img src="assets/img/Tech Font/20200524_115313.png" class="img-fluid" alt="this slowpoke moves">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="client-logo" data-aos="zoom-in" data-aos-delay="150">
<img src="assets/img/Tech Font/20200524_142738.png" class="img-fluid" alt="this slowpoke moves">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="client-logo" data-aos="zoom-in" data-aos-delay="200">
<img src="assets/img/Tech Font/20200524_142801.png" class="img-fluid" alt="this slowpoke moves">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="client-logo" data-aos="zoom-in" data-aos-delay="250">
<img src="assets/img/Tech Font/SAVE_20200524_123034.png" class="img-fluid" alt="this slowpoke moves">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="client-logo" data-aos="zoom-in" data-aos-delay="300">
<img src="assets/img/Tech Font/Untitled-21.png" class="img-fluid" alt="this slowpoke moves">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="client-logo" data-aos="zoom-in" data-aos-delay="350">
<img src="assets/img/Tech Font/Untitled-3.png" class="img-fluid" alt="this slowpoke moves">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6" data-aos="zoom-in" data-aos-delay="400">
<div class="client-logo">
<img src="assets/img/Tech Font/Untitled-4.png" class="img-fluid" alt="this slowpoke moves">
</div>
</div>
</div>
</div>
</section><!-- End Clients Section -->
<!-- ======= F.A.Q Section ======= -->
<section id="faq" class="faq">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Frequently Asked Questions</h2>
</div>
<ul class="faq-list">
<li data-aos="fade-up">
<a data-toggle="collapse" class="" href="#faq1">How can I get started with TRS BVM Student Chapter? <i class="icofont-simple-up"></i></a>
<div id="faq1" class="collapse show" data-parent=".faq-list">
<p>
You can join our group easily by visiting and filling the below link <span> <a href="https://bit.ly/TRS_Membership_2020-2021" > form </a> </span>
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="100">
<a data-toggle="collapse" href="#faq2" class="collapsed">How does TRS BVM SB work?<i class="icofont-simple-up"></i></a>
<div id="faq2" class="collapse" data-parent=".faq-list">
<p>
<h6>The TRS BVM team is divided into 4 groups namely:- </h6></br>
<b>Team Documentation:</b> Dealing with the formats of some official letters, make excel records, prepare mails, etc.<br><br>
<b>Team Graphics:</b> Handling poster making, Editing photos and videos of events, Make templates of letters, etc<br><br>
<b>Team Finance and Inventory:</b> Maintain Financial records, maintain records of Expenditure, maintain the Equipment inventory,i.e., what equipments are available, which are required, which are damaged, etc. <br><br>
<b>Team Developer’s:</b> Overseeing website and maintaining updates on it Regularly. (Only for IT and CP Branch)<br><br>
We all work hands clasped believing that talent wins games, but teamwork and intelligence win championships.<br><br>
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200">
<a data-toggle="collapse" href="#faq3" class="collapsed"> What are our ongoing projects?<i class="icofont-simple-up"></i></a>
<div id="faq3" class="collapse" data-parent=".faq-list">
<p>
We are working on the following project:-<br>
1. 6 Wheeled All-Terrain Rover (Using NVIDIA Jetson Nano)<br>
2. Quadrupole Robot<br>
3. PID Controlled Line Follower<br>
4. Micro Mouse Robot<br>
5. Aerial Vehicles <br>
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300">
<a data-toggle="collapse" href="#faq4" class="collapsed">Workspace of TRS BVM Student Chapter? <i class="icofont-simple-up"></i></a>
<div id="faq4" class="collapse" data-parent=".faq-list">
<p>
We have Robotics lab in our college where we all work after college hours which is 24*7 accessible with all the necessary facilities.<br>
We also have<br>
● 3D Printer<br>
● Demonstrating robots<br>
● Toolkits and Machines (Including CNC Machine)<br>
● Access to Mechanical Workshop<br>
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="400">
<a data-toggle="collapse" href="#faq5" class="collapsed">Why should one join us?<i class="icofont-simple-up"></i></a>
<div id="faq5" class="collapse" data-parent=".faq-list">
<p>
While playing we learn how we learn. We at TRS stand beside our teammates as their friend. TRS BVM SB will help one build his/her technical knowledge. One can be addicted to his new work easily by the help of the working and friendly atmosphere in our labs and dedicated seniors who help one solve their queries.
</p>
</div>
</li>
</ul>
</div>
</section><!-- End Frequently Asked Questions Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact section-bg">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Contact Us</h2>