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, researcher, deep learning,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

Technical Skills

Python

95%

Machine Learning

90%

Deep Learning

85%

Data Analysis

88%

Professional Skills

Communication

90%

Teamwork

85%

Problem Solving

88%

Creativity

92%

Programming Languages

Python Python
Java Java

Machine Learning / AI

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

Tools & Platforms

Git Git
Docker Docker
Jupyter Jupyter
VS Code VS Code

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