Health Topic Library

Rx Data Science and Artificial Intelligence

Browse trusted health articles by topic. Use the filters and A-Z index to quickly find related medical content.

227 articlesUpdated medical education library

A-Z article index

Latest articles

RX
Health Topic Library

Semantic Chunks for RAG

In order to abide by the context window of the LLM , we usually break text into smaller parts / pieces which is called chunking. LLMs,...

Read article
RX
Health Topic Library

Simple RAG with Llamaindex

This code implements a basic Retrieval-Augmented Generation (RAG) system for processing and querying PDF document(s). The system uses a pipeline that encodes the documents and creates...

Read article
RX
Health Topic Library

Semantic Chunking for Document Processing

This code implements a semantic chunking approach for processing and retrieving information from PDF documents, first proposed by Greg Kamradt and subsequently implemented in LangChain. Unlike traditional methods that...

Read article
RX
Health Topic Library

RAG System with Feedback Loop

This system implements a Retrieval-Augmented Generation (RAG) approach with an integrated feedback loop. It aims to improve the quality and relevance of responses over time by...

Read article
RX
Health Topic Library

Reranking Methods in RAG Systems

Reranking is a crucial step in Retrieval-Augmented Generation (RAG) systems that aims to improve the relevance and quality of retrieved documents. It involves reassessing and reordering...

Read article
RX
Health Topic Library

Reranking Methods in RAG Systems

Reranking is a crucial step in Retrieval-Augmented Generation (RAG) systems that aims to improve the relevance and quality of retrieved documents. It involves reassessing and reordering...

Read article
RX
Health Topic Library

Reliable-RAG

The “Reliable-RAG” method enhances the traditional Retrieval-Augmented Generation (RAG) approach by adding layers of validation and refinement to ensure the accuracy and relevance of retrieved information....

Read article
RX
Health Topic Library

Relevant Segment Extraction (RSE)

Relevant segment extraction (RSE) is a method of reconstructing multi-chunk segments of contiguous text out of retrieved chunks. This step occurs after vector search (and optionally...

Read article
RX
Health Topic Library

Propositions Chunking

This code implements the proposition chunking method, based on research from Tony Chen, et. al.. The system break downs the input text into propositions that are atomic,...

Read article
RX
Health Topic Library

Multi Model RAG with colpali

This code implements one of the multiple ways of multi-model RAG. This project processes a PDF file, retrieves relevant content using Colpali, and generates answers using...

Read article
RX
Health Topic Library

Multi Model Rag with captioning

This code implements one of the multiple ways of multi-model RAG. It extracts and processes text and images from PDFs, utilizing a multi-modal Retrieval-Augmented Generation (RAG)...

Read article