Home

Awesome

<div align="center"> <h2>Hands-on LLMs Course </h2> <h1>Learn to Train and Deploy a Real-Time Financial Advisor</h1> <i>by <a href="https://github.com/iusztinpaul">Paul Iusztin</a>, <a href="https://github.com/Paulescu">Pau Labarta Bajo</a> and <a href="https://github.com/Joywalker">Alexandru Razvant</a></i> </div>

Table of Contents


1. Building Blocks

Using the 3-pipeline design, this is what you will learn to build within this course

1.1. Training Pipeline

Training pipeline that:

The training pipeline is deployed using Beam as a serverless GPU infrastructure.

-> Found under the modules/training_pipeline directory.

💻 Minimum Hardware Requirements

Note: Do not worry if you don't have the minimum hardware requirements. We will show you how to deploy the training pipeline to Beam's serverless infrastructure and train the LLM there.

1.2. Streaming Real-time Pipeline

Real-time feature pipeline that:

The streaming pipeline is automatically deployed on an AWS EC2 machine using a CI/CD pipeline built in GitHub actions.

-> Found under the modules/streaming_pipeline directory.

💻 Minimum Hardware Requirements

1.3. Inference Pipeline

Inference pipeline that uses LangChain to create a chain that:

The inference pipeline is deployed using Beam as a serverless GPU infrastructure, as a RESTful API. Also, it is wrapped under a UI for demo purposes, implemented in Gradio.

-> Found under the modules/financial_bot directory.

💻 Minimum Hardware Requirements

Note: Do not worry if you don't have the minimum hardware requirements. We will show you how to deploy the inference pipeline to Beam's serverless infrastructure and call the LLM from there.

<br/>

architecture

1.4. Financial Q&A Dataset

We used GPT3.5 to generate a financial Q&A dataset to fine-tune our open-source LLM to specialize in using financial terms and answering financial questions. Using a large LLM, such as GPT3.5 to generate a dataset that trains a smaller LLM (e.g., Falcon 7B) is known as fine-tuning with distillation.

→ To understand how we generated the financial Q&A dataset, check out this article written by Pau Labarta.

→ To see a complete analysis of the financial Q&A dataset, check out the dataset_analysis subsection of the course written by Alexandru Razvant.

EDA

2. Setup External Services

Before diving into the modules, you have to set up a couple of additional external tools for the course.

NOTE: You can set them up as you go for every module, as we will point you in every module what you need.

2.1. Alpaca

financial news data source

Follow this document to show you how to create a FREE account and generate the API Keys you will need within this course.

Note: 1x Alpaca data connection is FREE.

2.2. Qdrant

serverless vector DB

Go to Qdrant and create a FREE account.

After, follow this document on how to generate the API Keys you will need within this course.

Note: We will use only Qdrant's freemium plan.

2.3. Comet ML

serverless ML platform

Go to Comet ML and create a FREE account.

After, follow this guide to generate an API KEY and a new project, which you will need within the course.

Note: We will use only Comet ML's freemium plan.

2.4. Beam

serverless GPU compute | training & inference pipelines

Go to Beam and create a FREE account.

After, you must follow their installation guide to install their CLI & configure it with your Beam credentials.

To read more about Beam, here is an introduction guide.

Note: You have ~10 free compute hours. Afterward, you pay only for what you use. If you have an Nvidia GPU >8 GB VRAM & don't want to deploy the training & inference pipelines, using Beam is optional.

Troubleshooting

When using Poetry, we had issues locating the Beam CLI inside a Poetry virtual environment. To fix this, after installing Beam, we create a symlink that points to Poetry's binaries, as follows:

 export COURSE_MODULE_PATH=<your-course-module-path> # e.g., modules/training_pipeline
 cd $COURSE_MODULE_PATH
 export POETRY_ENV_PATH=$(dirname $(dirname $(poetry run which python)))

 ln -s /usr/local/bin/beam ${POETRY_ENV_PATH}/bin/beam

2.5. AWS

cloud compute | feature pipeline

Go to AWS, create an account, and generate a pair of credentials.

After, download and install their AWS CLI v2.11.22 and configure it with your credentials.

Note: You will pay only for what you use. You will deploy only a t2.small EC2 VM, which is only ~$0.023 / hour. If you don't want to deploy the feature pipeline, using AWS is optional.

3. Install & Usage

Every module has its dependencies and scripts. In a production setup, every module would have its repository, but in this use case, for learning purposes, we put everything in one place:

Thus, check out the README for every module individually to see how to install & use it:

  1. q_and_a_dataset_generator
  2. training_pipeline
  3. streaming_pipeline
  4. inference_pipeline

4. Lectures

We strongly encourage you to clone this repository and replicate everything we've done to get the most out of this course.

In each module's video lectures, articles, and README documentation, you will find step-by-step instructions.

Happy learning! 🙏

4.1. Costs

The GitHub code (released under the MIT license) and video lectures (released on YouTube) are entirely free of charge. Always will be.

The Medium lessons are released under Medium's paid wall. If you already have it, then they are free. Otherwise, you must pay a $5 monthly fee to read the articles.

4.2. Ask Questions

If you have any questions or issues during the course, we encourage you to create an issue in this repository where you can explain everything you need in depth.

Otherwise, you can also contact the teachers on LinkedIn:

4.3. Video Lectures

4.3.1. Intro to the course

<div align="center"> <a href="https://www.youtube.com/watch?v=l4HTEf0_s70"> <p>Click here to watch the video 🎬</p> <img src="media/youtube_thumbnails/00_intro.png" alt="Intro to the course" style="width:75%;"> </a> </div>

4.3.2. Fine-tuning our open-source LLM (overview)

<div align="center"> <a href="https://www.youtube.com/watch?v=HcxwOYMmj40"> <p>Click here to watch the video 🎬</p> <img src="media/youtube_thumbnails/01_fine_tuning_pipeline_overview.png" alt="Intro to the course" style="width:75%;"> </a> </div>

4.3.3. Fine-tuning our open-source LLM (Hands-on!)

<div align="center"> <a href="https://www.youtube.com/watch?v=RS96R0dH0uE"> <p>Click here to watch the video 🎬</p> <img src="media/youtube_thumbnails/02_fine_tuning_pipeline_hands_on.png" alt="Hands-on Fine Tuning an LLM" style="width:75%;"> </a> </div>

4.3.4. Real-time text embedding pipeline

<div align="center"> <a href="https://www.youtube.com/watch?v=5gX5XRZpb6E"> <p>Click here to watch the video 🎬</p> <img src="media/youtube_thumbnails/03_real_time_embeddings.png" alt="Real-time text embedding pipeline" style="width:75%;"> </a> </div>

4.3.5. Inference pipeline

<div align="center"> <a href="https://www.youtube.com/watch?v=lXLv0zNdbgE"> <p>Click here to watch the video 🎬</p> <img src="media/youtube_thumbnails/04_inference_pipeline.png" alt="Inference pipeline" style="width:75%;"> </a> </div>

4.4. Articles

To understand the entire code step-by-step, check out our articles

System design

Feature pipeline

Training pipeline

Inference pipeline

5. License

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, etc.).

6. Contributors & Teachers

<table> <tr> <td><img src="https://github.com/Paulescu.png" width="100" style="border-radius:50%;"/></td> <td> <strong>Pau Labarta Bajo | Senior ML & MLOps Engineer </strong><br /> <i>Main teacher. The guy from the video lessons.</i><br /><br /> <a href="https://www.linkedin.com/in/pau-labarta-bajo-4432074b/">LinkedIn</a><br /> <a href="https://twitter.com/paulabartabajo_">Twitter/X</a><br /> <a href="https://www.youtube.com/@realworldml">Youtube</a><br /> <a href="https://www.realworldml.xyz/subscribe">Real-World ML Newsletter</a><br /> <a href="https://www.realworldml.xyz/subscribe">Real-World ML Site</a> </td> </tr> <tr> <td><img src="https://github.com/Joywalker.png" width="100" style="border-radius:50%;"/></td> <td> <strong>Alexandru Razvant | Senior ML Engineer </strong><br /> <i>Second chef. The engineer behind the scenes.</i><br /><br /> <a href="https://www.linkedin.com/in/arazvant/">LinkedIn</a><br /> <a href="https://www.neuraleaps.com/">Neura Leaps</a> </td> </tr> <tr> <td><img src="https://github.com/iusztinpaul.png" width="100" style="border-radius:50%;"/></td> <td> <strong>Paul Iusztin | Senior ML & MLOps Engineer </strong><br /> <i>Main chef. The guys who randomly pop in the video lessons.</i><br /><br /> <a href="https://www.linkedin.com/in/pauliusztin/">LinkedIn</a><br /> <a href="https://twitter.com/iusztinpaul">Twitter/X</a><br /> <a href="https://pauliusztin.substack.com/">Decoding ML Newsletter</a><br /> <a href="https://www.pauliusztin.me/">Personal Site | ML & MLOps Hub</a> </td> </tr> </table>