Artificial Intelligence Engineer
QUAVEO
To be updated.
AI Engineer · Hồ Chí Minh, Việt Nam
I build and deploy machine learning systems — natural language processing, generative AI, and real-time vision — and I maintain a small collection of open libraries in Python and Rust. Most of my work lives somewhere between research and production: taking a model that works in a notebook and making it hold up under load.
Now
QUAVEO
Artificial Intelligence Engineer · since Feb 2026
03
libraries on PyPI & crates.io
Stack
Python · Rust
PyTorch · Kafka · Docker
Languages
Vietnamese native · English professional · German beginner
QUAVEO
To be updated.
Apollo Solutions VN
Oryza Systems
HPT Vietnam Corporation
Packages I design, build, and maintain — published to PyPI and crates.io, each sharpened by my own use.
Kalman filtering and state estimation — ten filter families under one consistent API.
import numpy as np
from kalbee import KalmanFilter
kf = KalmanFilter(
np.zeros((2, 1)), # state
np.eye(2), # covariance
np.array([[1, 1], [0, 1]]), # F: constant velocity
np.eye(2) * 0.01, # Q
np.array([[1, 0]]), # H: observe position
np.array([[0.1]]), # R
)
kf.predict()
kf.update(np.array([[1.2]]))
# kf.x -> [[1.14], [0.57]]
pip install kalbee
Rust-backed swarm intelligence optimization for Python — a Pythonic interface over a compiled core.
AutoColony API covers continuous optimization and discrete problems such as the Traveling Salesman.from colonyx import AutoColony
def sphere(x):
return sum(xi * xi for xi in x)
opt = AutoColony(
mode="pso", n_iterations=150, random_state=42
)
opt.fit(sphere, bounds=[(-5, 5)] * 3)
opt.predict() # -> ~[0, 0, 0]
opt.score() # -> ~0.004
pip install colonyx
A high-performance Enigma machine simulator covering the M3 and M4 models, with Python bindings for anyone who would rather explore the cipher from a notebook.
use enigmar::EnigmaBuilder;
let mut machine = EnigmaBuilder::new()
.rotor("I", 0, 0) // type, position, ring setting
.rotor("II", 0, 0)
.rotor("III", 0, 0)
.reflector("B")
.plugboard("AV BS CG DL FU HZ IN KM OW RX")
.build()
.unwrap();
let ciphertext = machine.process_string("HELLOWORLD");
cargo add enigmar
An AI-powered brand analysis platform that processes multimodal data — text, images, audio, and video — to evaluate brand perception and sentiment.
A deep learning project exploring AI-assisted music composition and ideation using neural networks.
Writing about AI systems, generative models, MLOps pipelines, and real-time vision — in both English and Vietnamese, to make technical material reach further than it usually does.
Languages
Python · JavaScript · Rust
ML & Deep Learning
PyTorch · TensorFlow · Hugging Face · ONNX
Data & Databases
MongoDB · Valkey/Redis · MilvusDB · PostgreSQL
Frameworks & Deploy
FastAPI · Gin · Next.js · Docker
Streaming
RabbitMQ · Kafka · Fluvio
Crawling
BeautifulSoup · Playwright · Selenium
Task Management & Collaboration
Git · Odoo · Jira · Trello · Notion
Bachelor’s Degree, Faculty of Computer Science
Binh Duong Province, Vietnam
Bachelor’s Degree, Faculty of Computer Science
Frankfurt, Germany
Ho Chi Minh City · 2024
The 5th Artificial Intelligence (AI) Challenge
An AI-powered event retrieval system indexing and retrieving event data with vector search and semantic understanding.
Jul 2024
hackhcmc-2024 Hackathon — AngelHack
Built an ML solution in 48 hours across LLMs, multi-agent systems, and real-time AI. Top-5 finalist.
Jun 2024
Introduction to Generative AI — Google Cloud
Built and fine-tuned a custom LLM using Google Cloud AI tools.
Apr 2024
IELTS — IDP Education Ltd
Band 6.5.