summaryrefslogtreecommitdiff
path: root/website/templates/home.html
blob: a96082935294f5f55dcc2b64a1bc24f04e9c51b3 (plain)
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


{% load static %}
{% block header %}
<header class="masthead">
   <div class="overlay">
      <div class="container">
         <div class ="logo_header" style="font-size: 55%;margin-top: 3%;" >
            <img class="img-fluid" src="{% static 'img/Scipy_india_logo17.png' %}" alt="" />
            <!--<h1 style="color:black;font-family: Arial;font-weight: bold">
               <span style="color:black;font-size: 2.25em;font-family: Arial;font-weight: bold">SciPy</span> India
               </h1>-->
            <p style="color:#111111; font-size:28px;font-family: Merriweather;" >November 29 & 30 - 2017</p>
         </div>
         <center>
            <br><br>
            <div class="d-inline-block ">
               <a href="#register" style="width : 200px;float: left;border: none" class="btn btn-primary gradient" >Register
               </a>
            </div>
            <div class="d-inline-block">
               <a  href="#submit" style="width : 200px;float: right;border: none" class="btn btn-primary gradient">Submit
               </a>
            </div>
         </center>
      </div>
   </div>
</header>
{% endblock %}
</section>
<!-- ---------- about ------------ -->
<section id="about">
   <br>
   <br>
   <br>
   <br>
   <div class="container">
      <div class="row align-items-center">
         <div class="col-md-offset-4">
            <center>
               <h2>About</h2>
            </center>
            <hr class="horizontal">
            <div class="panel panel-default">
               <div class="panel-body">
                  <p align="justify" class="p-5">SciPy India is a conference providing opportunities to spread the use of the Python programming language in the Scientific Computing community in India. It provides a unique opportunity to interact with the "Who's who" of the Python for Scientific Computing fraternity and learn, understand, participate, and contribute to Scientific Computing using Python. One of the goals of the conference is to combine education, engineering, and science with computing through the medium of Python.
                  </p>
               </div>
            </div>
         </div>
      </div>
   </div>
</section>
<!-- ---------------------- -->
<!-- ---------- Speakers ------------ -->
<section id="speakers">
   <br>
   <br>
   <br>
   <br>
   <div class="container">
      <div class="row align-items-center">
         <div class="col-md-offset-4">
            <center>
               <h2>Speakers</h2>
            </center>
            <hr>
            <!-- Speaker 1 -->
            <div class="col-lg-6 col-sm-6 text-center mb-4" style="float: left;margin-top: 0px;">
               <br>
               <h6>Speaker</h6>
               <img class="img-fluid d-block mx-auto" src="{% static 'img/AjitSir_spkr.png' %}" alt="">
               <p align="justify">
               <center>Dr. Ajith Kumar <br>
                  <span style="font-size: 10px;">(RF &amp; Electronics Lab,  
                     <a href="http://www.iuac.res.in/" target="_blank">IUAC</a>)
                  </span>
               </center>
               <center>
                  <br>
                  <a href="https://github.com/expeyes" target="_blank">
                     <i style="font-size:30px;color: black;" class="fa fa-github" aria-hidden="true"></i>
                  </a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                  <a href="http://expeyes.in/" target="_blank">
                     <i class="fa fa-info" style="font-size:30px;color:black"></i>
                  </a>
               </center>
               </p>
               <p align="justify">His main area of work is development of instrumentation for particle accelerators and associated experiments, including radio-frequency accelerating structures, control and data acquisition systems, digital and radio frequency electronics modules. He initiated the Phoenix / expEYES project. ExpEYES is currently the cheapest educational system to teach science. 
               </p>
            </div>
            <!-- Speaker 2 -->
            <div class="col-lg-6 col-sm-6 text-center mb-4" style="float: right">
               <br>
               <h6>Keynote Speaker</h6>
               <img class="img-fluid d-block mx-auto" src="{% static 'img/me_pro.png' %}" alt="">
               <p align="justify">
               <center>Dr. Nelle Varoquaux<br>
                  <span style="font-size: 10px;">(Dept. of Statistics at UC Berkeley and a BIDS data science fellow)
                  </span>
               </center>
               <br>
               <center>
                  <a href="https://github.com/NelleV" target="_blank">
                     <i style="font-size:30px;color: black;" class="fa fa-github" aria-hidden="true"></i>
                  </a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                  <a href="https://bids.berkeley.edu/people/nelle-varoquaux" target="_blank">
                     <i class="fa fa-info" style="font-size:30px;color:black"></i>
                  </a>
               </center>
               </p>
               <p align="justify"> She received a PhD in computational
                  biology from École des Mines de Paris in 2015. Her research interests are in
                  statistical machine learning and scientific computing applied to molecular
                  biology problems, such as inferring the 3D architecture of the genome or
                  data-integration methods to better understand gene regulatory 
                  networks. Recently, as part of the interdisciplinary institute BIDS, she also
                  studies open-source communities and contributors in collaboration with social 
                  scientists.
               </p>
               <p align="justify">
                  She is a core-developer of scikit-learn, MarkUs and Matplotlib, was Program
                  Chair for Scipy in 2015 and 2016.
               </p>
            </div>
         </div>
      </div>
   </div>
</section>
<!-- ---------------------------------- -->
<!-- ---------- register ------ -->
<section id="register">
   <br>
   <br>
   <br>
   <br>
   <div class="container">
      <div class="row align-items-center">
         <div class="col-md-offset-4">
            <center>
               <h2>Register</h2>
            </center>
            <hr>
            <div class="panel panel-default">
               <table class="table" >
                  <colgroup>
                     <col width="20%" />
                     <col width="60%" />
                  </colgroup>
                  <tr>
                     <td bgcolor="#01c3d9">
                     <h5 style="color:#000000;">On-Spot Registration</h5>
                     <h9 style="color:#000000;font-size: 20px;"> Lite - &#8377;1000</h9><br>
                     <h9 style="color:#ff6600;font-size: 15px;">Subject to Availability</h9>
                     </td>
                     <td>This ticket allows you to ONLY attend the conference (tutorials + talks) for 2 Days (snacks for two days will be served). Does not include Accommodation, Lunch, Dinner &amp; T-Shirt. This is a non-refundable ticket.
                     </td>
                  </tr>
                  <tr>
                     <td bgcolor="#5cd8e7">
                        <h5 style="color:#000000;">On-Spot Registration</h5>
                        <h9 style="color:#000000;font-size: 20px;"> Regular - &#8377;2000</h9><br>
                        <h9 style="color:#ff6600;font-size: 15px;">Subject to Availability</h9>                     
                     </td>
                     <td>This ticket includes conference (tutorials + talks), lunch and snacks for 2 days and dinner for the first day. It does not include Accommodation & T-Shirt. This is a non-refundable ticket.
                     </td>
                  </tr>
                  <!--
                  <tr>
                     <td bgcolor="#01c3d9">
                        <h9 style="color:#000000;">Early Bird</h9>
                        <h2 style="color:#000000;font-size: 25px;">&#8377;1200</h2>
                        <h9 style="color:#000000;">(Till 25<sup>th</sup> Oct 2017)</h9>
                     </td>
                     <td>
                        This ticket includes conference (tutorials + talks), lunch, and snacks for 2 days and dinner for the first day. It does not include Accommodation & T-Shirt. This is a non-refundable ticket.
                     </td>
                  </tr>
                  <tr>
                     <td bgcolor = "#5cd8e7">
                        <h9 style="color:#000000;">Lite</h9>
                        <h2  style="color:#000000;font-size: 25px;">&#8377;600</h2>
                        <h9 style="color:#000000;">(Till 27<sup>th</sup> Nov 2017)</h9>
                     </td>
                     <td>
                        This Ticket allows you to ONLY attend the conference for 2 Days (snacks for two days will be served). Does not include any conference amenities (Accommodation, Lunch, Dinner & T-shirt). This is a non-refundable ticket.
                     </td>
                  </tr>
                  <tr>
                     <td bgcolor="#8cc9f0">
                        <h9 style="color:#000000;">Regular</h9>
                        <h2 style="color:#000000;font-size: 25px;">&#8377;1400</h2>
                        <h9 style="color:#000000;">(26<sup>th</sup> Oct - 27<sup>th</sup> Nov 2017)</h9>
                     </td>
                     <td>
                        This ticket includes conference (tutorials + talks), lunch and snacks for 2 days and dinner for the first day. It does not include Accommodation & T-Shirt. This is a non-refundable ticket.
                     </td>
                  </tr>-->
                  <tr>
                     <td bgcolor ="#9de8f1">
                        <h9 style="color:#000000;">Accomodation</h9>
                        <h2 style="color:#000000;font-size: 25px;">&#8377;600</h2>
                        <h9 style="color:#000000;">Add On</h9>
                     </td>
                     <td>
                        Accommodation is provided on a shared basis inside IIT-B campus. Accommodation will be provided for 2 days, i.e, 28-29 and 29-30 November. Accommodation does not include other amenities like dinner, etc. Extension of period of stay is not available. This is a non-refundable ticket.
                     </td>
                  </tr>   
                  <tr>
                     <td bgcolor= "#cef3f8">
                        <h9 style="color:#000000;">T-Shirt</h9>
                        <h2 style="color:#000000;font-size: 25px;">&#8377;350</h2>
                        <h9 style="color:#000000;">Add On</h9>
                     </td>
                     <td>
                        Change of size, exchange at the venue is not available. This is a non-refundable ticket. <span style="color:#ff6600;">The T-Shirt shall be distributed during the evening tea break on Day 1 (29 November 2017).</span>
                     </td>
                  </tr>
               </table>
               <p id="demo"></p>
               <center>
                  <p class="p-5">
                     <strong>Group Registration Discount:</strong><span style="color:#ff6600;"> For 5 or more registrations done together, a 20% discount shall be provided. The same will be applied automatically at the time of registration. </span>
                  </p>
               </center>
               <footer class="major">
                  <ul class="actions">
                     <center>
                        <!--<a href="#attend" style="width : 150px;" class="btn btn-primary gradient" >Register</a></a>-->
                        <button onclick="popup('scipy-india-2017');" class="btn btn-primary gradient" style="border: none;">Register Now
                        </button>
                        <noscript id="tsNoJsMsg">Javascript on your browser is not enabled.</noscript>
                        <script src="//www.townscript.com/popup-widget/townscript-widget.nocache.js" type="text/javascript">
                        </script>
                        <!--<iframe src="https://www.townscript.com/widget/scipy-india-2017" frameborder="0" height="600" width="80%"></iframe>-->
                     </center>
                  </ul>
               </footer>
            </div>
         </div>
      </div>
   </div>
</section>


<!-- ------------------------ -->
<!-- Submit -->
<section id="submit">
   <br>
   <br>
   <br>
   <br>
   <div class="container">
      <div class="row align-items-center">
         <div class="col-md-offset-4">
            <center>
               <h2>Submit a Paper/Workshop</h2>
            </center>
            <hr class="horizontal">
            <div class="panel panel-default">
               <div class="panel-body">
                  <p align="justify" class="p-5">We invite you to submit proposals for talks or workshops to be presented at SciPy 2017. The time duration for talks is 15 or 30 minutes and for workshops is 2 to 4 hours. There will be two parallel tracks for the workshops this year. One track is meant for beginners and the other is for advanced users. 
                  </p>
                  <center>
                     <span>
                  <h4>
                     <u>Important Dates</u>
                  </h4>               
                     </span>
                  </center>
                  <div class="row align-items-center" style="margin-left: 3%;margin-right:3%;"> 
                     <div class="col-sm-4" style="background-color: #5cd8e7;" ><br>
                        <p> Call for proposals opens:<br> 
                           <b>15<sup>th</sup> Sept. 2017</b>
                        </p>
                     </div>
                     <div class="col-sm-4" style="background-color: #9de8f1;"><br>
                        <p>Last date for submission of proposals:<br>
                           <b>10<sup>th</sup> Nov. 2017</b>
                        </p>
                     </div>
                     <div class="col-sm-4" style="background-color: #cef3f8;"><br>
                        <p>Announcement of selected proposals: <br>
                           <b>15<sup>th</sup> Nov. 2017</b>
                        </p>
                     </div>
                  </div>
                  <br><br>
                  <center>
                     <a href="{% url 'website:cfp' %}" class="btn btn-primary gradient" style="border: none;">Submit</a>
                  </center>
               </div>
         </div>
      </div>
   </div>
   </div>
</section>
<!-- ---------------------- -->
<!-- ---------- coc ------------ -->
<section id="coc">
   <br>
   <br>
   <br>
   <br>
   <div class="container">
      <div class="row align-items-center">
         <div class="col-md-offset-4">
            <center>
               <h2>Code Of Conduct</h2>
            </center>
            <hr>
            <div class="panel panel-default">
               <div class="panel-body">
                  <div align="justify" class="p-5">
                     <p>We appreciate your participation in SciPy 2017. We want you to have an enjoyable and enriching experience in the conference. For this all the attendees are required to conform to the following Code of Conduct. Organisers will ensure that it is enforced throughout the event.
                     <div class="collapse" id="collapseExample">
                        <div class="card-text">
                           <p>SciPy India is dedicated to providing a harassment-free conference experience for everyone, regardless of age, gender, sexual orientation, physical appearance, disability, race, religion or employment.
                           </p>
                           <p>Harassment includes offensive verbal comments related to gender, sexual orientation, disability, physical appearance, body size, race, religion, sexual images in public spaces, deliberate intimidation, stalking, following, harassing photography or recording, sustained disruption of talks or other events, inappropriate physical contact, and unwelcome sexual attention. We have zero tolerance on harassment of conference participants in any form, including, but not limited to the activities mentioned here.
                           </p>
                           <p>Participants asked to stop any harassing behavior are expected to comply immediately.
                           </p>
                           <p>All communication should be appropriate for a professional audience, including people from many different backgrounds. Sexual language or imagery is inappropriate for all aspects of the conference, including talks. Remember that sexist, racist or any other form of exclusionary or offensive jokes or excessive public swearing are not appropriate at any venue of SciPy India.
                           </p>
                           <p>Do not insult or put down attendees or engage in any action that violates the open, welcoming and sharing spirit of the conference. Be kind and sensitive to the people around you when you are attending the conference, and avoid any kind of offensive or degrading behavior.
                           </p>
                           <p>
                              <b>If a participant engages in behavior that violates this code of conduct, the conference organizers may take any action they deem appropriate, including warning the offender or expulsion from the conference with no refund.
                              </b>
                           </p>
                           <p>Thank you for helping to make SciPy India a welcoming, friendly event for all.
                           </p>
                           <p>
                              <b>Contact Information:
                              </b>
                           </p>
                           <p>If you are being harassed, notice that someone else is being harassed, or have any other concerns, please contact a member of conference staff. Conference staff will be wearing "SciPy India: Organiser" badges.
                           </p>
                           <p>Conference staff will be happy to help participants contact venue security or local law enforcement, provide escorts, or otherwise assist those experiencing harassment to feel safe for the duration of the conference. We value your attendance.
                           </p>
                           <p>
                              <b>License:
                              </b>
                           </p>
                           <p>This Code of Conduct was forked from PSF Code of Conduct by Python Software Foundation which is under a Creative Commons Attribution 3.0 Unported License.
                           </p>
                           <p>SciPy India Conference Code of Conduct is licensed under a Creative Commons Attribution 3.0 Unported License.
                           </p>
                        </div>
                     </div>
                     <p>
                     <center>
                        <a class="btn btn-primary gradient" data-toggle="collapse" href="#collapseExample" aria-expanded="false" aria-controls="collapseExample" style="text-decoration: none;border: none;">
                        <i class="fa fa-arrow-down" aria-hidden="true"></i>
                        <i class="fa fa-arrow-up" aria-hidden="true"></i>
                        </a>
                        <!-- <a class="btn btn-primary" data-toggle="collapse" href="#collapseExample" aria-expanded="false" aria-controls="collapseExample">
                           Show More
                           </a>
                           -->                 
                     </center>
                     </p>
                  </div>
               </div>
            </div>
         </div>
      </div>
   </div>
</section>
<!--   ---------------------- -->
<!-- ---------- schedule-------- -->
<section id="schedule">
   <br>
   <br>
   <br>
   <br>
   <div class="container">
      <center>
         <h2>Tentative Schedule</h2>
         
      </center>
      <hr>
      <div class="row align-items-center">
         <div class="col-md-offset-4">
             <ul class="nav nav-tabs">
               <li class="nav-item">
                  <a class="nav-link active" href="#day1">29 Nov 2017</a>
               </li>
               <li class="nav-item">
                  <a class="nav-link" href="#day2">30 Nov 2017</a>
               </li>
               </ul>
               <div class="tab-content">
               <div class="tab-pane active" id="day1" ><br>
                  <center>
                     <h4>Day 1 - Workshops</h4>
                  </center>
                  <table width="100%" class="table table-bordered table-striped">
                     <thead>
                        <th width="20%"><b>Time</b></th>
                        <th width="35%"><b>Basic Track</b> </th>
                        <th width="35%"><b>Advanced Track</b></th>
                     </thead>
                     <tbody>
                        <tr style="background-color: #9de8f1;">
                           <td>08:30 AM - 09:00 AM</td>
                           <td colspan="2" style="text-align:center"><b>REGISTRATION / BREAKFAST  </b></td>
                           
                        </tr>
                        <tr >
                           <td>09:00 AM - 10:55 AM</td>
                           <td> Controlling devices with Python using KuttyPy<br> - Dr. Ajith Kumar <span style="float: right;"><a href="{% static 'pdf/Controlling_devices_using_kuttypy.pdf' %}" target="_blank">Instructions</a></span></td>
                           <!--<td> Image Classification using deep learning (keras/Tensorflow)<br> - Kashyap Raval <span style="float: right;">
                           <a href="{% static 'pdf/Controlling_devices_using_kuttypy.pdf' %}" target="_blank">Instructions</a>
                           </span></td>-->
                           <td>TBD</td>
                        </tr>
                        <tr style="background-color: #9de8f1;">
                           <td>10:55 AM - 11 :05 AM</td>
                           <td colspan="2" style="text-align:center"><b>TEA</b></td>
                           
                        </tr>
                        <tr >
                           <td>11:05 AM - 01:00 PM</td>
                           <td > Scientific Computing using Orange<br> - Ankit Mahato <span style="float: right;">
                           <a href="{% static 'pdf/Scientific Computing​ ​ using​ ​ Orange.pdf' %}" target="_blank">Instructions</a></span></td>
                           <td> GPU Computing using PyOpenCL<br> - Aditya Bhosale <span style="float: right;">
                           <a href="{% static 'pdf/GPU_Computing_using_PyOpenCL.pdf' %}" target="_blank">Instructions</a></span></td>
                        </tr>
                        <tr style="background-color: #9de8f1;">
                           <td>01:00 PM - 02:00 PM</td>
                           <td colspan="2" style="text-align:center"><b>LUNCH</b></td>
                           
                        </tr>
                        <tr >
                           <td>02:00 PM - 03:55 PM</td>
                           <td > Python for Data Analysis<br> - Anamika Gupta &amp; Naveen Kumar<span style="float: right;"><a href="{% static 'pdf/Python_for_data_analysis.pdf' %}" target="_blank">Instructions</a> </span> </td>
                           <td> Model Evaluation and Selection with Scikit-Learn<br> -  Jaidev Deshpande <span style="float: right;">
                           <a href="{% static 'pdf/Model_Evaluation_and_Selection_with_Scikit-Learn.pdf' %}" target="_blank">Instructions</a></span></td>
                        </tr>
                        <tr style="background-color: #9de8f1;">
                           <td>03:55 PM - 04:05 PM</td>
                           <td colspan="2" style="text-align:center"><b>TEA</b></td>
                        </tr>
                        <tr >
                           <td>04:05 PM - 06:00 PM</td>
                           <td> FOSS Python tools for geospatial analysis<br> - Nishadh K A <span style="float: right;"><a href="{% static 'pdf/geospatial_instructions.pdf' %}" target="_blank">Instructions</a></span></td>
                           <td> Next Generation Number Theory and Numeric Optimization!<br> - Shivam Patel <span style="float: right;">
                           <a href="{% static 'pdf/Next Generation Number Theory and Numeric Optimization.pdf' %}" target="_blank">Instructions</a></span></td>
                        </tr>
                     </tbody>
                  </table>
               </div>
               <div class="tab-pane" id="day2" ><br>
                  <center>
                     <h4>Day 2 - Conference</h4>
                  </center>
                  <table class="table table-bordered table-striped">
                     <thead>
                        <th width="30%"><b>Time</b></th>
                        <th width="60%"><b>Session</b> </th>
                       <th width="10%"><b>Abstract</b></th>
                     </thead>
                     <tbody>
                        <tr style="background-color: #9de8f1;" >
                           <td>08:30 AM - 09:25 AM</td>
                           <td colspan="2"   ><b>BREAKFAST</b></td>
                        </tr>
                        <tr>
                           <td>09:25 AM - 09:35 AM</td>
                           <td colspan="2">Inauguration</td>
                        </tr>
                        <tr >
                           <td>09:35 AM - 09:55 AM</td>
                           <!--<td> Role of Python in Data Science and How sentimental analysis in Python helps drive firms on the social interactions<br> - Madhu Vadlamani </td>
                           <td><a href="https://static.fossee.in/python/abstract/Madhu-talk.pdf" target="_blank" >View here</a></td>-->
                           <td> Inferential Statistics with Python <br>- Rounak Banik </td>
                           <td><a href="https://static.fossee.in/python/abstract/rounak-talk.pdf" target="_blank" >View here</a></td>
                        </tr>
                        <tr >
                           <td>09:55 AM - 10:15 AM</td>
                           <td> ANN based Maximum Power Point Tracker for a Standalone PV System<br> - Rohitha Kurdikeri &amp; Apeksha N Patil</td>
                           <td><a href="https://scipy.in/2017/downloads/rohithabk/attachment/ABSTRACT/Scipy_final_1_rohithabk..pdf" target="_blank">View here</td>
                        </tr>
                        <tr >
                           <td>10:15 AM - 11:10 AM</td>
                           <td colspan="2"><b>Keynote: Dr. Nelle Varoquaux</b></td>
                        </tr>
                        <tr style="background-color: #9de8f1;">
                           <td>11:10 AM - 11:35 AM</td>
                           <td colspan="2"><b>TEA</b></td>
                           
                        </tr>
                        <tr >
                           <td>11:35 AM - 11:55 AM</td>
                           <!--<td> ANN based Maximum Power Point Tracker for a Standalone PV System<br> - Rohitha Kurdikeri &amp; Apeksha N Patil</td>
                           <td><a href="https://scipy.in/2017/downloads/rohithabk/attachment/ABSTRACT/Scipy_final_1_rohithabk..pdf" target="_blank">View here</td>-->
                           <td> Reynolds - A GUI for OpenFoam as a Blender addon <br>- Deepak Surti</td>
                           <td><a href="https://static.fossee.in/python/abstract/Reynolds%20%E2%80%93%20Scipy%202017%20Submission.pdf" target="_blank" >View here</a></td>
                        </tr>
                        <!--<tr >
                           <td>11:30 AM - 11:50 AM</td>
                           <td> SymEngine: Leveraging The Power Of A Computer Algebra System (CAS) To Another<br> - Shikhar Jaiswal </td>
                           <td><a href="https://static.fossee.in/python/abstract/Shikar-talk.pdf" target="_blank" >View here</a></td> 
                        </tr>-->
                        <tr >
                           <td>11:55 AM - 12:15 PM</td>
                          <!-- <td> Reynolds - A GUI for OpenFoam as a Blender addon <br>- Deepak Surti</td>
                           <td><a href="https://static.fossee.in/python/abstract/Reynolds%20%E2%80%93%20Scipy%202017%20Submission.pdf" target="_blank" >View here</a></td>-->
                           <td> Intro to parallel programming with CUDA and Python <br>- Mahir Patel</td>
                           <td><a href="https://static.fossee.in/python/abstract/Mahir-talk.pdf" target="_blank" >View here</a></td>
                        </tr >
                        <tr>
                           <td>12:15 PM - 12:35 PM</td>
                           <!--<td> Intelligent Workstation<br> -  Abu Jose George</td>
                           <td><a href="https://static.fossee.in/python/abstract/Abu-talk.pdf" target="_blank" >View here</a></td>-->
                            <td> Reliability analysis of Power electronic circuits in Grid-connected Photo-voltaic system using fiabilipy-2.7 Python package<br> - Priyadarshini Kori </td>
                           <td><a href="https://static.fossee.in/python/abstract/priyadarshini-talk.pdf" target="_blank" >View here</a></td>
                        </tr>
                        <tr >
                           <td>12:35 PM - 12:55 PM</td>
                           <td> A Recommender System for Youtube Tags using Figurative Assessment<br> - Abhishek Jha</td>
                           <td><a href="https://static.fossee.in/python/abstract/Abhishek-talk.pdf" target="_blank" >View here</a></td>
                        </tr>
                         <tr style="background-color: #9de8f1;" >
                           <td>12:55 PM - 2:30 PM</td>
                           <td colspan="2"><b>LUNCH</b></td>
                           
                        </tr>
                        <tr >
                           <td>02:30 PM - 03:00 PM</td>
                           <td colspan="2">Lightning talks</td>
                        </tr>
                        <!--<tr >
                           <td>02:30 PM - 02:50 PM</td>
                           <td> Reliability analysis of Power electronic circuits in Grid-connected Photo-voltaic system using fiabilipy-2.7 Python package<br> - Priyadarshini Kori </td>
                           <td><a href="https://static.fossee.in/python/abstract/priyadarshini-talk.pdf" target="_blank" >View here</a></td>
                        </tr>
                        <tr >
                           <td>02:50 PM - 03:10 PM</td>
                           <td> A Recommender System for Youtube Tags using Figurative Assessment<br> - Abhishek Jha</td>
                           <td><a href="https://static.fossee.in/python/abstract/Abhishek-talk.pdf" target="_blank" >View here</a></td>
                        </tr>-->
                        <tr>
                           <td>03:00 PM - 03:20 PM</td>
                           <td> Smart Meter Data Analytics using Orange<br> - Ankit Mahato &amp; Ashita Prasad</td>
                           <td><a href="https://static.fossee.in/python/abstract/Ankit-talk.pdf" target="_blank" >View here</a></td>
                        </tr>
                        <tr >
                           <td>03:20 PM - 03:40 PM </td>
                           <td> FAQ Bots for Freshmen: From AIML to Keras with a stop at Chatterbot<br> - Saurabh Kumar</td>
                           <td><a href="https://static.fossee.in/python/abstract/Saurabh-talk.pdf" target="_blank" >View here</a></td>
                        </tr>
                        <tr style="background-color: #9de8f1;" >
                           <td>03:40 PM - 04:10 PM</td>
                           <td colspan="2"><b>TEA</b></td>
                           
                        </tr>
                        <tr >
                           <td>04:10 PM - 04:30 PM </td>
                           <td> Next Generation Number theory !<br> - Shivam Patel</td>
                           <td><a href="https://static.fossee.in/python/abstract/Shivam-talk.pdf" target="_blank" >View here</a></td>
                        </tr>
                        <tr >
                           <td>04:30 PM - 04:55 PM</td>
                           <td colspan="2"><b>Invited Talk: Dr. Ajith Kumar </b></td>
                        </tr>
                        
                        <tr >
                           <td>05:00 PM - 05:20 PM</td>
                           <td> Implementation of Prevention of XPath Injection Attack using PyBRAIN Machine Learning Library<br> - Gajendra Deshpande</td>
                           <td><a href="https://static.fossee.in/python/abstract/Gajendra-talk.pdf" target="_blank" >View here</a></td>
                        </tr>
                        <tr >
                           <td>05:20 PM - 05:40 PM</td>
                           <td> Multi-Threading: The Unknown Truth of Python<br> - Ritu Chawla Mehra</td>
                           <td><a href="https://scipy.in/2017/downloads/rituchawlamehra/attachment/ABSTRACT/Conference_Proposal_Ritu_Chawla_Mehra_rituchawlamehra..pdf" target="_blank">View Here</a></td>
                        </tr>
                        <tr>
                           <td>05:40 PM - 06:00 PM</td>
                           <td colspan="2">Closing</td>
                           
                        </tr>
                     </tbody>
                  </table>
               </div>
               </div> 
         </div>
      </div>
   </div>
</section>
<!--    ----------------------------  -->
<!-- ---------- instructions ---------- -->
<section id="instructions">
   <br>
   <br>
   <br>
   <br>
   <div class="container">
      <center>
         <h2>Instructions</h2>
      </center>
      
      <hr>
      <div class="row align-items-center">
         <div class="col-md-offset-4">
            <div class="panel panel-default">
               <div class="panel-body">
                   <table class="table table-condensed table-bordered" style="text-align: justify;">
                     <tbody>
                        <tr>
                           <td>General Instructions</td>
                           <td width="60%">These instructions will help you during the stay at IIT Bombay. </td>
                           <td><a href="{% static 'pdf/Information Guide for SciPy India 2017 Conference.pdf' %}" target="_blank">View here</a> </td>
                        </tr>
                        <!--
                        <tr>
                           <td>SciPy 2017: <br>Preferred Workshop Track</td>
                           <td>Please select the workshop in which you wish to participate (Satellite conference registrants need not submit this form).</td>
                           <td><a href="http://tinyurl.com/SciPy2016-Workshop" target="_blank">View here</a> </td>
                        </tr> -->
                        <tr >
                           <td>Workshop Instructions</td>
                           <td >These instructions are for all the registered participants. It has the details of the workshops which will be conducted in SciPy India 2017 conference. Please read it carefully and follow the steps to install various software packages.<br>
                              <b>Note:</b> You will not be able to participate in the workshops without installing the above packages. There will not be any separate setup session at the venue.
                           </td>
                           <td><a href="{% static 'pdf/workshop_instructions.pdf' %}" target="_blank">View here</a> </td>
                        </tr>
                        <!--<tr >
                           <td>Workshop Material </td>
                           <td >1)<b> Workshop</b>: Introductory Scientific Computing with Python: Ipython, Matplotlib, NumPy, SciPy - Prof. Prabhu Ramachandran<br></td>
                           <td><a href="http://scipy.in/2016/downloads/workshop/intro_scipy_circulate.zip" target="_blank">View here</a> </td>
                        </tr>-->
                     </tbody>
                     </table> 
               </div>
            </div>
         </div>
      </div>
   </div>
</section>
<!--    ---------------------- -->
<!-- ---------- venue ------------ -->
<section id="venue">
   <br>
   <br>
   <br>
   <br>
   <div class="container">
      <div class="align-items-center">
         <div class="col-md-offset-4">
            <center>
               <h2>Venue</h2>
            </center>
            <hr>
            <div class="panel panel-default">
               <div class="panel-body">
                  <center>
                     <h4>LH101, 1<sup>st</sup> Floor, Lecture Hall Complex, IIT Bombay</h4>
                     <div class="embed-responsive embed-responsive-16by9">
                        <iframe class="embed-responsive-item" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3769.472585331343!2d72.916895!3d19.130779999999994!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3be7c7f4215f57bf%3A0xcf0c03ea45a113e1!2sLecture+Hall+Complex+(LHC)!5e0!3m2!1sen!2sin!4v1434726932900"></iframe>
                     </div>
                  </center>
               </div>
            </div>
         </div>
      </div>
   </div>
</section>
<!--      ---------------------- -->
<!-- ---------- sponsors ------------ -->
<section id="sponsors">
   <br>
   <br>
   <br>
   <br>
   <div class="container">
      <center>
         <h2>Sponsor</h2>
      </center>
      <hr>
      <div class="row align-items-center">
         <div class="col-lg-8 col-sm-6 text-center mb-4" align="justify">
            <br>
            <p align="justify">Thank you for your interest to sponsor Scipy India 2017.
            </p>
            <p align="justify">
               SciPy India, an annual conference organized by FOSSEE (Free and Open Source Software for Education) based at IIT Bombay, provides the  opportunity to unfurl the use of the Python programming language in the Scientific Computing community in India. SciPy India being organized since 2009, attracts more than 250 students and faculty every year. This conference provides the participants with a unique opportunity to interact and connect with the Python community. 
            </p>
            <p align="justify">
               Here’s a call to the interested organizations to sponsor this conference and get associated with the event. Through this sponsorship, you could engage with top professionals and enhance your organization’s brand visibility amongst Python users.
            </p>
         </div>
         <div class="col-lg-4 col-sm-6 text-center mb-4">
            <center>
               <img src="{% static 'img/th_spnbook.png'%}" />  
            </center>
            <a href="{% static 'pdf/Scipy2017prospectus.pdf' %}" target="_blank">
               <center>
                  <button class="btn btn-primary gradient" style="border: none;" >Download
                  </button>
               </center>
            </a>
         </div>
      </div>
   </div>
</section>
<section id="poster">
   <br>
   <br>
   <br>
   <br>
   <div class="container">
      <div class="align-items-center">
         <div class="col-md-offset-4">
            <center>
               <h2>Poster</h2>
            </center>
            <hr>
            <div class="row align-items-center">
               
               <div class="col-lg-8 col-sm-8 text-center mb-4">
                  <p align="justify">We request you to share the event details through this poster with faculty members, students and others who might be interested. You may print the poster (native size - A4) and display on the notice boards.
                  </p>
                  <p align="justify">
                  Download the poster by clicking on the image.
                  </p>                 
               </div>
               <div class="col-lg-4 col-sm-4 text-center mb-4" align="justify">
                   <a href="{% static 'pdf/SciPy_2017_Poster.pdf'%}" target="_blank">
                        <img src="{% static 'img/Th_SciPy_2017_Poster.jpg'%}" />
                     </a>
               </div>
            </div>
         </div>
      </div>
   </div>
</section>
<section id="organiser">
   <br>
   <br>
   <br>
   <br>
   <div class="container">
      <center>
         <h2>Organiser</h2>
      </center>
      <hr>
      <div class="row align-items-center">
         <!-- Speaker 1--> 
         <div class="col-lg-3 col-sm-4 text-center mb-4">
            <a href="http://fossee.in/" target="_blank">
               <img src="{% static 'img/fossee.png'%}" width="70%" />
            </a>                        
         </div>
         <div class="col-lg-8 col-sm-6 text-center mb-4" align="justify">
            <br> 
            <p align="justify">The Annual SciPy India conference is organised by the team members of 
               <a href="http://fossee.in/" target="_blank"> FOSSEE</a> project which is part of the National Mission on Education through ICT with the thrust area being Adaptation and deployment of open source simulation packages equivalent to proprietary software, funded by MHRD, based at the Indian Institute of Technology Bombay (IITB).
            </p>
         </div>
      </div>
   </div>
</section>
<section id="contact">
   <br>
   <br>
   <br>
   <br>
   <div class="container">
      <div class="align-items-center">
         <div class="col-md-offset-4">
            <center>
               <h2>Write to Us</h2>
               <p>Feel free to send us an email if you have any questions.</p>
            </center>
            <hr>
            <div class="panel panel-default">
               <div class="panel-body">
                  <form id="contact_us" name="contact_us" action='#' class="form" role="form" method=POST onsubmit="return validateMessage();" enctype="multipart/form-data" data-toggle="validator">
                     {% csrf_token %}
                     <div class="col-md-15 form-group">
                        <input class="form-control" id="name" name="name" placeholder="Name" type="text" data-minlength="6" required />
                     </div>
                     <div class="col-md-15 form-group">
                        <input class="form-control" id="email" name="email" placeholder="Email" type="email" required />
                     </div>
                     <div class="col-md-15 form-group">
                        <textarea class="form-control" id="message" name="message" placeholder="Message" rows="5" data-minlength="15" required="true"></textarea> 
                     </div>
                     <div class="col-md-15 form-group">
                        <input class="form-control" style="color:black;" readonly type="text" id="a" />
                     </div>
                     <div class="col-md-15 form-group">
                        <input placeholder = "Answer" class="form-control" type="text" id="b"/>
                     </div>
                     <div class = "col-md-3">
                        <!-- <button class="button" href="" id = "c" type="submit">Send Message</button> -->
                        <button id="myButton" disabled >Send Message</button><br>
                        <p style="color: red;" id= "error">
                     </div>
                  </form>
               </div>
            </div>
         </div>
      </div>
   </div>
</section>
<!-- ---------------------- -->