Interested in STEM & exploring the unseen.
I am an aspiring AI & Data Scientist with interests in backend development and HRD — building ERP solutions and learning continuously. I enjoy turning messy data into crisp decisions and building systems that help people work smarter.
About me
Interested in STEM, becoming an AI and Data Scientist, backend, HRD (working with ERP solution, developing it through continuous learning). Exploring the worlds unseen area.
I'm graduated in Human Resource Management. (BBA-HRM)
I build small tools, prototypes, and dashboards. I prefer pragmatic, well-tested code and clear visualizations.
Technical
Data & Tools
Soft / HRD
Projects
Customer Churn Prediction
# sample (click to expand)
import pandas as pd
from sklearn.ensemble import RandomForestClassifier
# load, preprocess, train
ERP — HR Module Prototype
# Flask example
from flask import Flask, request, jsonify
app = Flask(__name__)
@app.route('/api/employees')
def list_employees():
return jsonify([])
Backend API (FastAPI)
# FastAPI snippet
from fastapi import FastAPI
app = FastAPI()
@app.get('/health')
def health():
return {'status':'ok'}
Chittagong Map Visualization
# Folium quickstart
import folium
m = folium.Map(location=[22.3569,91.7832], zoom_start=12)
Project showcase — expanded with code
Customer Churn Prediction — condensed notebook
# Data science mini-notebook import pandas as pd from sklearn.model_selection import train_test_split from sklearn.ensemble import RandomForestClassifier from sklearn.metrics import classification_report df = pd.read_csv('data/churn.csv') X = df.drop('churn', axis=1) y = df['churn'] X_train, X_test, y_train, y_test = train_test_split(X,y,test_size=0.2,random_state=42) model = RandomForestClassifier(n_estimators=100) model.fit(X_train, y_train) print(classification_report(y_test, model.predict(X_test)))
Contact
Email: n4zt.global@gmail.com