-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1002 lines (849 loc) · 49.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>BSML | Bocconi Students for Machine Learning</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/white_bg.png" rel="icon">
<link href="assets/img/white_bg.png" rel="apple-touch-icon">
<!-- Fonts -->
<link href="https://fonts.googleapis.com" rel="preconnect">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap" rel="stylesheet">
<!-- Boostrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<!-- AOS -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<!-- Main CSS -->
<link href="assets/css/main.css" rel="stylesheet">
<!-- =======================================================
* Template Name: HeroBiz
* Template URL: https://bootstrapmade.com/herobiz-bootstrap-business-template/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body class="index-page">
<header id="header" class="header d-flex align-items-center sticky-top">
<div class="container-fluid position-relative d-flex align-items-center justify-content-between">
<a href="index.html" class="logo d-flex align-items-center me-auto me-xl-0">
<!-- Uncomment the line below if you also wish to use an image logo -->
<!-- <img src="assets/img/logo.png" alt=""> -->
<h1 class="sitename">BSML</h1>
</a>
<nav id="navmenu" class="navmenu">
<ul>
<li><a href="#hero" class="active">Home<br></a></li>
<li><a href="#about">About</a></li>
<!-- <li><a href="#pricing">Membership</a></li> -->
<li><a href="#faq">FAQ</a></li>
<li><a href="#team">Founders</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="./theses.html">Theses Repo</a></li>
<!-- <li><a href="#footer">Contact</a></li> -->
</ul>
<i class="mobile-nav-toggle d-xl-none bi bi-list"></i>
</nav>
<a class="btn-getstarted" href="index.html#open-roles">JOIN US</a>
</div>
</header>
<main class="main">
<!-- Hero Section -->
<section id="hero" class="hero section">
<div class="container d-flex flex-column justify-content-center align-items-center text-center position-relative" data-aos="zoom-out">
<img src="assets/img/hero-img.png" class="img-fluid animated" alt="">
<div class="container d-flex flex-column">
<h1>Bocconi <span>Students</span> for <span>Machine Learning</span></h1>
<p class="fst-italic subtitle" style="font-weight:100">Connecting minds, not only layers</p>
</div>
<!-- <div class="d-flex">
<a href="#about" class="btn-get-started scrollto">Get Started</a>
<a href="https://www.youtube.com/watch?v=LXb3EKWsInQ" class="glightbox btn-watch-video d-flex align-items-center"><i class="bi bi-play-circle"></i><span>Watch Video</span></a>
</div> -->
</div>
</section><!-- /Hero Section -->
<!-- About Section -->
<section id="about" class="about section">
<!-- Section Title -->
<div class="container d-flex flex-column align-items-center justify-content-between">
<div data-aos="fade-up">
<h2 style="margin:0;">Bocconi's <span>first</span> Machine Learning <span>project-incubator</span></h2>
</div>
<!-- <div data-aos="fade-up" data-aos-delay="100">
<h2>A community centered around producing <span>projects</span>, where members can <span>showcase</span> their <span>skills</span>, <span>nurture ideas</span>, and <span>find collaborators</span> to pursue their ambitions.</h2>
</div> -->
<!-- Descrizione di BSML migliorata: progetti, idee, skills, e collaboratori come parole chiave; aggiunto un line break <br> per strutturare meglio il paragrafo. -->
<div data-aos="fade-up" data-aos-delay="100">
<h2 style="margin:0;">A community centered around publishing <span>projects</span>, where</h2>
<h2 style="margin:0;padding:0">members can nurture <span> ideas </span>, develop <span> skills </span>, and</h2>
<h2 style="padding:0">find <span> collaborators </span> to pursue their ambitions.</h2>
</div>
<!-- <div data-aos="fade-up" data-aos-delay="100">
<h2 style="margin:0;">Our goal? Build a <span>network of minds </span> that spans the </h2>
<h2 style="margin:0;padding:0"> world's best tech companies, investment funds, and</h2>
<h2 style="padding:0"> research labs to <span> elevate </span> the <span> careers </span> of our associates.</h2>
</div> -->
</div><!-- End Section Title -->
</section>
<!-- VALUES & ACTIVITIES -->
<section id="featured-services" class="featured-services section">
<div class="container d-flex align-items-center justify-content-center" data-aos="fade-up" >
<p class="fst-italic subtitle" style="font-weight:100">Our Values</p>
</div>
<div class="container items-container" style="padding-bottom: 5rem;"><!-- VALUES -->
<div class="row gy-4">
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="100">
<div class="service-item position-relative">
<!-- <div class="icon"><i class="bi bi-search icon"></i></div> -->
<h4><a class="stretched-link">Credibility</a></h4>
<p>Our North Star. We work on projects to build credible skills, which gives us internships and success.</p>
</div>
</div><!-- End Service Item -->
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="200">
<div class="service-item position-relative">
<!-- <div class="icon"><i class="bi bi-code-slash icon"></i></div> -->
<h4><a class="stretched-link">Meritocracy</a></h4>
<p>We welcome everyone from any background and let the best members stand out through their projects. </p>
</div>
</div><!-- End Service Item -->
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="300">
<div class="service-item position-relative">
<!-- <div class="icon"><i class="bi bi-pen icon"></i></div> -->
<h4><a class="stretched-link">Ownership</a></h4>
<p>Our members are free to work on any project, with no deadlines, and with full recognition for the work they do. </p>
</div>
</div><!-- End Service Item -->
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="400">
<div class="service-item position-relative">
<!-- <div class="icon"><i class="bi bi-mic icon"></i></div> -->
<h4><a class="stretched-link">No-Fuffa Policy</a></h4>
<p>We are pragmatic, work on real projects, and celebrate concrete accomplishments over arrogance. </p>
</div>
</div><!-- End Service Item -->
</div>
</div>
<!-- About Section -->
<section id="about" class="about section">
<!-- Section Title -->
<!-- <div class="container d-flex flex-column align-items-center justify-content-between">
<div data-aos="fade-up">
<h2><span>Join</span> us! We are here to help you with <span>your idea</span>. If you don't have one yet, <span>contribute</span> to our ongoing projects.</h2>
</div> -->
<!-- About us migliorato: concetto "together"; plurale di idee; line break <br> per separare i concetti -->
<div data-aos="fade-up">
<h2 style="margin:0;padding:0"><span>Join</span> us! Together we will bring <span> your ideas </span> to life.</h2>
<h2 style="margin:0;padding:0">If you don't have them yet, <span>contribute</span> to our ongoing projects.</h2>
</div>
</div><!-- End Section Title -->
</section>
<!-- Aggiunto freccia per guidare ai tipi di progetti aperti. -->
<div data-aos="fade-up" class="text-center mt-3">
<i class="bi bi-arrow-down" style="color: white; font-size: 5rem;"></i>
</div>
<!-- <div class="container d-flex align-items-center justify-content-center" data-aos="fade-up">
<p class="fst-italic subtitle" style="font-weight:100">Our Activites</p>
</div> -->
<!-- End Section Title -->
<!-- ACTIVITIES -->
<!-- <div class="container">
<div class="row gy-4">
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="100">
<div class="service-item position-relative">
<div class="icon"><i class="bi bi-search icon"></i></div>
<h4><a href="" class="stretched-link">Research Projects</a></h4>
<p>Exploring modern topics of machine learning and artificial intelligence through hands-on projects.</p>
</div>
</div>
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="200">
<div class="service-item position-relative">
<div class="icon"><i class="bi bi-code-slash icon"></i></div>
<h4><a href="" class="stretched-link">Coding Challenges</a></h4>
<p>Hosting machine learning challenges for members with real data.</p>
</div>
</div>
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="300">
<div class="service-item position-relative">
<div class="icon"><i class="bi bi-pen icon"></i></div>
<h4><a href="" class="stretched-link">Articles</a></h4>
<p>Writing articles on the latest news and summaries of basic machine learning topics</p>
</div>
</div>
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="400">
<div class="service-item position-relative">
<div class="icon"><i class="bi bi-mic icon"></i></div>
<h4><a href="" class="stretched-link">Podcast</a></h4>
<p>Interesting talks with students, professors and experts from the field.</p>
</div>
</div>
</div>
</div> -->
</section><!-- /Featured Services Section -->
<!-- Open Roles -->
<section id="open-roles" class="onfocus features section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<p class="fst-italic subtitle" style="font-weight:100">Become a member by taking one of these roles</p>
<!-- <p style="font-size: 1.5rem;">If you don't have your own ideas yet, we also have some projects already going on and we need <span>your help</span> in the following areas.</p> -->
</div>
<!-- End Section Title -->
<div class="container" data-aos="fade-up">
<ul class="nav nav-tabs row gy-4 d-flex align-items-center justify-content-center">
<li class="nav-item col-6 col-md-4 col-lg-2">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#features-tab-0">
<i class="bi bi-person-square" style="color: #20f00d;"></i>
<h4>Personal Project</h4>
</a>
</li><!-- End Tab 0 Nav -->
<li class="nav-item col-6 col-md-4 col-lg-2">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#features-tab-1">
<i class="bi bi-people" style="color: #0dcaf0;"></i>
<h4>Partnership</h4>
</a>
</li><!-- End Tab 1 Nav -->
<li class="nav-item col-6 col-md-4 col-lg-2">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#features-tab-2">
<i class="bi bi-calendar-event" style="color: #6610f2;"></i>
<h4>Event</h4>
</a>
</li><!-- End Tab 2 Nav -->
<li class="nav-item col-6 col-md-4 col-lg-2">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#features-tab-3">
<i class="bi bi-pen" style="color: #c6c920;"></i>
<h4>Content</h4>
</a>
</li><!-- End Tab 3 Nav -->
<li class="nav-item col-6 col-md-4 col-lg-2">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#features-tab-4">
<i class="bi bi-instagram" style="color: #c92020;"></i>
<h4>Marketing</h4>
</a>
</li><!-- End Tab 3 Nav -->
<li class="nav-item col-6 col-md-4 col-lg-2">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#features-tab-5">
<i class="bi bi-code-slash" style="color: #20c997;"></i>
<h4>Website</h4>
</a>
</li><!-- End Tab 3 Nav -->
</ul>
<div class="tab-content">
<div class="tab-pane fade" id="features-tab-0">
<div class="row gy-4">
<div class="col-lg-12 order-2 order-lg-1" data-aos="fade-up" data-aos-delay="100">
<h4>Deliverable</h4>
<p>
Complete and publish your project with us.
</p>
<h4>Mission</h4>
<p>
Turn your idea into a project and publish on our channels.
</p>
<h4>Description</h4>
<p>
Do you have an idea about an application of Machine Learning? Are you already working on a project but want to get feedback from peers? Do you need help to publish your work? At BSML you will find a community of talented people who are motivated to help. We will support you in anything from coding, to converting your project in a compelling story and publishing your work.
</p>
<h4>Approximate workflow</h4>
<p>
<ol>
<li>Propose your project at one of BSML's events or on the members' chat.</li>
<li>Work in collaboration with other associates to achieve your goals and create compelling content.</li>
<li>Publish the content on BSML's channels to reach a wider audience, always receiving full recognition.</li>
</ol>
</p>
<h4>Examples</h4>
<p>
<ul>
<li><i class="bi bi-lightbulb-fill"></i> You are really passionate about finance and have developed your own trading strategy. However, you need help in writing the code to automate it and would love to leverage advanced machine learning models to improve it.</li>
<li><i class="bi bi-lightbulb-fill"></i> During the summer you do an internship. You have permission to publish your work, but don't know where to start writing. BSML's associates will guide you in drafting the report. </li>
<li><i class="bi bi-lightbulb-fill"></i> You are working on your thesis but got stuck with a bug in the code. BSML's associates will help you in debugging, as well as provide feedback on the general methodology. </li>
</ul>
</p>
<h4>Requirements</h4>
<ul>
<li><i class="bi bi-check-circle-fill"></i> Personal project idea</li>
<li><i class="bi bi-check-circle-fill"></i> Looking for collaborators</li>
</ul>
<p> <b> Your role is essential for having fresh ideas and projects, the backbone of BSML. </b> </p>
</div>
<!-- <div class="col-lg-4 order-1 order-lg-2 text-center" data-aos="fade-up" data-aos-delay="200">
<img src="assets/img/features-1.svg" alt="" class="img-fluid">
</div> -->
</div>
</div><!-- End Tab Content 1 -->
<div class="tab-pane fade" id="features-tab-1">
<div class="row gy-4">
<div class="col-lg-12 order-2 order-lg-1" data-aos="fade-up" data-aos-delay="100">
<h4>Deliverable</h4>
<p>
1 partnership with a company per semester.
</p>
<h4>Mission</h4>
<p>
Connect BSML and its members with real-world companies.
</p>
<h4>Description</h4>
<p>
You will scout LinkedIn and use your network to get in contact with companies. Then, you will organise some sort of partnership. A partnership can be anything: a presentation, a hackathon, a project, an interview with the CEO, or any other similar activity.
</p>
<h4>Approximate workflow</h4>
<p>
<ol>
<li>Research companies in Milan, look for ML/AI/Data Science departments, look if they have open positions, and look for interesting profiles. </li>
<li>Contact key profiles in the company, listen carefully and understand what they need. Then, find a way that BSML can offer value.</li>
</ol>
</p>
<h4>Examples</h4>
<p>
<ul>
<li><i class="bi bi-lightbulb-fill"></i> Company X has an open position as Data Analyst. You will contact the HR department and offer a way to select someone from our pool of associates. The selection can happen through a competition, hackathon, or interview.</li>
<li><i class="bi bi-lightbulb-fill"></i> Company X has a data science department. You will contact the Head of Data Science, ask what daily challenges they face, and offer to help for free as a project for BSML’s associates.</li>
</ul>
</p>
<h4>Requirements</h4>
<ul>
<li><i class="bi bi-check-circle-fill"></i> Succinct communication skills</li>
<li><i class="bi bi-check-circle-fill"></i> Understanding of how companies work</li>
<li><i class="bi bi-check-circle-fill"></i> LinkedIn and other business communication channels nerd</li>
<li><i class="bi bi-check-circle-fill"></i> Passion aboout social engineering</li>
</ul>
<p> <b> Your role is essential for networking BSML with real-world companies. </b> </p>
</div>
<!-- <div class="col-lg-4 order-1 order-lg-2 text-center" data-aos="fade-up" data-aos-delay="200">
<img src="assets/img/features-1.svg" alt="" class="img-fluid">
</div> -->
</div>
</div><!-- End Tab Content 2 -->
<div class="tab-pane fade" id="features-tab-2">
<div class="row gy-4">
<div class="col-lg-12 order-2 order-lg-1" data-aos="fade-up" data-aos-delay="100">
<h4>Deliverable</h4>
<p>
1 event per semester.
</p>
<h4>Mission</h4>
<p>
Convert partnerships and projects into events.
</p>
<h4>Description</h4>
<p>
Different things will be happening around the association. Your goal is to proactively imagine and organise events. An event can be: a professor presenting their research, a partnership with a company, an aperitif where associates present their work, a dinner where the CEO of a company comes to share ideas, or any other similar.
</p>
<h4>Approximate workflow</h4>
<p>
<ol>
<li>Be aware of what is happening in the association, what projects people are working on. At the same time, look for opportunities outside the association.</li>
<li>Organise the event. This involves finding a location, choosing a date, designing a schedule, marketing the event.</li>
</ol>
</p>
<h4>Examples</h4>
<p>
<ul>
<li><i class="bi bi-lightbulb-fill"></i> One associate interviews a professor. You will contact the associate and the professor and propose to organise an association event where the professor presents his research to many people.</li>
<li><i class="bi bi-lightbulb-fill"></i> A company agrees to host a hackathon for our members. You will organise the event where the hackathon will be announced and explained.
</li>
</ul>
</p>
<h4>Requirements</h4>
<ul>
<li><i class="bi bi-check-circle-fill"></i> Orgnisation and time management skills</li>
<li><i class="bi bi-check-circle-fill"></i> Desire to have under control all the details of an event</li>
</ul>
<p><b>Your role is essential for BSML to meet in person and thrive.</b></p>
</div>
<!-- <div class="col-lg-4 order-1 order-lg-2 text-center" data-aos="fade-up" data-aos-delay="200">
<img src="assets/img/features-1.svg" alt="" class="img-fluid">
</div> -->
</div>
</div><!-- End Tab Content 2 -->
<div class="tab-pane fade" id="features-tab-3">
<div class="row gy-4">
<div class="col-lg-12 order-2 order-lg-1" data-aos="fade-up" data-aos-delay="100">
<h4>Deliverable</h4>
<p>
1 piece of content per month.
</p>
<h4>Mission</h4>
<p>
Boost the credibility of the association by producing tangible content.
</p>
<h4>Description</h4>
<p>
The associates will work on projects. You role is to work closely with the associates, understand their requirements, and together publish their work as compelling content. Compelling content can be: medium article (inspo: Towards Data Science), YouTube video, presentation, or any other similar.
</p>
<h4>Approximate workflow</h4>
<p>
<ol>
<li>Be aware of what the associates are working on. Be proactive and motivate to publish. Find projects.</li>
<li>Convert the projects into compelling stories, with a clear definition of what is the problem and what is the solution.</li>
<li>Convert the story into content.</li>
</ol>
</p>
<h4>Examples</h4>
<p>
<ul>
<li><i class="bi bi-lightbulb-fill"></i> One associate finishes a project for his/her thesis. First, you will help the associate find the key ideas of the project, in particular the issue and the solution. Then, you will decide what type of content format to create, say an article. Finally, you will help the associate in writing the article.
</li>
<li><i class="bi bi-lightbulb-fill"></i> The association has an event. You will help the marketing producer find a story about the event (why is it important, what happened), and then make the video. At last, you will edit the footage and publish it.
</li>
</ul>
</p>
<h4>Requirements</h4>
<ul>
<li><i class="bi bi-check-circle-fill"></i> Content creation skills (any of video editing, image editing, writing stories etc.)</li>
<li><i class="bi bi-check-circle-fill"></i> Excellent English</li>
<li><i class="bi bi-check-circle-fill"></i> Creativity and desire to bring ideas to reality</li>
</ul>
<p><b>Your role is essential for building BSML’s credibility.</b></p>
</div>
<!-- <div class="col-lg-4 order-1 order-lg-2 text-center" data-aos="fade-up" data-aos-delay="200">
<img src="assets/img/features-1.svg" alt="" class="img-fluid">
</div> -->
</div>
</div><!-- End Tab Content 3 -->
<div class="tab-pane fade" id="features-tab-4">
<div class="row gy-4">
<div class="col-lg-12 order-2 order-lg-1" data-aos="fade-up" data-aos-delay="100">
<h4>Deliverable</h4>
<p>
1 post on social media platforms every week.
</p>
<h4>Mission</h4>
<p>
Provide external people with real-time updates and insights on the association activities.
</p>
<h4>Description</h4>
<p>
Many things will be happening in the association. Your role is to find the most relevant information and package it into nice marketing. You proactively come up with content. Relevant information is: an event that will happen, content that is published, projects associates are working on, news about associates, news about a partnership with a company, and other similar.
</p>
<h4>Approximate workflow</h4>
<p>
<ol>
<li>Stay up to date with what is happening in the association. Find interesting things.</li>
<li>Package those things into marketing, which are posts on social media and website.</li>
</ol>
</p>
<h4>Examples</h4>
<p>
<ul>
<li><i class="bi bi-lightbulb-fill"></i> An event with a company will happen in two weeks. You will make produce flyers about the event with all the relevant information. Then, you will publish the flyers on all the relevant channels.</li>
<li><i class="bi bi-lightbulb-fill"></i> One associate participates to a hackathon. You will ask for pictures about the hackathon and make a post about the event and the result the associate achieved. Then, you will publish the content on all the relevant channels.</li>
</ul>
</p>
<h4>Requirements</h4>
<ul>
<li><i class="bi bi-check-circle-fill"></i> Passionate about social media marketing</li>
<li><i class="bi bi-check-circle-fill"></i> Storytelling and communication</li>
<li><i class="bi bi-check-circle-fill"></i> Proficiency with an image editing tool</li>
</ul>
<p><b>Your role is essential for nurturing an engaging public image of BSML.</b></p>
</div>
<!-- <div class="col-lg-4 order-1 order-lg-2 text-center" data-aos="fade-up" data-aos-delay="200">
<img src="assets/img/features-1.svg" alt="" class="img-fluid">
</div> -->
</div>
</div>
<div class="tab-pane fade" id="features-tab-5">
<div class="row gy-4">
<div class="col-lg-12 order-2 order-lg-1" data-aos="fade-up" data-aos-delay="100">
<h4>Deliverable</h4>
<p>
Website maintenance and on-demand coding.
</p>
<h4>Mission</h4>
<p>
Build the most beautiful business website a student association can have.
</p>
<h4>Description</h4>
<p>
We successfully migrated from a third party hosting service to an website fully developed by our members and hosted on GitHub. This is an opportunity to get your hand dirty and write in HTML-CSS-JS to improve the website functionalities, make it even more catchy, add features and fix bugs of any kind.
</p>
<h4>Approximate workflow</h4>
<p>
<ol>
<li>Receive requirements and proposals about changes to the website.</li>
<li>Evaluate their feasiblity.</li>
<li>Implement.</li>
</ol>
</p>
<h4>Examples</h4>
<p>
<ul>
<li><i class="bi bi-lightbulb-fill"></i> You browse on the internet and find a beautiful website with similar color schemes to BSML’s that inspires you. You will propose and implement the changes to BSML’s website.</li>
<li><i class="bi bi-lightbulb-fill"></i> An applicant notifies us that a button is not working. You will fix the bug, and then take the opportunity to improve the look and feel of the application process.</li>
</ul>
</p>
<h4>Requirements</h4>
<ul>
<li><i class="bi bi-check-circle-fill"></i> Basic knowledge of HTML-CSS-JS</li>
<li><i class="bi bi-check-circle-fill"></i> Familiarity with Boostrap5 is plus</li>
</ul>
<p><b>Your role is essential for developing and nurturing BSML’s professional public figure.</b></p>
</div>
<!-- <div class="col-lg-4 order-1 order-lg-2 text-center" data-aos="fade-up" data-aos-delay="200">
<img src="assets/img/features-1.svg" alt="" class="img-fluid">
</div> -->
</div>
</div>
</div>
<div class="content d-flex flex-row justify-content-center align-items-center">
<a href="https://forms.gle/dc1yNsVX4GqrVWCZ9" class="read-more align-self-start"><span>Apply</span><i class="bi bi-arrow-right"></i></a>
</div>
</div>
</section><!-- /Features Section -->
<!-- Pricing Section -->
<!-- <section id="pricing" class="pricing section">
<div class="container section-title" data-aos="fade-up">
<h2>Membership</h2>
<p></p>
</div>
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row gy-4">
<div class="col-lg-6" data-aos="zoom-in" data-aos-delay="200">
<div class="pricing-item featured">
<div class="pricing-header">
<h3>Passive</h3>
</div>
<ul>
<li><i class="bi bi-dot"></i> <span>Join BSML community of 100+ people</span></li>
<li><i class="bi bi-dot"></i> <span>Network with other members at our exclusive events</span></li>
<li class="na"><i class="bi bi-x"></i> <span>Build your own credibility by working on projects and publishing content</span></li>
<li class="na"><i class="bi bi-x"></i> <span>Priority on different opportunities and internships when they appear</span></li>
</ul>
</div>
</div>
<div class="col-lg-6" data-aos="zoom-in" data-aos-delay="400">
<div class="pricing-item featured">
<div class="pricing-header">
<h3>Active</h3>
</div>
<ul>
<li><i class="bi bi-dot"></i> <span>Join BSML community of 100+ people</span></li>
<li><i class="bi bi-dot"></i> <span>Network with other members at our exclusive events</span></li>
<li><i class="bi bi-dot"></i> <span>Build your own credibility by working on projects and publishing content</span></li>
<li><i class="bi bi-dot"></i> <span>Priority on different opportunities and internships when they appear</span></li>
</ul>
</div>
</div>
</div>
<div class="row d-flex flex-column align-items-center justify-content-center fst-italic" style="padding-top: 1.5rem;">
*After joining the association, we will be more than happy to discuss any request of membership status change
</div>
</div>
</section> -->
<!-- /Pricing Section -->
<!-- Faq Section -->
<section id="faq" class="faq section">
<div class="container-fluid">
<div class="row gy-4">
<div class="col-lg-7 d-flex flex-column justify-content-center order-2 order-lg-1">
<div class="content px-xl-5" data-aos="fade-up" data-aos-delay="100">
<h3><span>Frequently Asked </span><strong>Questions</strong></h3>
<p>
If you have any other question, feel free to reach out!
</p>
</div>
<div class="faq-container px-xl-5" data-aos="fade-up" data-aos-delay="200">
<div class="faq-item">
<i class="faq-icon bi bi-question-circle"></i>
<h3>I would really love to join BSML, but I don't have a project idea yet...what could I do?</h3>
<div class="faq-content">
<p>Well, that's not a problem at all and we have 2 options for you. You can either join and contribute to one of the other ongoing projects listed above, or you can simply join the association and wait for someone else to propose their idea and if it suits you, propose yourself as collaborator!</p>
</div>
<i class="faq-toggle bi bi-chevron-right"></i>
</div>
<!-- End Faq item-->
<div class="faq-item">
<i class="faq-icon bi bi-question-circle"></i>
<h3>I would really love to join BSML, but I worry I won't have enough time to study...what could I do?</h3>
<div class="faq-content">
<p>First of all remember: we are all full-time student and having a stellar GPA is our top priority. We perfectly understand the struggles of keeping up with classes and we know sometimes is difficult to be consistent with side projects or initiatives. In fact, if we see you are truly making an effort and contributing to the association, we will be more than flexible to accomodate your needs!</p>
</div>
<i class="faq-toggle bi bi-chevron-right"></i>
</div><!-- End Faq item-->
<div class="faq-item">
<i class="faq-icon bi bi-question-circle"></i>
<h3>I do have a project idea, but it feels trivial and not impactful, should I still apply?</h3>
<div class="faq-content">
<p>Come ooon, how many people have made substantial impact in the world with their first project or initiative at twenty years old? We are here to learn by doing, and every project which appeals you is worth trying and we urge you to apply!</p>
</div>
<i class="faq-toggle bi bi-chevron-right"></i>
</div><!-- End Faq item-->
<div class="faq-item">
<i class="faq-icon bi bi-question-circle"></i>
<h3>Is it hard to get into BSML? What is your acceptance rate?</h3>
<div class="faq-content">
<p>Last year was about 0.005%, we accepted only people with at least 3+ publications at tier 1 conferences. Just kidding, we are a student association whose goal is to connect people sharing the same passion and empower them to succeed: there is no point in having a strict selection process. If you have an idea you are committed to, or we feel like you are in love with what you do and interested in the topics, we will always be more than happy to welcome you onboard and begin this journey together!</p>
</div>
<i class="faq-toggle bi bi-chevron-right"></i>
</div>
<!-- End Faq item-->
</div>
</div>
<div class="col-lg-5 order-1 order-lg-2">
<img src="assets/img/slogan.png" class="img-fluid" style="border-radius: 50%;" alt="" data-aos="zoom-in" data-aos-delay="100">
</div>
</div>
</div>
</section><!-- /Faq Section -->
<!-- Clients Section -->
<section id="clients" class="clients section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Where Our Members Shine</h2>
</div><!-- End Section Title -->
<div class="container" data-aos="fade-up">
<div class="row gy-4">
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-1.jpg" alt="">
</div><!-- End Client Item -->
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/bending_spoons.png" alt="">
</div><!-- End Client Item -->
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-3.jpg" alt="">
</div><!-- End Client Item -->
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-5.jpg" alt="">
</div><!-- End Client Item -->
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-8.jpg" alt="">
</div><!-- End Client Item -->
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-13.jpg" class="img-fluid" alt="">
</div><!-- End Client Item -->
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-10.png" class="img-fluid" alt="">
</div><!-- End Client Item -->
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-11.jpg" class="img-fluid" alt="">
</div><!-- End Client Item -->
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-7.jpg" class="img-fluid" alt="">
</div><!-- End Client Item -->
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-6.jpg" class="img-fluid" alt="">
</div><!-- End Client Item -->
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-4.jpg" class="img-fluid" alt="">
</div><!-- End Client Item -->
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-2.jpg" class="img-fluid" alt="">
</div><!-- End Client Item -->
</div>
</div>
</section><!-- /Clients Section -->
<!-- Team Section -->
<section id="team" class="team section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Our Founders</h2>
<p>Just a group of (slightly nerdy) students sharing the same passion</p>
</div><!-- End Section Title -->
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row gy-5">
<div class="col-xl-4 col-md-6 d-flex" data-aos="zoom-in" data-aos-delay="200">
<div class="team-member">
<div class="member-img">
<img src="assets/img/team/jack.jpg" class="img-fluid" alt="">
</div>
<div class="member-info">
<div class="social">
<!-- <a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a> -->
<a href="https://www.github.com/giacomo-ciro" target="_blank"><i class="bi bi-github"></i></a>
<a href="https://www.linkedin.com/in/giacomo-ciro/"target="_blank"><i class="bi bi-linkedin"></i></a>
<a href="https://giacomo-ciro.github.io/"target="_blank"><i class="bi bi-link"></i></a>
</div>
<h4>Giacomo Cirò</h4>
<span>MSc in Artificial Intelligence, Bocconi University</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-4 col-md-6 d-flex" data-aos="zoom-in" data-aos-delay="200">
<div class="team-member">
<div class="member-img">
<img src="assets/img/team/mrml.jpeg" class="img-fluid" alt="">
</div>
<div class="member-info">
<div class="social">
<!-- <a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a> -->
<a href="https://www.github.com/marcoLomele" target="_blank"><i class="bi bi-github"></i></a>
<a href="https://www.linkedin.com/in/marco-lomele/"target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
<h4>Marco Lomele</h4>
<span>MSc in Data Science, Bocconi University</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-4 col-md-6 d-flex" data-aos="zoom-in" data-aos-delay="400">
<div class="team-member">
<div class="member-img">
<img src="assets/img/team/cap.jpg" class="img-fluid" alt="">
</div>
<div class="member-info">
<div class="social">
<!-- <a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a> -->
<a href="https://github.com/giuliocaputi" target="_blank"><i class="bi bi-github"></i></a>
<a href="https://www.linkedin.com/in/giulio-caputi/"target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
<h4>Giulio Caputi</h4>
<span>MSc in Statistics, Oxford University</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-4 col-md-6 d-flex" data-aos="zoom-in" data-aos-delay="600">
<div class="team-member">
<div class="member-img">
<img src="assets/img/team/moro.jpeg" class="img-fluid" alt="">
</div>
<div class="member-info">
<div class="social">
<!-- <a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a> -->
<a href="https://www.linkedin.com/in/alessandro-morosini/"target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
<h4>Alessandro Morosini</h4>
<span>Master of Business Analytics, MIT</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-4 col-md-6 d-flex" data-aos="zoom-in" data-aos-delay="600">
<div class="team-member">
<div class="member-img">
<img src="assets/img/team/vacca.jpg" class="img-fluid" alt="">
</div>
<div class="member-info">
<div class="social">
<!-- <a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a> -->
<a href="https://www.linkedin.com/in/francescoovacca/"target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
<h4>Francesco Vacca</h4>
<span>MSc in Statistics, Oxford University</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-4 col-md-6 d-flex" data-aos="zoom-in" data-aos-delay="600">
<div class="team-member">
<div class="member-img">
<img src="assets/img/team/cos.jpg" class="img-fluid" alt="">
</div>
<div class="member-info">
<div class="social">
<!-- <a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a> -->
<a href="https://www.linkedin.com/in/costanzadercole/"target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
<h4>Costanza D'Ercole</h4>
<span>MSc in Computational Science, University of Amsterdam</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-4 col-md-6 d-flex" data-aos="zoom-in" data-aos-delay="600">
<div class="team-member">
<div class="member-img">
<img src="assets/img/team/laura.jpg" class="img-fluid" alt="">
</div>
<div class="member-info">
<div class="social">
<!-- <a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a> -->
<a href="https://www.linkedin.com/in/laura-valente-757348234/"target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
<h4>Laura Valente</h4>
<span>Master in Management, ESCP</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-4 col-md-6 d-flex" data-aos="zoom-in" data-aos-delay="600">
<div class="team-member">
<div class="member-img">
<img src="assets/img/team/tancre.jpeg" class="img-fluid" alt="">
</div>
<div class="member-info">
<div class="social">
<!-- <a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a> -->
<a href="https://www.linkedin.com/in/tancredidorsi/"target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
<h4>Tancredi Dorsi</h4>
<span>MSc in Statistics, ETH Zürich</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-4 col-md-6 d-flex" data-aos="zoom-in" data-aos-delay="600">
<div class="team-member">
<div class="member-img">
<img src="assets/img/team/rocco.jpg" class="img-fluid" alt="">
</div>
<div class="member-info">
<div class="social">
<!-- <a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a> -->
<a href="https://www.linkedin.com/in/roccototaro/"target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
<h4>Rocco Totaro</h4>
<span>MSc in Operations Research, Columbia University</span>
</div>
</div>
</div><!-- End Team Member -->
</div>
</div>
</section><!-- /Team Section -->
</main>
<footer id="footer" class="footer dark-background">
<div class="footer-top">
<div class="container">
<div class="row gy-4">
<div class="col-lg-8 col-md-3 footer-links">
<a href="index.html" class="logo d-flex align-items-center">
<h3 class="sitename">BSML | Bocconi Students for Machine Learning</h3>
</a>
<div class="footer-contact pt-3">
<p>Bocconi University</p>
<p>Milan, Italy</p>
<!-- <p class="mt-3"><strong>Phone:</strong> <span>+1 5589 55488 55</span></p> -->
<p><strong>Email:</strong> <span>[email protected]</span></p>
</div>
<!-- <div>
© Copyright <strong><span>BSML</span></strong> 2024. All Rights Reserved
</div> -->
</div>
<div class="col-lg-4 col-md-3 footer-links d-flex flex-row justify-content-center align-items-center">
<div class="social-links order-first order-lg-last mb-3 mb-lg-0">
<!-- <a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a> -->
<a href="https://www.instagram.com/bs.machinelearning/" target="_blank"><i class="bi bi-instagram"></i></a>
<a href="https://it.linkedin.com/company/bocconi-students-for-machine-learning" target="_blank"><i class="bi bi-linkedin"></i></a>
<a href="https://github.com/bs-machinelearning"target="_blank"><i class="bi bi-github"></i></a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- Scroll Top -->
<a href="#" id="scroll-top" class="scroll-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Preloader -->
<div id="preloader"></div>
<!-- Boostrap -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<!-- AOS -->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<!-- Main JS File -->
<script src="assets/js/main.js"></script>
</body>