Hello, I'm Adil Shamim

I'm a

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

Adil Shamim

About Me

Get to know me!

Adil Shamim is a Machine Learning Engineer, Deep Learning Enthusiast,and developer—constantly evolving and passionate about learning new frontiers.

I specialize in creating intelligent systems and data-driven solutions. With a background in Machine Learning, I combine analytical thinking and technical skills to deliver outstanding results.

When I'm not working, you can find me exploring new technologies, contributing to open-source projects, or reading books.

Education

Computer Science, BNIST

Experience

Kaggle Expert with strong data science skills

Location

Dhaka, Bangladesh

Languages

English, Hindi, Bengali

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

Tools & Platforms

Git Git
Jupyter Jupyter
VS Code VS Code
Cursor Cursor

Contact Me

Get In Touch

Feel free to reach out to me for any questions or opportunities!

Email

adilshamim696@gmail.com

Location

Dhaka, Bangladesh

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}")