Kathmandu, Nepal β’ imbibek8366@gmail.com
I am an entry-level AI / Machine Learning Engineer with a software engineering background and a focus on building machine-learning systems from first principles through deployment.
My work spans PyTorch, Transformer architectures, tokenization, ML inference, data processing, LLM applications, FastAPI backends, and Docker-based deployment. I enjoy understanding how ML systems work underneath high-level abstractions and turning those implementations into usable software.
Status & Commitment: I am fully available for immediate full-time employment with zero academic commitments remaining. Having completed my degree and short-term project contracts, I am seeking a long-term role as an Associate/Junior ML Engineer where I can grow with a core engineering team and contribute to production systems over the coming years.
π― Recent: Completed AI/ML Internship at FlyRank AI (Published Capstone on Data Leakage & Search Intelligence)
π Education: BCA final examinations completed in August 2026
πΌ Status: Available immediately for full-time employment
π Seeking: Associate / Junior ML Engineer, AI Engineer, or Entry-Level ML Engineer roles
- π§ Machine Learning & Deep Learning β PyTorch, TensorFlow, Scikit-Learn, Transformer architectures
- π€ LLMs & NLP β tokenization, BPE, RAG, AI agents, Hugging Face
- β‘ ML Inference β ONNX Runtime, INT8 quantization, CPU inference, memory optimization
- π Data Processing β DuckDB, BigQuery, PostgreSQL, Pandas, NumPy
- π§ Backend & Deployment β FastAPI, Docker, Celery, Redis, REST APIs, WebSockets
- π Applications β React, Next.js, Streamlit, Flutter
| Category | Technologies |
|---|---|
| Languages | Python, TypeScript, SQL, C#, Dart |
| Machine Learning & AI | PyTorch, TensorFlow, Scikit-Learn, NumPy, Pandas, OpenCV, Hugging Face |
| LLM / Inference | Transformers, ONNX Runtime, FAISS, FlashAttention, BPE Tokenization |
| Data & Databases | DuckDB, Google BigQuery, PostgreSQL, Redis |
| Backend & Deployment | FastAPI, Celery, Docker, REST APIs, WebSockets, Flower |
| Frontend & Mobile | React, Next.js, TailwindCSS, Flutter |
Decision-support ML system for SEO prioritization (FlyRank Capstone).
- Handled out-of-core data processing by querying and verifying a ~79 million row production warehouse directly from Hugging Face using DuckDB.
- Trained a Random Forest classifier on a curated 30,000-row anonymized dataset to identify pages underperforming their exact peer groups.
- Identified and documented a critical data leakage trap: a naive data split yielded an inflated 94% precision due to client overlap, which I corrected to an honest 64% using a strict client-grouped holdout split.
- Translated the model probabilities into a transparent, rule-backed "Action Playbook" to avoid black-box automated decision-making.
- Published the full methodology, leakage audit, and results as a deployed Research Paper.
Production-ready ML pipeline for customer churn prediction and actionable risk segmentation.
- Engineered a modular, end-to-end machine learning pipeline using Scikit-Learn and LightGBM, featuring automated data validation, schema checking, and reproducible train/test splitting.
- Designed a custom feature engineering module to capture customer lifecycle signals, such as financial exposure, service adoption rates, and contract vulnerability.
- Evaluated multiple algorithm families using 5-fold Stratified Cross-Validation, ultimately selecting Logistic Regression (0.85 ROC-AUC) over Random Forest/LightGBM due to its superior probability ranking sensitivity on imbalanced datasets.
- Structured the codebase using strong software engineering principlesβseparating configuration, feature engineering,
and modeling logic into a clean
src/package for strict reproducibility. - Generated customer-level churn probabilities mapped to actionable business risk tiers (Low to Very High risk) for targeted retention campaigns.
π‘οΈ Aegis Omnisearch Agent
Lightweight RAG agent designed for resource-constrained deployments.
- Implemented a custom ReAct-style Reason + Act loop using Google's Gemini API for tool selection and grounded responses.
- Built local retrieval using FAISS and used INT8 ONNX Runtime for lightweight CPU inference.
- Designed PDF processing around limited memory using page-by-page streaming and micro-batched indexing.
- Configured the inference runtime to reduce memory overhead in constrained environments.
- Implemented a GitHub Webhook-based update mechanism for updating indexed knowledge during deployment.
π¦ LexiByte
Byte-Pair Encoding tokenizer implemented from scratch and published as a Python package on PyPI.
- Implemented GPT-style regex pre-tokenization using Unicode-aware patterns for words, numbers, and punctuation.
- Built a frequency dictionary during BPE training to reduce unnecessary merge checks.
- Added memoization to avoid repeated tokenization work during inference.
- Implemented UTF-8 byte-level fallbacks to avoid out-of-vocabulary failures.
- Published the package to PyPI.
pip install lexibyteβ‘ Forge-LM & NanoTransformer
A project exploring Transformer implementation, training, optimization, and lightweight inference.
π§ NanoTransformer
- Implemented a GPT-2-style Transformer decoder using PyTorch primitives.
- Integrated the custom LexiByte BPE tokenizer.
- Experimented with FlashAttention and bfloat16 mixed precision for training.
- Built the architecture to understand Transformer components and training mechanics from the implementation level.
π Forge-LM
- Scaled the architecture to approximately 28M parameters.
- Trained the model on the TinyStories dataset.
- Used gradient accumulation to work within approximately 6 GB VRAM.
- Exported the model to ONNX and applied INT8 dynamic quantization for lightweight inference.
- Built a FastAPI + NumPy inference service.
- Containerized the application using Docker and tested it in low-memory deployment environments.
Phishing detection system combining structured URL features with linguistic signals.
- Combined structured URL features from ISCX with linguistic features from PhiUSIIL.
- Implemented a soft-voting fusion approach across the models.
- Used XGBoost with Platt scaling through
CalibratedClassifierCVfor probability calibration. - Exposed the model through FastAPI.
- Built an interactive Streamlit interface for evaluation.
- Used Docker Compose to run the application components.
Neural-network engine implemented without a deep-learning framework, with real-time training visualization.
- Implemented dense layers, ReLU activation, and Softmax Cross-Entropy using NumPy matrix operations.
- Implemented the training pipeline to understand forward propagation, loss calculation, and backpropagation at a lower level.
- Added FastAPI WebSockets to stream training metrics.
- Built a React + HTML5 Canvas interface to visualize epoch, loss, and accuracy in real time.
AI / ML Engineering Intern β FlyRank AI | Jul 2026 β Sep 2026
- Engineered a CTR Opportunity Scoring model acting as a decision-support system to prioritize SEO metadata reviews.
- Used DuckDB to query and aggregate large-scale Parquet datasets (~79M rows) directly from Hugging Face, avoiding RAM bottlenecks, while training the final ML models on a 30k-row analytical slice.
- Conducted rigorous model evaluation, successfully identifying and mitigating client-overlap data leakage via strict grouped validation splits.
- Framed machine learning outputs as a human-in-the-loop action playbook, focusing on precision and real-world business constraints.
- Authored and deployed a comprehensive Research Paper detailing the validation methodology and error analysis.
- Completed various Anthropic Academy certifications for AI fluency and Claude API proficiency.
Data Science & ML Apprentice β Skill Shikshya | Apr 2026 β Jul 2026
- Completed a hands-on learning track covering machine-learning mathematics, vector computation, classical ML, and deep-learning concepts.
- Implemented ML concepts through practical exercises and projects.
- Built and served ML applications using FastAPI.
- Used Docker to containerize applications.
- Completed and defended the final project in July 2026.
- Completed Kaggle certifications for Pandas, Feature Engineering, Intro to ML, and Intermediate ML.
- Completed Skill Shikshya certifications for Data Science & ML Diploma.
Full-Stack Engineer Intern β Walkers Hive IT Professionals | Oct 2025 β Dec 2025 (Mandatory Academic Internship)
- Independently designed and implemented the architecture for the AcademiaOS MVP.
- Built backend services using FastAPI and Celery.
- Developed the frontend using Next.js.
- Implemented HTTP-only cookie authentication and role-based access control (RBAC).
- Used Docker as part of the application development and deployment setup.
Software Engineer β Nextwave Technology | Apr 2025 β Jul 2025 (Contract)
- Worked on new features, bug fixes, UI revamp, and the Google Play Store launch of the Academia mobile application.
- Maintained and fixed existing Flutter codebases.
- Migrated corporate websites to Next.js-based implementations.
Software Engineer β Walkers Hive IT Professionals | Nov 2024 β Apr 2025 (Contract)
- Built an e-commerce administration panel using React, MUI, and Redux-Saga.
- Developed Next.js frontends integrated with existing PHP backends.
- Worked across frontend development, application integration, and deployment.
Android Development Intern β CodSoft | Dec 2023 β Jan 2024 (Internship)
- Developed Flutter applications with Firebase Authentication.
- Implemented local persistence and BLoC state management.
- Worked on application UI and BAAS integration.
Nihareeka College of Management and Information Technology Tribhuvan University, Nepal β’ 2021 β 2026 (5-year timeline reflective of TU academic schedule/exam deferrals and calendar alignment)
Status: Final examinations completed in August 2026. Fully available with no remaining academic obligations.
- FlyRank AI β Machine Learning Internship Certificate Link
- Skill Shikshya β Data Science & ML Diploma Link
- Anthropic Academy β Claude Code in Action Link
- Anthropic Academy β Building with the Claude API Link
- Anthropic Academy β MCP Advanced Topics Link
- Anthropic Academy β Claude in Amazon Bedrock Link
Kaggle Certificates: Link
- Kaggle β Pandas
- Kaggle β Feature Engineering
- Kaggle β Intro to Machine Learning
- Kaggle β Intermediate Machine Learning
- **Deployed ML Research Paper: CTR Opportunity Score ** Read Here A public research paper detailing my methodology on evaluating ML models honestly, mitigating data leakage, and framing ML as a decision-support tool.
- LunarLander-v2 Agent Link Trained an autonomous agent to safely navigate a lunar module to its landing pad using the Proximal Policy Optimization (PPO) algorithm.
- Email: imbibek8366@gmail.com
- LinkedIn: linkedin.com/in/bibek-dhakal-771ba5334
I'm currently seeking entry-level / associate roles in:
Associate ML Engineer Β· Junior ML Engineer Β· AI Engineer Β· Entry-Level ML Engineer
I'm particularly interested in teams working on LLM applications, machine-learning systems, inference optimization, intelligent backend services, and ML/data pipelines.
I'm also open to MLOps / ML Platform opportunities where the role is suitable for an early-career engineer with hands-on experience in Docker, FastAPI, model serving, and ML deployment.


