* add llamaindex example * fix core dump * refine readme * add trouble shooting * refine readme --------- Co-authored-by: Ariadne <wyn2000330@126.com> |
||
|---|---|---|
| .. | ||
| rag.py | ||
| README.md | ||
LlamaIndex Examples
This folder contains examples showcasing how to use LlamaIndex with bigdl-llm.
LlamaIndex is a data framework designed to improve large language models by providing tools for easier data ingestion, management, and application integration.
Retrieval-Augmented Generation (RAG) Example
The RAG example (rag.py) is adapted from the Official llama index RAG example. This example builds a pipeline to ingest data (e.g. llama2 paper in pdf format) into a vector database (e.g. PostgreSQL), and then build a retrieval pipeline from that vector database.
1. Setting up Dependencies
-
Install LlamaIndex Packages
pip install llama-index-readers-file llama-index-vector-stores-postgres llama-index-embeddings-huggingface -
Install Bigdl LLM
Follow the instructions in GPU Install Guide to install bigdl-llm.
-
Database Setup (using PostgreSQL):
-
Installation:
sudo apt-get install postgresql-client sudo apt-get install postgresql -
Initialization:
Switch to the postgres user and launch psql console:
sudo su - postgres psqlThen, create a new user role:
CREATE ROLE <user> WITH LOGIN PASSWORD '<password>'; ALTER ROLE <user> SUPERUSER;
-
-
Pgvector Installation: Follow installation instructions on pgvector's GitHub and refer to the installation notes for additional help.
-
Data Preparation: Download the Llama2 paper and save it as
data/llama2.pdf, which serves as the default source file for retrieval.mkdir data wget --user-agent "Mozilla" "https://arxiv.org/pdf/2307.09288.pdf" -O "data/llama2.pdf"
2. Configures OneAPI environment variables
2.1 Configurations for Linux
source /opt/intel/oneapi/setvars.sh
2.2 Configurations for Windows
call "C:\Program Files (x86)\Intel\oneAPI\setvars.bat"
Note: Please make sure you are using CMD (Anaconda Prompt if using conda) to run the command as PowerShell is not supported.
3. Runtime Configurations
For optimal performance, it is recommended to set several environment variables. Please check out the suggestions based on your device.
3.1 Configurations for Linux
For Intel Arc™ A-Series Graphics and Intel Data Center GPU Flex Series
export USE_XETLA=OFF
export SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=1
For Intel Data Center GPU Max Series
export LD_PRELOAD=${LD_PRELOAD}:${CONDA_PREFIX}/lib/libtcmalloc.so
export SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=1
export ENABLE_SDP_FUSION=1
Note: Please note that
libtcmalloc.socan be installed byconda install -c conda-forge -y gperftools=2.10.
3.2 Configurations for Windows
For Intel iGPU
set SYCL_CACHE_PERSISTENT=1
set BIGDL_LLM_XMX_DISABLED=1
For Intel Arc™ A300-Series or Pro A60
set SYCL_CACHE_PERSISTENT=1
For other Intel dGPU Series
There is no need to set further environment variables.
Note: For the first time that each model runs on Intel iGPU/Intel Arc™ A300-Series or Pro A60, it may take several minutes to compile.
4. Running the RAG example
In the current directory, run the example with command:
python rag.py -m <path_to_model>
Additional Parameters for Configuration:
-m MODEL_PATH: Required, path to the LLM model-e EMBEDDING_MODEL_PATH: path to the embedding model-u USERNAME: username in the PostgreSQL database-p PASSWORD: password in the PostgreSQL database-q QUESTION: question you want to ask-d DATA: path to source data used for retrieval (in pdf format)
5. Example Output
A query such as "How does Llama 2 compare to other open-source models?" with the Llama2 paper as the data source, using the Llama-2-7b-chat-hf model, will produce the output like below:
The comparison between Llama 2 and other open-source models is complex and depends on various factors such as the specific benchmarks used, the model size, and the task at hand.
In terms of performance on the benchmarks provided in the table, Llama 2 outperforms other open-source models on most categories. For example, on the MMLU benchmark, Llama 2 achieves a score of 22.5, while the next best open-source model, Poplar Aggregated Benchmarks, scores 17.5. Similarly, on the BBH benchmark, Llama 2 scores 20.5, while the next best open-source model scores 16.5.
However, it's important to note that the performance of Llama 2 can vary depending on the specific task and dataset being used. For example, on the coding benchmarks, Llama 2 performs significantly worse than other open-source models, such as PaLM (540B) and GPT-4.
In conclusion, while Llama 2 performs well on most benchmarks compared to other open-source models, its performance
6. Trouble shooting
6.1 Core dump
If you encounter a core dump error in your Python code, it is crucial to verify that the import torch statement is placed at the top of your Python file, just as what we did in rag.py.