Hello, I'm Attanasia Garuso

I'm a

Welcome to my personal website where I showcase my work and skills.

Attanasia Garuso

About Me

Get to know me!

Attanasia Garuso is a Tech Enthusiast and Problem Solver, passionate leveraging technology to create impactful solutions across finance, analytics and software development.

With strong analytical thinking, programming, and data-driven problem-solving skills, I specialize in building intelligent systems, explorating innovative tools, and delivering meaningful insights that bridge technology and business.

Outside of work,l enjoy exploring new technologies, working on personal projects, and finding creative ways to learn and grow in the tech space.

Education

B.S in Computer Science, Rowan University

M.S in Computer Science(In Progress), Rowan University

Location

East Coast, United States of America

Languages

English, Shona

My Projects

My Skills

Programming & Data

Python

Advanced

SQL

Advanced

Modeling & Machine Learning

TensorFlow

scikit-learn

XGBoost

LightGBM

CatBoost

MLOps & Deployment

MLflow

ZenML

Docker

FastAPI

Professional Skills

Communication

Teamwork

Problem Solving

Creativity

My Tech Stack

Programming Languages

Python Python
R R
JavaScript JavaScript
Java Java

Machine Learning / AI

TensorFlow TensorFlow
PyTorch PyTorch
Scikit-learn Scikit-learn
NumPy NumPy
Pandas Pandas
Seaborn Seaborn
Matplotlib Matplotlib

Tools & Platforms

Git Git
Docker Docker
Jupyter Jupyter
VS Code VS Code
Cursor Cursor

Contact Me

Get In Touch

Feel free to email me for any questions or opportunities!

Email

garusoattanasia@gmail.com

Location

East Coast, United States of America

Python ML Code Sample

 # Machine Learning Pipeline with Scikit-learn
 import numpy as np
 from sklearn.model_selection import train_test_split
 from sklearn.ensemble import RandomForestClassifier
 from sklearn.metrics import accuracy_score
                            
 # Load and prepare data
 X, y = load_data()
 X_train, X_test, y_train, y_test = train_test_split(
 X, y, test_size=0.25, random_state=42
 )
                            
 # Train model
 model = RandomForestClassifier(n_estimators=100)
  model.fit(X_train, y_train)
                            
 # Evaluate
 y_pred = model.predict(X_test)
 accuracy = accuracy_score(y_test, y_pred)
 print(f"Model accuracy: {accuracy:.2f}")