Welcome to my personal website where I showcase my work and skills.
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.
Computer Science, BNIST
Kaggle Expert with strong data science skills
Dhaka, Bangladesh
English, Hindi, Bengali
Feel free to reach out to me for any questions or opportunities!
adilshamim696@gmail.com
Dhaka, Bangladesh
# 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}")