Présentation
Diplômé de Physique nucléaire cumulant 3 années comme ingénieur d'études, j’ai entrepris une réorientation professionnelle vers la Data Science. Depuis un an, je me forme à l’analyse de données sous Python par le bootcamp “Data Scientist with Python”, en renforçant mes connaissances en statistiques appliquées au Big Data, et en développant des projets de code ou d'analyse approfondis. Je souhaite aujourd’hui m'engager comme Data Scientist dans une entreprise qui saura me faire confiance pour l'aider à grandir.
Projets Récents

Naïve Bees (Part 2) - Predict Species from Images
Can a machine distinguish between a honey bee and a bumble bee? Being able to identify bee species from images, while challenging, would allow researchers to more quickly and effectively collect field data. In this project, we will use the Python image library Pillow to load and manipulate image data, then build a model to identify honey bees and bumble bees given an image of these insects. This project is the second part of a series of projects that walk through working with image data, building classifiers using traditional techniques, and leveraging the power of deep learning for computer vision.

Naïve Bees (Part 1) - Image Loading and Processing
Can a machine distinguish between a honey bee and a bumble bee? Being able to identify bee species from images, while challenging, would allow researchers to more quickly and effectively collect field data. In this Project, we will use the Python image library Pillow to load and manipulate image data. We'll use common transformations of images and see how to build them into a pipeline.

The Hottest Topics in Machine Learning
Neural Information Processing Systems (NIPS) is one of the top machine learning conferences in the world where groundbreaking work is published. In this Project, you will analyze a large collection of NIPS research papers from the past decade to discover the latest trends in machine learning. The techniques used here to handle large amounts of data can be applied to other text datasets as well.

Classify Song Genres from Audio Data
Using a dataset gathering informations about songs of two music genres (Hip-Hop and Rock), we train a classifier to distinguish the genre based only on track information. We first explore and test the data for obvious trends or factors we should be aware of when doing machine learning. Next, we predict whether we can correctly classify a song's genre based on features such as danceability, energy, acousticness, tempo, etc. We go over implementations of common algorithms such as PCA, logistic regression, or decision trees.