-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathevents.html
245 lines (213 loc) · 14.8 KB
/
events.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
<!DOCTYPE html>
<html>
<head>
<title>
VIThink
</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--CSS-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<link rel="stylesheet" href="./css/styles.css">
<!--JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/actions.js"></script>
<!--Favicon-->
<link rel="apple-touch-icon" sizes="57x57" href="img/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="img/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="img/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="img/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="img/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="img/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="img/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="img/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="img/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon/favicon-16x16.png">
<link rel="manifest" href="img/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="img/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#191970">
</head>
<body style="font-family:'Merriweather Sans', sans-serif;">
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a role="button" style="color: #2f2f2f;" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span></span>
<span></span>
<span></span>
</a>
</div>
<div style="background-color: #2f2f2f; color: white;" id="navbarBasicExample" class="navbar-menu">
<div class="has-text-white navbar-start">
<a class="has-text-white home-tab navbar-item">
Home
</a>
<a class="has-text-white ai-training-tab navbar-item">
AI Training
</a>
<a class="has-text-white about-us-tab navbar-item">
About Us
</a>
<a class="has-text-white events-tab navbar-item">
Events
</a>
<a class="has-text-white mentors-tab navbar-item">
Mentors
</a>
<a class="has-text-white experience-tab navbar-item">
Student Experience
</a>
<a class="has-text-white resources-tab navbar-item">
Resources
</a>
</div>
</div>
</nav>
<section id="about-us" class="home section">
<div class="container">
<div class="container" id="main">
<img id="logo" class="image" src="img/VIThink_Logo.png" alt="VIThink">
</div>
<div class="container is-size-7 has-text-centered has-text-weight-bold" style="color: darkblue">
SCHOOL OF ELECTRONICS ENGINEERING (SENSE)<br>
<a href="http://chennai.vit.ac.in" class="has-text-dark">VELLORE INSTITUTE OF TECHNOLOGY, CHENNAI</a>
</div>
</section>
<section class="section">
<div class="container is-widescreen" style="text-align: center">
<!-- Code to zoom on hover. -->
<style>
.zoom {
transition: transform .2s; /* Animation */
margin: 0 auto;
}
.zoom:hover {
transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
box-shadow: 0 0 1000px 1000px rgba(0, 0, 0, 0.2), 0 0 1000px 1000px rgba(0, 0, 0, 0.19);
}
</style>
<div class="card events-card has-text-justified">
<div class="card-image">
<figure>
<img class="zoom" src="img/Events/sriniv2.jpeg" alt="Dr. Srinivasan discussing with students.">
</figure>
</div>
<div class="card-content">
<div class="media">
<div class="media-content">
<p class="title is-4">Talks with Dr. Srinivasan Rajagopalan and Dr. Susan Elias on our Research Work</p>
<p class="subtitle is-6" style="color: darkblue">@vitcc, Discussion Room, Central Library</p>
</div>
</div>
<div class="content">
Our mentors Dr. Srinivasan and Dr. Susan Elias sat with our members to discuss upon our research work and its feasibility. They guided us with further actions required for accomplising the goals that we have set forth.
Research work presented by different groups among VIThink included collection of dataset for Fake News Detection on Twitter, Making an application for identification and improvement of reading and writing in dyslexic children, studying various deep learning algorithms on character recognition, a study of dialects and accents and research in neuroeconomics.
Our mmotto is to not stop with just gaining knowledge in this field of machine learning but aim at using it to make this world a better place for humanity. We should aim to focus our talents
to have a certain social outreach with our work.
<br> <a href="#" style="color: darkblue">#ml</a> <a href="#" style="color: darkblue">#deeplearning</a>
<br>
<time datetime="2016-1-1" style="color: darkblue" class="has-text-weight-bold">26th October, 2018</time>
</div>
</div>
</div>
<div class="card events-card has-text-justified">
<div class="card-content">
<div class="media">
<div class="media-content">
<p class="title is-4">Visit to Nokia</p>
<p class="subtitle is-6" style="color: darkblue">@chennai, Nokia India Pvt. Ltd.</p>
</div>
</div>
<div class="content">
VIThink visited the Nokia Oragadam (Chennai) manufacturing unit, with the aim of collaborating with the company to solve industry-specific problems. After a comprehensive tour of the sprawling and 'smart' factory, we gathered to discuss our takeaways with the technical heads of the various verticals of the company. They presented us with various data science problems which they have identified in their plant processes. Solving them would save valuable production time and resources for the company.
To this effect, VIThink is to conduct workshops and work with the company in dedicated teams in the near future.
<br><a href="#" style="color: darkblue">#datascience</a> <a href="#" style="color: darkblue">#nokia</a>
<br>
<time datetime="2016-1-1" class="has-text-weight-bold" style="color: darkblue">27th September, 2018</time>
</div>
</div>
</div>
<div class="card events-card has-text-justified">
<div class="card-image">
<figure>
<img class="zoom" src="img/Events/DSC_0085.JPG" alt="Placeholder image">
</figure>
</div>
<div class="card-content">
<div class="media">
<div class="media-content">
<p class="title is-4">Machine Learning Workshop</p>
<p class="subtitle is-6" style="color: darkblue">@vitcc, Data Communication Lab</p>
</div>
</div>
<div class="content">
We conducted a two day Machine Learning workshop for our juniors to get acquinated to the subject and acquire a deep interest in it.
The main focus of this workshop was on regression and classification problems and an introduction to Neural Networks and Deep Learning.
Along with theory the students also indulged in hands on experience with ML in Python using Jupyter Notebook.
<a href="#" style="color: darkblue">#ml</a> <a href="#" style="color: darkblue">#deeplearning</a>
<br>
<time datetime="2016-1-1" class="has-text-weight-bold" style="color: darkblue">3rd and 4th August, 2018</time>
</div>
</div>
</div>
<div class="card events-card has-text-justified">
<div class="card-image">
<figure>
<img class="zoom" src="img/Events/ebe-m.jpeg" alt="Ebe's Workshop">
</figure>
</div>
<div class="card-content">
<div class="media">
<div class="media-content">
<p class="title is-4">Dr Ebenezer R.H.P Isaac's Presentation</p>
<p class="subtitle is-6" style="color: darkblue">@vitcc, AB1 506</p>
</div>
</div>
<div class="content">
Dr. Ebenezer gave us a presentation on his PhD. research on Gait Analysis and using gait as a form of biometric signature.
He also gave us live demo with the data he collected over time and showed us how its done.
<a href="#">#ml</a> <a href="#">#gait_analysis</a>
<br>
<time datetime="2016-1-1" style="color: darkblue" class="has-text-weight-bold">27th July, 2018</time>
</div>
</div>
</div>
<div class="card events-card has-text-justified">
<div class="card-image">
<!-- <figure>
<img class="zoom" src="img/Events/ebe-m.jpeg" alt="Ebe's Workshop">
</figure> -->
</div>
<div class="card-content">
<div class="media">
<div class="media-content">
<p class="title is-4">Talks with Dr. Srinivasan Rajagopalan on the future of Machine Learning</p>
<p class="subtitle is-6" style="color: darkblue">@vitcc, AB1 506</p>
</div>
</div>
<div class="content">
The members of the Executive board and the Office Bearers had a meeting with Dr. Srinivasan for understanding the scope of AI research and to gain knowledge from his experince.
This is our very first meeting. Dr. Srinivasan helped us get an idea of where we can go with AI research and where to start.
<a href="#" style="color: darkblue">#ml</a> <a href="#" style="color: darkblue">#gait_analysis</a>
<br>
<time datetime="2016-1-1" style="color: darkblue" class="has-text-weight-bold">20th July, 2018</time>
</div>
</div>
</div>
</div>
</section>
<section id="footer" class="section is-widescreen has-text-justified">
<div class="foot has-text-centered has-text-white" style="top: 560px;">
2018, AI <i class="fas fa-heart" style="color: red"></i>
</div>
<div>
<div class="email is-size-7 has-text-centered has-text-white">[email protected]</div>
</div>
<div class="is-size-7 has-text-centered has-text-white"><a href="https://chat.whatsapp.com/invite/7FBSWSPrIM11IuV6gVsCNR">WhatsApp</a></div>
</section>
</body>
</html>