Data Science & Intelligence Artificielle |BackEnd Developer (Java/Spring) | Algorithmique | Artificial Inteligency Enthusiast
- Lyon et île-de-France
- jonathan.nyata@gmail.com | j.kabonganyata@myskolae.fr
- ESGI Lyon - Master en Intelligence Artificielle & Big Data
- Studying: LLMs with FastAI | CLRS + LeetCode
- Python Focus: Algorithmiques & Automatisation
NLP & IA Générative - FastAPI - Machine Learning
- Détection automatique des tendances tech
- Système de notifications intelligentes
- Analyse sémantique et classification de contenu
- LLMs & NLP : Fine-Tuning, Embeddings, Entraînement des modèles
- Machine Learning: Clustering, Classification , Computer Vision
- Data Processing: Pandas, Numpy, Data Cleaning, Feature Engineering
- Backend : Spring Boot, FastAPI, Architecture Micro-services
- Data Engineering: ETL Pipelines, Vector Databases
- Cloud & DevOps: Docker, CI/CD, AWS Lambda
- Algorithmes: Structures de données, Complexité, Optimisation
- Data Structures: LeetCode & CLRS
- Mathematique: La théorie de graphes
class DailyProgress:
def __init__(self):
self.leetcode_solved = True
self.current_focus = "LLMs "
self.projects = ["TechWatcher"]
def get_daily_status(self):
return f" Today: {'✅' if self.leetcode_solved else '❌'} | Focus: {self.current_focus}"
# Today's progress
progress = DailyProgress()
print(progress.get_daily_status())