-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
107 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,107 @@ | ||
Hello, Sette! | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="description" content="Portfolio of Bruno Silva Sette, Data Scientist."> | ||
<title>Bruno Silva Sette | Data Scientist</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f4f4f4; | ||
color: #333; | ||
} | ||
header { | ||
background-color: #333; | ||
color: #fff; | ||
padding: 20px; | ||
text-align: center; | ||
} | ||
.container { | ||
max-width: 800px; | ||
margin: 20px auto; | ||
padding: 20px; | ||
background-color: #fff; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
} | ||
h1, h2, h3 { | ||
color: #333; | ||
} | ||
.section { | ||
margin-bottom: 20px; | ||
} | ||
.contact-info { | ||
list-style: none; | ||
padding: 0; | ||
} | ||
.contact-info li { | ||
margin-bottom: 10px; | ||
} | ||
footer { | ||
text-align: center; | ||
padding: 10px; | ||
background-color: #333; | ||
color: #fff; | ||
margin-top: 20px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<header> | ||
<h1>Bruno Silva Sette</h1> | ||
<p>Data Scientist</p> | ||
</header> | ||
|
||
<div class="container"> | ||
<section class="section"> | ||
<h2>Profile</h2> | ||
<p>I'm a developer for 13 years with a background in Data Science and a Master in Machine Learning. Extremely motivated, constantly developing my skills and professional growth.</p> | ||
</section> | ||
|
||
<section class="section"> | ||
<h2>Work History</h2> | ||
<h3>Data Scientist Intern | AMERICANAS S.A</h3> | ||
<p>2019 - 2021</p> | ||
<p>Automl development in Apache Marvin AI tool with Automated search of deep neural network architectures (NAS).</p> | ||
|
||
<h3>Data Scientist | AMERICANAS S.A</h3> | ||
<p>2021 - 2023</p> | ||
|
||
<h3>Data Scientist | SOFTPLAN UNJ</h3> | ||
<p>2023 - 2024</p> | ||
<p>Production NLP models for Unidade Nacional de Justiça using ECS in AWS, including NER and classification models. Hierarchical clustering of documents for semi-supervised learning in taxonomy of processes for Procuradorias Gerais Estaduais.</p> | ||
</section> | ||
|
||
<section class="section"> | ||
<h2>Education</h2> | ||
<h3>Computer Network Technician | Serviço Nacional de Aprendizagem Industrial</h3> | ||
<p>2012 - 2014</p> | ||
|
||
<h3>Bachelor of Computer Science | Universidade Federal de Mato Grosso</h3> | ||
<p>2015 - 2019</p> | ||
|
||
<h3>Master of Computer Science (M.Sc.) in Machine Learning | Universidade Federal de São Carlos</h3> | ||
<p>2019 - 2021</p> | ||
|
||
<h3>PhD in Computer Science | Universidade Federal de São Carlos</h3> | ||
<p>2021 - 2025 (in progress)</p> | ||
</section> | ||
|
||
<section class="section"> | ||
<h2>Contact</h2> | ||
<ul class="contact-info"> | ||
<li><strong>Email:</strong> brunosilvasette@gmail.com</li> | ||
<li><strong>Phone:</strong> (11) 95425-2654</li> | ||
</ul> | ||
</section> | ||
</div> | ||
|
||
<footer> | ||
<p>© 2024 Bruno Silva Sette. All rights reserved.</p> | ||
</footer> | ||
|
||
</body> | ||
</html> |