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 β€’ πŸ“„ Resume (EN) β€’ πŸ“„ CV (ES)

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 applications.
  • ✍️ Author of scientific essays on history, mathematics, and great minds at jeffersonconza.github.io/blog.

πŸ”­ Current Research & Work

  • Physics-Informed Neural Networks (PINNs): Solving nonlinear PDEs (Burgers 1D, 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 fluorescence microscopy.
  • Microplastics Detection: Environmental ML classification and regression modeling using 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.

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.

PyTorch Transformers DenseNet Streamlit Docker

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

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.

FastAPI Streamlit Docker XGBoost scikit-learn

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

Chemometrics FTIR Spectroscopy scikit-learn pandas

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

Python Manim LaTeX Orbital Mechanics


🧠 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)
    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