By finishing the "LLM Twin: Building Your Production-Ready AI Replica" free course, you will learn how to design, train, and deploy a production-ready LLM twin of yourself powered by LLMs, vector DBs, and LLMOps good practices.
Why should you care? ๐ซต
โ No more isolated scripts or Notebooks! Learn production ML by building and deploying an end-to-end production-grade LLM system.
You will learn how to architect and build a real-world LLM system from start to finishโ-โfrom data collection to deployment.
You will also learn to leverage MLOps best practices, such as experiment trackers, model registries, prompt monitoring, and versioning.
The end goal? Build and deploy your own LLM twin.
What is an LLM Twin? It is an AI character that learns to write like somebody by incorporating its style and personality into an LLM.
- Crawl your digital data from various social media platforms, such as Medium, Substack and GitHub.
- Clean, normalize and load the data to a Mongo NoSQL DB through a series of ETL pipelines.
- Send database changes to a RabbitMQ queue using the CDC pattern.
- Learn to package the crawlers as AWS Lambda functions.
- Consume messages in real-time from a queue through a Bytewax streaming pipeline.
- Every message will be cleaned, chunked, embedded and loaded into a Qdrant vector DB.
- In the bonus series, we refactor the cleaning, chunking, and embedding logic using Superlinked, a specialized vector compute engine. We will also load and index the vectors to a Redis vector DB.
- Create a custom instruction dataset based on your custom digital data to do SFT.
- Fine-tune an LLM using LoRA or QLoRA.
- Use Comet ML's experiment tracker to monitor the experiments.
- Evaluate the LLM using Opik
- Save and version the best model to the Hugging Face model registry.
- Run and automate the training pipeline using AWS SageMaker.
- Load the fine-tuned LLM from the Hugging Face model registry.
- Deploy the LLM as a scalable REST API using AWS SageMaker inference endpoints.
- Enhance the prompts using advanced RAG techniques.
- Monitor the prompts and LLM generated results using Opik
- In the bonus series, we refactor the advanced RAG layer to write more optimal queries using Superlinked.
- Wrap up everything with a Gradio UI (as seen below) where you can start playing around with the LLM Twin to generate content that follows your writing style.
Along the 4 microservices, you will learn to integrate 4 serverless tools:
- Comet ML as your experiment tracker and data registry;
- Qdrant as your vector DB;
- AWS SageMaker as your ML infrastructure;
- Opik as your prompt evaluation and monitoring tool.
Audience: MLE, DE, DS, or SWE who want to learn to engineer production-ready LLM & RAG systems using LLMOps good principles.
Level: intermediate
Prerequisites: basic knowledge of Python and ML
The course contains 10 hands-on written lessons and the open-source code you can access on GitHub, showing how to build an end-to-end LLM system.
Also, it includes 2 bonus lessons on how to improve the RAG system.
You can read everything at your own pace.
The articles and code are completely free. They will always remain free.
If you plan to run the code while reading it, you must know that we use several cloud tools that might generate additional costs.
Pay as you go
- AWS offers accessible plans to new joiners.
- For a new first-time account, you could get up to 300$ in free credits which are valid for 6 months. For more, consult the AWS Offerings page.
Freemium (Free-of-Charge)
Please ask us any questions if anything gets confusing while studying the articles or running the code.
You can ask any question
by opening an issue
in this GitHub repository by clicking here.
This self-paced course consists of 12 comprehensive lessons covering theory, system design, and hands-on implementation.
Our recommendation for each lesson:
- Read the article
- Run the code
- Read the source code in depth
Lesson | Article | Category | Description | Source Code |
---|---|---|---|---|
1 | An End-to-End Framework for Production-Ready LLM Systems | System Design | Learn the overall architecture and design principles of production LLM systems. | No code |
2 | Data Crawling | Data Engineering | Learn to crawl and process social media content for LLM training. | src/data_crawling |
3 | CDC Magic | Data Engineering | Learn to implement Change Data Capture (CDC) for syncing two data sources. | src/data_cdc |
4 | Feature Streaming Pipelines | Feature Pipeline | Build real-time streaming pipelines for LLM and RAG data processing. | src/feature_pipeline |
5 | Advanced RAG Algorithms | Feature Pipeline | Implement advanced RAG techniques for better retrieval. | src/feature_pipeline |
6 | Generate Fine-Tuning Instruct Datasets | Training Pipeline | Create custom instruct datasets for LLM fine-tuning. | src/feature_pipeline/generate_dataset |
7 | LLM Fine-tuning Pipeline | Training Pipeline | Build an end-to-end LLM fine-tuning pipeline and deploy it to AWS SageMaker. | src/training_pipeline |
8 | LLM & RAG Evaluation | Training Pipeline | Learn to evaluate LLM and RAG system performance. | src/inference_pipeline/evaluation |
9 | Implement and Deploy the RAG Inference Pipeline | Inference Pipeline | Design, implement and deploy the RAG inference to AWS SageMaker. | src/inference_pipeline |
10 | Prompt Monitoring | Inference Pipeline | Build the prompt monitoring and production evaluation pipeline. | src/inference_pipeline |
11 | Refactor the RAG module using 74.3% Less Code | Bonus on RAG | Optimize the RAG system. | src/bonus_superlinked_rag |
12 | Multi-Index RAG Apps | Bonus on RAG | Build advanced multi-index RAG apps. | src/bonus_superlinked_rag |
Note
Check the INSTALL_AND_USAGE doc for a step-by-step installation and usage guide.
At Decoding ML we teach how to build production ML systems, thus the course follows the structure of a real-world Python project:
llm-twin-course/
โโโ src/ # Source code for all microservices
โ โโโ data_crawling/ # Data collection pipeline code
โ โโโ data_cdc/ # Change Data Capture pipeline code
โ โโโ feature_pipeline/ # Feature engineering pipeline code
โ โโโ training_pipeline/ # Training pipeline code
โ โโโ inference_pipeline/ # Inference service code
โ โโโ bonus_superlinked_rag/ # Bonus RAG optimization code
โโโ .env.example # Example environment variables template
โโโ Makefile # Commands to build and run the project
โโโ pyproject.toml # Project dependencies
To understand how to install and run the LLM Twin code end-to-end, go to the INSTALL_AND_USAGE dedicated document.
Note
Even though you can run everything solely using the INSTALL_AND_USAGE dedicated document, we recommend that you read the articles to understand the LLM Twin system and design choices fully.
The bonus Superlinked series has an extra dedicated README that you can access under the src/bonus_superlinked_rag directory.
In that section, we explain how to run it with the improved RAG layer powered by Superlinked.
This course is an open-source project released under the MIT license. Thus, as long you distribute our LICENSE and acknowledge our work, you can safely clone or fork this project and use it as a source of inspiration for whatever you want (e.g., university projects, college degree projects, personal projects, etc.).
A big "Thank you ๐" to all our contributors! This course is possible only because of their efforts.
Also, another big "Thank you ๐" to all our sponsors who supported our work and made this course possible.
Comet | Opik | Bytewax | Qdrant | Superlinked |
Our LLM Engineerโs Handbook inspired the open-source LLM Twin course.
Consider supporting our work by getting our book to learn a complete framework for building and deploying production LLM & RAG systems โ from data to deployment.
Perfect for practitioners who want both theory and hands-on expertise by connecting the dots between DE, research, MLE and MLOps: