Welcome to my website 👋

Before we get started, please let me introduce myself:

1class Me(): 2 def __init__(self): 3 self.firstName = 'Matt' 4 self.lastName = 'Marinelli' 5 self.role = 'Machine Learning Engineer' 6 self.city = 'Huntsville, AL' 7 8 def __str__(self): 9 return f"Hi! I'm {self.firstName} {self.lastName}," + 10 f"a {self.role} based in {self.city}!"
const person = { firstName: 'Matt', lastName: 'Marinelli', role: 'Machine Learning Engineer', city: 'Huntsville, AL', fullName: function () { return this.firstName + ' ' + this.lastName; } }; function printIntro(obj) { console.log("Hi! I'm " + obj.fullName() + ", a " + obj.role + " based in " + obj.city); };

Skills

Languages

Through academic, professional, and personal experience, I have developed a strong foundation in multiple programming languages.

Tech stack:

Python
SQL
C++

AI/ML

Pursuing AI/ML through Georgia Tech and personal projects, I have experience with popular libraries and frameworks used in both model development and data science.

Tech stack:

PyTorch
Jax/Flax
Scikit-learn
Pandas
NumPy
MLflow

Software Architecture

My professional experience has allowed me to develop a strong understanding of software architecture design and how to best implement software systems.

Tech stack:

Git
Linux
Windows
Docker
PyTest

Projects

thumbnail

RL+Optimization Trader

Machine learning trading algorithm that leverages technical indicators to make its decisions. Developed as a Georgia Tech project.