✍️ Blog

Learning, building, and sharing insights about AI/ML, NLP, RAG, and software engineering

📌 FEATURED

Inverted HyDE: Solving Real-World Dense Retrieval Challenges

An innovative approach to dense retrieval that addresses practical limitations of HyDE by flipping the script - generating hypothetical queries offline instead of hypothetical documents in real-time.

EN AI/ML September 7, 2025 7 min read
Read Article

All Posts (10)

English Python

Stop Using requirements.txt

The requirements.txt is a legacy dependency management tool that is no longer fit for modern Python projects. We need a better dependency management tool.

12 min read
Read more
English AI/ML

RAG In Production - Best Practices Notes

Retrieval-Augmented Generation (RAG) method are transforming the landscape of natural language processing by combining the strengths of retrieval-based and generative models (LLMs). When deployed in production, RAG systems can provide more accurate and contextually relevant responses. This guide outlines best practices for implementing RAG models in a production environment, ensuring robustness, scalability, and efficiency.

10 min read
Read more
English AI/ML

Beam search algorithm

Beam search là một thuật toán tìm kiếm heuristic được sử dụng trong nhiều bài toán như dịch máy, nhận dạng giọng nói, tóm tắt văn bản,… Đó là các bài toán NLP có đầu ra liên quan đến việc tạo một chuỗi các từ. Trong bài viết này, Behitek sẽ cùng bạn đi tìm hiểu về thuật toán beam search, các ưu điểm của nó và đi vào thực hành sử dụng beam search trong bài toán khôi phục dấu thanh cho tiếng Việt không dấu.

13 min read
Read more
Tiếng Việt Python

Python Decorator

Python Decorator là một công cụ mạnh mẽ giúp chúng ta mở rộng chức năng của một hàm mà không cần thay đổi nội dung bên trong hàm đó.

11 min read
Read more