Skip to content
View JeffersonConza's full-sized avatar

Highlights

  • Pro

Block or report JeffersonConza

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
JeffersonConza/README.md

Hi there, I'm Jefferson Conza 👋

Applied Mathematician & Machine Learning Engineer
Bridging pure mathematics, computational science, and deep learning.

🌐 Personal Website & Blog🚀 Projects Portfolio

Profile views


👨‍💻 About Me

  • 🎓 Senior Mathematics Student at Universidad Yachay Tech (Ecuador).
  • 🤖 Machine Learning Engineer trained via intensive bootcamps at Anyone AI.
  • ☁️ Certified Cloud Application Developer candidate at AWS Cloud Institute.
  • 🔬 Research focus: Scientific Machine Learning (SciML), Physics-Informed Neural Networks (PINNs), and Computer Vision for biomedical imaging.

🔭 Current Research & Work

  • Physics-Informed Neural Networks (PINNs): Solving nonlinear partial differential equations (1D Viscous Burgers, 2D Heat Diffusion, Navier-Stokes) by embedding physical conservation laws directly into neural network loss functions.
  • Biomedical Computer Vision: Isotropic 3D image reconstruction via generative models (CycleGAN) to resolve axial resolution anisotropy in confocal microscopy.
  • Microplastics Detection: Environmental ML classification and spectral feature extraction using Fourier-Transform Infrared (FTIR) spectroscopy.
  • Cloud & MLOps Architecture: Deploying containerized inference engines with FastAPI, Docker, and AWS infrastructure (EC2, S3).

📊 Featured Projects

Modular PyTorch and DeepXDE framework to solve Burgers, Heat, and Navier-Stokes equations with physics losses. Automated checkpointing to AWS S3 and containerized API on Docker/EC2.

📖 Project Dossier

PyTorch DeepXDE FastAPI Docker AWS EC2/S3

Hybrid Deep Learning architecture combining Swin Transformer and DenseNet121 for pediatric pneumonia screening in chest X-rays. Achieved 99.0% recall with Grad-CAM explainability.

📖 Project Dossier💻 GitHub Repo

PyTorch Transformers DenseNet Streamlit Docker

Unpaired image-to-image translation with 3D CycleGAN to restore spatial resolution along the axial (z) dimension in confocal fluorescence microscopy, eliminating PSF blur.

📖 Project Dossier

CycleGAN 3D ConvNets Bio-Imaging PyTorch

End-to-end time-series energy demand forecasting platform using XGBoost, Random Forest, and Ridge Regression. Microservice architecture with FastAPI and interactive Streamlit UI.

📖 Project Dossier💻 GitHub Repo

FastAPI Streamlit Docker XGBoost scikit-learn

Machine Learning classification and spectral feature extraction for environmental microplastic pollutants using Fourier-Transform Infrared (FTIR) spectroscopy.

💻 GitHub Repo

Chemometrics FTIR Spectroscopy scikit-learn pandas

Programmatic mathematical and physical animations crafted with Manim for educational outreach, orbital mechanics, and scientific storytelling (Gagarin Day).

📖 Project Dossier

Python Manim LaTeX Orbital Mechanics


✍️ Featured Scientific Essays & Writing

A selection of in-depth essays combining mathematical precision, historical context, and scientific storytelling:

(Read all 20+ essays at jeffersonconza.github.io/blog)


🧠 Tech Stack

  • Core & Scientific Computing: Python, Julia, R, SQL, C++, Bash, LaTeX
  • Deep Learning & SciML: PyTorch, DeepXDE, TensorFlow, scikit-learn, XGBoost, Hugging Face, Torchvision
  • Math & Data Engineering: NumPy, pandas, SciPy, SymPy, Matplotlib, Seaborn, Manim
  • MLOps & Cloud: Docker, FastAPI, Streamlit, AWS (EC2, S3, SageMaker), Git, Linux / Unix

🔦 Why Scientific Machine Learning & PyTorch?

import torch

# Embedding physical differential operators into the loss function
def physics_loss(u_net, x, t, nu=0.01 / torch.pi):
    x.requires_grad_(True)
    t.requires_grad_(True)
    
    u = u_net(torch.cat([x, t], dim=1))
    
    # Automatic differentiation (autograd) computes exact PDE derivatives
    u_t = torch.autograd.grad(u, t, grad_outputs=torch.ones_like(u), create_graph=True)[0]
    u_x = torch.autograd.grad(u, x, grad_outputs=torch.ones_like(u), create_graph=True)[0]
    u_xx = torch.autograd.grad(u_x, x, grad_outputs=torch.ones_like(u_x), create_graph=True)[0]
    
    # 1D Viscous Burgers' equation residual: f = u_t + u * u_x - nu * u_xx
    residual = u_t + u * u_x - nu * u_xx
    return torch.mean(residual ** 2)

"PyTorch turns mathematical intuition into tensors, autograd into differential equations, and neural networks into computational physics engines."


📈 GitHub Statistics

Jefferson's GitHub Streak & Contribution Stats


📬 Connect With Me

Website LinkedIn Email

Pinned Loading

  1. energy-forecast-hub energy-forecast-hub Public

    End‑to‑end ML forecasting application using linear regression, random forest, and XGBoost, served via FastAPI and Streamlit, containerized with Docker.

    Jupyter Notebook

  2. microplastics-ml-research microplastics-ml-research Public

    Research project for the detection, classification, and environmental modelling of microplastics.

    Jupyter Notebook 1

  3. Nobel_Laurates Nobel_Laurates Public

    Jupyter Notebook

  4. offline-speech-summary-vosk offline-speech-summary-vosk Public

    Offline Speech Recognition and Summarization (Vosk + Transformers)

    Python

  5. pneumonia-detection-cnn-xray pneumonia-detection-cnn-xray Public

    Modular PyTorch implementation of CheX‑DS (DenseNet121 + Swin Transformer) for pneumonia detection, featuring 99% recall, Docker support, and an interactive Streamlit dashboard.

    Jupyter Notebook

  6. sentinel-swarm-fsa sentinel-swarm-fsa Public

    Jupyter Notebook